| /freebsd/usr.sbin/rtsold/ |
| H A D | cap_sendmsg.c | 196 cap_probe_defrouters(cap_channel_t *cap, struct ifinfo *ifinfo) in cap_probe_defrouters() argument 204 nvlist_add_number(nvl, "ifindex", ifinfo->sdl->sdl_index); in cap_probe_defrouters() 205 nvlist_add_number(nvl, "linkid", ifinfo->linkid); in cap_probe_defrouters() 216 return (probe_defrouters(ifinfo->sdl->sdl_index, ifinfo->linkid)); in cap_probe_defrouters() 221 cap_rssend(cap_channel_t *cap, struct ifinfo *ifinfo) in cap_rssend() argument 228 nvlist_add_number(nvl, "ifindex", ifinfo->sdl->sdl_index); in cap_rssend() 229 nvlist_add_number(nvl, "linkid", ifinfo->linkid); in cap_rssend() 230 nvlist_add_binary(nvl, "data", ifinfo->rs_data, ifinfo->rs_datalen); in cap_rssend() 240 error = rssend(ifinfo->sdl->sdl_index, ifinfo->linkid, ifinfo->rs_data, in cap_rssend() 241 ifinfo->rs_datalen); in cap_rssend() [all …]
|
| H A D | rtsold.h | 56 struct ifinfo *rai_ifinfo; 62 struct ifinfo { struct 63 TAILQ_ENTRY(ifinfo) ifi_next; /* pointer to the next interface */ 102 extern TAILQ_HEAD(ifinfo_head_t, ifinfo) ifinfo_head; argument 166 struct ifinfo *find_ifinfo(int); 167 struct rainfo *find_rainfo(struct ifinfo *, struct sockaddr_in6 *); 168 void rtsol_timer_update(struct ifinfo *); 171 extern int ra_opt_handler(struct ifinfo *); 177 extern int interface_status(struct ifinfo *); 194 extern int cap_probe_defrouters(struct cap_channel *, struct ifinfo *); [all …]
|
| H A D | if.c | 188 interface_status(struct ifinfo *ifinfo) in interface_status() argument 190 char *ifname = ifinfo->ifname; in interface_status() 209 if (!ifinfo->mediareqok) in interface_status() 225 ifinfo->mediareqok = 0; in interface_status()
|
| H A D | rtsold.c | 109 static int make_packet(struct ifinfo *); 121 struct ifinfo *ifi; in main() 386 struct ifinfo *ifi; in ifconfig() 487 find_rainfo(struct ifinfo *ifi, struct sockaddr_in6 *sin6) in find_rainfo() 499 struct ifinfo * 502 struct ifinfo *ifi; in find_ifinfo() 512 make_packet(struct ifinfo *ifi) in make_packet() 554 struct ifinfo *ifi; in rtsol_check_timer() 705 rtsol_timer_update(struct ifinfo *ifi) in rtsol_timer_update()
|
| /freebsd/usr.sbin/rtadvd/ |
| H A D | rtadvd.h | 196 struct ifinfo *rai_ifinfo; 265 struct ifinfo { struct 266 TAILQ_ENTRY(ifinfo) ifi_next; 295 extern TAILQ_HEAD(ifilist_head_t, ifinfo) ifilist; argument 301 void ra_output(struct ifinfo *); 305 struct ifinfo *if_indextoifinfo(int);
|
| H A D | config.h | 34 extern struct ifinfo *getconfig(struct ifinfo *); 35 extern int rm_ifinfo(struct ifinfo *);
|
| H A D | if.h | 54 struct ifinfo *update_ifinfo(struct ifilist_head_t *, int); 55 int update_ifinfo_nd_flags(struct ifinfo *); 56 struct ifinfo *update_persist_ifinfo(struct ifilist_head_t *,
|
| H A D | control_server.c | 133 struct ifinfo *ifi; in cm_getprop_ifilist() 167 struct ifinfo *ifi; in cm_getprop_ifi() 202 struct ifinfo *ifi; in cm_getprop_rai() 243 struct ifinfo *ifi; in cm_getprop_ifi_ra_timer() 289 struct ifinfo *ifi; in cm_getprop_rti() 338 struct ifinfo *ifi; in cm_getprop_pfx() 387 struct ifinfo *ifi; in cm_getprop_rdnss() 456 struct ifinfo *ifi; in cm_getprop_dnssl() 524 struct ifinfo *ifi; in cm_getprop_pref64() 633 struct ifinfo *ifi; in cm_setprop_enable() [all …]
|
| H A D | rtadvd.c | 169 static void set_short_delay(struct ifinfo *); 373 struct ifinfo *ifi; in rtadvd_shutdown() 476 struct ifinfo *ifi; in rtmsg_input() 730 struct ifinfo *ifi; in rtadvd_input() 915 struct ifinfo *ifi; in rs_input() 999 set_short_delay(struct ifinfo *ifi) in set_short_delay() 1044 struct ifinfo *ifi; in check_accept_rtadv() 1074 struct ifinfo *ifi; in ra_input() 1226 struct ifinfo *ifi; in prefix_check() 1630 struct ifinfo * [all …]
|
| H A D | if.c | 338 struct ifinfo * 341 struct ifinfo *ifi; in update_persist_ifinfo() 358 /* A new ifinfo element is needed. */ in update_persist_ifinfo() 380 update_ifinfo_nd_flags(struct ifinfo *ifi) in update_ifinfo_nd_flags() 410 struct ifinfo * 414 struct ifinfo *ifi = NULL; in update_ifinfo()
|
| /freebsd/contrib/wpa/src/drivers/ |
| H A D | netlink.c | 176 struct ifinfomsg ifinfo; in netlink_send_oper_ifla() member 191 req.ifinfo.ifi_family = AF_UNSPEC; in netlink_send_oper_ifla() 192 req.ifinfo.ifi_type = 0; in netlink_send_oper_ifla() 193 req.ifinfo.ifi_index = ifindex; in netlink_send_oper_ifla() 194 req.ifinfo.ifi_flags = 0; in netlink_send_oper_ifla() 195 req.ifinfo.ifi_change = 0; in netlink_send_oper_ifla()
|
| /freebsd/sys/compat/linux/ |
| H A D | linux_netlink.c | 359 struct ifinfomsg *ifinfo; in rtnl_newlink_to_linux() local 360 ifinfo = nlmsg_copy_next_header(hdr, nw, struct ifinfomsg); in rtnl_newlink_to_linux() 362 ifinfo->ifi_family = bsd_to_linux_domain(ifinfo->ifi_family); in rtnl_newlink_to_linux() 364 switch (ifinfo->ifi_type) { in rtnl_newlink_to_linux() 366 ifinfo->ifi_type = LINUX_ARPHRD_ETHER; in rtnl_newlink_to_linux() 369 ifinfo->ifi_flags = rtnl_if_flags_to_linux(ifinfo->ifi_flags); in rtnl_newlink_to_linux()
|
| /freebsd/tools/tools/ifinfo/ |
| H A D | Makefile | 1 PROG= ifinfo 2 SRCS= ifinfo.c rfc1650.c
|
| /freebsd/crypto/heimdal/doc/ |
| H A D | heimdal.texi | 22 @ifinfo 27 @end ifinfo 53 @ifinfo 55 @end ifinfo
|
| /freebsd/sbin/dhclient/ |
| H A D | dispatch.c | 70 static int interface_status(struct interface_info *ifinfo); 304 interface_status(struct interface_info *ifinfo) in interface_status() argument 306 char *ifname = ifinfo->name; in interface_status() 307 int ifsock = ifinfo->rfdesc; in interface_status() 328 if (ifinfo->noifmedia) in interface_status() 336 ifinfo->noifmedia = 1; in interface_status() 343 ifinfo->noifmedia = 1; in interface_status()
|
| /freebsd/contrib/ntp/scripts/ |
| H A D | plot_summary.texi | 9 @ifinfo 12 @end ifinfo
|
| H A D | summary.texi | 9 @ifinfo 12 @end ifinfo
|
| /freebsd/contrib/ntp/scripts/calc_tickadj/ |
| H A D | calc_tickadj.texi | 9 @ifinfo 12 @end ifinfo
|
| /freebsd/contrib/ntp/scripts/ntptrace/ |
| H A D | ntptrace.texi | 9 @ifinfo 12 @end ifinfo
|
| /freebsd/contrib/ntp/scripts/ntpsweep/ |
| H A D | ntpsweep.texi | 9 @ifinfo 15 @end ifinfo
|
| /freebsd/contrib/ntp/scripts/update-leap/ |
| H A D | update-leap.texi | 9 @ifinfo 15 @end ifinfo
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | ntp.conf.texi | 9 @ifinfo 12 @end ifinfo
|
| H A D | ntp.keys.texi | 9 @ifinfo 12 @end ifinfo
|
| /freebsd/contrib/ntp/ntpsnmpd/ |
| H A D | ntpsnmpd.texi | 9 @ifinfo 12 @end ifinfo
|
| /freebsd/contrib/ntp/scripts/ntp-wait/ |
| H A D | ntp-wait.texi | 9 @ifinfo 15 @end ifinfo
|