From 74ac55308c65a6a5cfeee68043668d47f8bc7012 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 5 Nov 2018 09:39:55 -0600 Subject: [PATCH] examples/mld/mld_main.c: ifdef out some bogus logic in the test. --- examples/mld/mld_main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/mld/mld_main.c b/examples/mld/mld_main.c index c399ad923..d8533f0bc 100644 --- a/examples/mld/mld_main.c +++ b/examples/mld/mld_main.c @@ -127,7 +127,9 @@ int mld_main(int argc, char *argv[]) #endif { struct sockaddr_in6 host; +#if 0 struct sockaddr_in6 mcast; +#endif struct ipv6_mreq mrec; int sockfd; int ret; @@ -199,6 +201,7 @@ int mld_main(int argc, char *argv[]) printf("Wait a bit...\n"); sleep(5); +#if 0 /* REVISIT: This is not right */ /* Send a garbage packet */ memset(&mcast, 0, sizeof(struct sockaddr_in6)); @@ -219,6 +222,7 @@ int mld_main(int argc, char *argv[]) printf("Wait a bit...\n"); sleep(5); +#endif /* Leave the group */