2002-10-04 Jay Monkman <jtm@smoothsmoothie.com>

* rtems/rtems_glue.c: Add IP aliasing ioctls SIOCAIFADDR and
	SIOCDIFADDR.
This commit is contained in:
Joel Sherrill
2002-10-04 13:25:31 +00:00
parent 3762222f94
commit ed15301c7b
2 changed files with 10 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2002-10-04 Jay Monkman <jtm@smoothsmoothie.com>
* rtems/rtems_glue.c: Add IP aliasing ioctls SIOCAIFADDR and
SIOCDIFADDR.
2002-10-02 Joel Sherrill <joel@OARcorp.com>
* kern/uipc_socket.c: Make sure that small non-zero delays work.

View File

@@ -1075,6 +1075,11 @@ int rtems_bsdnet_ifconfig (const char *ifname, unsigned32 cmd, void *param)
*((int*) param) = ifreq.ifr_media;
break;
case SIOCAIFADDR:
case SIOCDIFADDR:
r = ioctl(s, cmd, (struct freq *) param);
break;
default:
errno = EOPNOTSUPP;
r = -1;