Viewtool STM32F107: Add a NSH configuration with network support

This commit is contained in:
Gregory Nutt 2013-12-25 12:14:24 -06:00
parent 46184187b3
commit e7184c27db

View File

@ -84,6 +84,7 @@
int uip_setmacaddr(const char *ifname, const uint8_t *macaddr)
{
int ret = ERROR;
if (ifname && macaddr)
{
/* Get a socket (only so that we get access to the INET subsystem) */
@ -102,12 +103,13 @@ int uip_setmacaddr(const char *ifname, const uint8_t *macaddr)
req.ifr_hwaddr.sa_family = AF_INETX;
memcpy(&req.ifr_hwaddr.sa_data, macaddr, IFHWADDRLEN);
/* Perforom the ioctl to set the MAC address */
/* Perform the ioctl to set the MAC address */
ret = ioctl(sockfd, SIOCSIFHWADDR, (unsigned long)&req);
close(sockfd);
}
}
return ret;
}