summaryrefslogtreecommitdiff
path: root/apps/examples/igmp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/igmp')
-rw-r--r--apps/examples/igmp/igmp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/examples/igmp/igmp.c b/apps/examples/igmp/igmp.c
index f378f38f0..7eb751788 100644
--- a/apps/examples/igmp/igmp.c
+++ b/apps/examples/igmp/igmp.c
@@ -99,23 +99,23 @@ int igmp_main(int argc, char *argv[])
mac[3] = 0xad;
mac[4] = 0xbe;
mac[5] = 0xef;
- uip_setmacaddr("eth0", mac);
+ netlib_setmacaddr("eth0", mac);
#endif
/* Set up our host address */
addr.s_addr = HTONL(CONFIG_EXAMPLES_IGMP_IPADDR);
- uip_sethostaddr("eth0", &addr);
+ netlib_sethostaddr("eth0", &addr);
/* Set up the default router address */
addr.s_addr = HTONL(CONFIG_EXAMPLES_IGMP_DRIPADDR);
- uip_setdraddr("eth0", &addr);
+ netlib_setdraddr("eth0", &addr);
/* Setup the subnet mask */
addr.s_addr = HTONL(CONFIG_EXAMPLES_IGMP_NETMASK);
- uip_setnetmask("eth0", &addr);
+ netlib_setnetmask("eth0", &addr);
/* Not much of a test for now */
/* Join the group */