summaryrefslogtreecommitdiff
path: root/apps/nshlib/nsh_netinit.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-02 16:52:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-02 16:52:02 -0600
commitd559bea3ebb08291f2312551bfb43c91ba03c18c (patch)
tree8f2bce9ac07964ef0cc8923400768bf18e10d37e /apps/nshlib/nsh_netinit.c
parent7f24c737b4d75340484337f5418c08c5de8c981d (diff)
downloadnuttx-d559bea3ebb08291f2312551bfb43c91ba03c18c.tar.gz
nuttx-d559bea3ebb08291f2312551bfb43c91ba03c18c.tar.bz2
nuttx-d559bea3ebb08291f2312551bfb43c91ba03c18c.zip
NET: Rename functions in apps/netutils/netlib to begin with netlib_ vs uip_
Diffstat (limited to 'apps/nshlib/nsh_netinit.c')
-rw-r--r--apps/nshlib/nsh_netinit.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/nshlib/nsh_netinit.c b/apps/nshlib/nsh_netinit.c
index 8c09319f8..b59eaf571 100644
--- a/apps/nshlib/nsh_netinit.c
+++ b/apps/nshlib/nsh_netinit.c
@@ -123,7 +123,7 @@ int nsh_netinit(void)
mac[3] = 0xad;
mac[4] = 0xbe;
mac[5] = 0xef;
- uip_setmacaddr(NET_DEVNAME, mac);
+ netlib_setmacaddr(NET_DEVNAME, mac);
#endif
/* Set up our host address */
@@ -133,17 +133,17 @@ int nsh_netinit(void)
#else
addr.s_addr = 0;
#endif
- uip_sethostaddr(NET_DEVNAME, &addr);
+ netlib_sethostaddr(NET_DEVNAME, &addr);
/* Set up the default router address */
addr.s_addr = HTONL(CONFIG_NSH_DRIPADDR);
- uip_setdraddr(NET_DEVNAME, &addr);
+ netlib_setdraddr(NET_DEVNAME, &addr);
/* Setup the subnet mask */
addr.s_addr = HTONL(CONFIG_NSH_NETMASK);
- uip_setnetmask(NET_DEVNAME, &addr);
+ netlib_setnetmask(NET_DEVNAME, &addr);
#if defined(CONFIG_NSH_DHCPC) || defined(CONFIG_NSH_DNS)
/* Set up the resolver */
@@ -158,7 +158,7 @@ int nsh_netinit(void)
#if defined(CONFIG_NSH_DHCPC)
/* Get the MAC address of the NIC */
- uip_getmacaddr(NET_DEVNAME, mac);
+ netlib_getmacaddr(NET_DEVNAME, mac);
/* Set up the DHCPC modules */
@@ -172,16 +172,16 @@ int nsh_netinit(void)
{
struct dhcpc_state ds;
(void)dhcpc_request(handle, &ds);
- uip_sethostaddr(NET_DEVNAME, &ds.ipaddr);
+ netlib_sethostaddr(NET_DEVNAME, &ds.ipaddr);
if (ds.netmask.s_addr != 0)
{
- uip_setnetmask(NET_DEVNAME, &ds.netmask);
+ netlib_setnetmask(NET_DEVNAME, &ds.netmask);
}
if (ds.default_router.s_addr != 0)
{
- uip_setdraddr(NET_DEVNAME, &ds.default_router);
+ netlib_setdraddr(NET_DEVNAME, &ds.default_router);
}
if (ds.dnsaddr.s_addr != 0)