/src/sys/compat/sys/ |
sockio.h | 38 #define OSIOCSIFADDR _IOW('i', 12, struct oifreq) /* set ifnet address */ 39 #define OOSIOCGIFADDR _IOWR('i', 13, struct oifreq) /* get ifnet address */ 40 #define OSIOCSIFDSTADDR _IOW('i', 14, struct oifreq) /* set p-p address */ 41 #define OOSIOCGIFDSTADDR _IOWR('i', 15, struct oifreq) /* get p-p address */ 42 #define OSIOCSIFFLAGS _IOW('i', 16, struct oifreq) /* set ifnet flags */ 43 #define OSIOCGIFFLAGS _IOWR('i', 17, struct oifreq) /* get ifnet flags */ 44 #define OOSIOCGIFBRDADDR _IOWR('i', 18, struct oifreq) /* get bcast addr */ 45 #define OSIOCSIFBRDADDR _IOW('i', 19, struct oifreq) /* set bcast addr */ 47 #define OOSIOCGIFNETMASK _IOWR('i', 21, struct oifreq) /* get net addr mask */ 48 #define OSIOCSIFNETMASK _IOW('i', 22, struct oifreq) /* set net addr mask * [all...] |
/src/sys/compat/freebsd/ |
freebsd_ioctl.h | 50 #define FREEBSD_SIOCGIFMTU _IOWR('i', 51, struct oifreq) 51 #define FREEBSD_SIOCSIFMTU _IOW('i', 52, struct oifreq)
|
/src/tests/net/if/ |
t_compat.c | 22 struct oifreq { struct 40 #define OOSIOCGIFBRDADDR _IOWR('i', 18, struct oifreq) 53 struct oifreq ifreq;
|
/src/sys/compat/sunos/ |
sunos_ioctl.c | 634 struct oifreq ifreq; \ 642 struct oifreq ifreq; \ 652 case _IOW('i', 12, struct oifreq): /* SIOCSIFADDR */ 653 case _IOW('i', 14, struct oifreq): /* SIOCSIFDSTADDR */ 654 case _IOW('i', 16, struct oifreq): /* SIOCSIFFLAGS */ 655 case _IOWR('i', 17, struct oifreq): /* SIOCGIFFLAGS */ 661 case _IOWR('i', 13, struct oifreq): 664 case _IOWR('i', 15, struct oifreq): 667 case _IOW('i', 21, struct oifreq): 670 case _IOWR('i', 22, struct oifreq) [all...] |
/src/sys/compat/sunos32/ |
sunos32_ioctl.c | 657 struct oifreq ifreq; \ 664 struct oifreq ifreq; \ 673 case _IOW('i', 12, struct oifreq): 677 case _IOWR('i', 13, struct oifreq): 680 case _IOW('i', 14, struct oifreq): 684 case _IOWR('i', 15, struct oifreq): 687 case _IOW('i', 16, struct oifreq): 691 case _IOWR('i', 17, struct oifreq): 695 case _IOW('i', 21, struct oifreq): 698 case _IOWR('i', 22, struct oifreq) [all...] |
/src/sys/compat/ultrix/ |
ultrix_ioctl.c | 677 struct oifreq ifreq; \ 684 struct oifreq ifreq; \ 692 case _IOW('i', 12, struct oifreq): 696 case _IOWR('i', 13, struct oifreq): 699 case _IOW('i', 14, struct oifreq): 703 case _IOWR('i', 15, struct oifreq): 706 case _IOW('i', 16, struct oifreq): 710 case _IOWR('i', 17, struct oifreq): 714 case _IOWR('i', 18, struct oifreq): 717 case _IOWR('i', 19, struct oifreq) [all...] |
/src/sys/compat/net/ |
if.h | 71 struct oifreq { struct 93 struct oifreq *ifcu_req;
|
/src/sys/compat/common/ |
uipc_syscalls_40.c | 41 struct oifreq ifr, *ifrp = NULL; 132 ifrp = (struct oifreq *)
|
if_43.c | 98 if (IOCPARM_LEN(cmd) != sizeof(struct oifreq)) 230 struct oifreq *oifr = NULL; 245 * not oifreq calls.
|
/src/sys/compat/netbsd32/ |
netbsd32_ioctl.c | 139 netbsd32_to_oifreq(struct netbsd32_oifreq *s32p, struct oifreq *p, u_long cmd) 694 netbsd32_from_oifreq(struct oifreq *p, 1565 IOCTL_STRUCT_CONV_TO(OSIOCGIFFLAGS, oifreq); 1567 IOCTL_STRUCT_CONV_TO(OSIOCSIFFLAGS, oifreq);
|
/src/sys/net/ |
if.c | 3461 struct oifreq *oifr = NULL; 3750 struct oifreq *oifr = NULL; 3757 oifr = (struct oifreq *)(void *)ifr;
|