| /freebsd-12.1/contrib/wpa/hostapd/ |
| H A D | main.c | 276 iface->interfaces = interfaces; in hostapd_interface_init() 663 os_memset(&interfaces, 0, sizeof(interfaces)); in main() 681 if (!interfaces.dpp) in main() 792 interfaces.iface = os_calloc(interfaces.count + num_bss_configs, in main() 826 interfaces.iface[i] = hostapd_interface_init(&interfaces, in main() 830 if (!interfaces.iface[i]) { in main() 869 interfaces.iface = tmp; in main() 870 interfaces.iface[interfaces.count++] = iface; in main() 882 interfaces.terminate_on_error = interfaces.count; in main() 902 if (!interfaces.iface[i]) in main() [all …]
|
| H A D | ctrl_iface.c | 3352 hapd->iface->interfaces->dpp, in hostapd_ctrl_iface_receive_process() 3856 dpp_global_clear(interfaces->dpp); in hostapd_ctrl_iface_flush() 4018 iface = interfaces->iface[i]; in hostapd_global_ctrl_iface_interfaces() 4117 void *interfaces = eloop_ctx; in hostapd_global_ctrl_iface_receive() local 4200 hostapd_ctrl_iface_flush(interfaces); in hostapd_global_ctrl_iface_receive() 4495 close(interfaces->global_ctrl_sock); in hostapd_global_ctrl_iface_deinit() 4496 interfaces->global_ctrl_sock = -1; in hostapd_global_ctrl_iface_deinit() 4504 if (interfaces->global_iface_path && in hostapd_global_ctrl_iface_deinit() 4513 interfaces->global_iface_path, in hostapd_global_ctrl_iface_deinit() 4521 interfaces->global_iface_path = NULL; in hostapd_global_ctrl_iface_deinit() [all …]
|
| /freebsd-12.1/contrib/wpa/src/ap/ |
| H A D | hostapd.c | 204 struct hapd_interfaces *interfaces = iface->interfaces; in hostapd_reload_config() local 247 iface->interfaces = interfaces; in hostapd_reload_config() 248 interfaces->iface[interfaces->count] = iface; in hostapd_reload_config() 1468 if (!iface->interfaces || !iface->interfaces->ctrl_iface_init) in start_ctrl_iface() 2099 struct hapd_interfaces *interfaces = iface->interfaces; in hostapd_setup_interface_complete() local 2112 if (interfaces && interfaces->terminate_on_error) in hostapd_setup_interface_complete() 2504 iface->interfaces = interfaces; in hostapd_interface_init_bss() 2690 hapd_iface = interfaces->iface[interfaces->count] = in hostapd_iface_alloc() 2698 hapd_iface->interfaces = interfaces; in hostapd_iface_alloc() 2831 interfaces->iface[interfaces->count++] = hapd_iface; in hostapd_add_iface() [all …]
|
| H A D | utils.c | 92 if (hapd->iface->interfaces && in hostapd_prune_associations() 93 hapd->iface->interfaces->for_each_interface) in hostapd_prune_associations() 94 hapd->iface->interfaces->for_each_interface( in hostapd_prune_associations() 95 hapd->iface->interfaces, prune_associations, &data); in hostapd_prune_associations()
|
| H A D | eth_p_oui.c | 94 struct hapd_interfaces *interfaces; in eth_p_oui_register() local 104 interfaces = hapd->iface->interfaces; in eth_p_oui_register() 106 dl_list_for_each(iface, &interfaces->eth_p_oui, struct eth_p_oui_iface, in eth_p_oui_register() 128 dl_list_add_tail(&interfaces->eth_p_oui, &iface->list); in eth_p_oui_register()
|
| H A D | vlan_full.c | 54 struct hapd_interfaces *interfaces; in dyn_iface_get() local 56 interfaces = hapd->iface->interfaces; in dyn_iface_get() 57 dynamic_ifaces = &interfaces->vlan_priv; in dyn_iface_get() 90 struct hapd_interfaces *interfaces; in dyn_iface_put() local 93 interfaces = hapd->iface->interfaces; in dyn_iface_put() 94 dynamic_ifaces = &interfaces->vlan_priv; in dyn_iface_put()
|
| H A D | hostapd.h | 48 int (*for_each_interface)(struct hapd_interfaces *interfaces, 418 struct hapd_interfaces *interfaces; member 572 int hostapd_for_each_interface(struct hapd_interfaces *interfaces, 586 struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces, 589 hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy, 647 struct hostapd_data * hostapd_get_iface(struct hapd_interfaces *interfaces,
|
| H A D | dpp_hostapd.c | 43 bi = dpp_add_qr_code(hapd->iface->interfaces->dpp, cmd); in hostapd_dpp_qr_code() 418 own_bi = dpp_bootstrap_get_id(hapd->iface->interfaces->dpp, in hostapd_dpp_auth_init() 469 if (dpp_set_configurator(hapd->iface->interfaces->dpp, hapd->msg_ctx, in hostapd_dpp_auth_init() 531 if (!hapd->iface->interfaces->dpp) in hostapd_dpp_rx_auth_req() 559 dpp_bootstrap_find_pair(hapd->iface->interfaces->dpp, i_bootstrap, in hostapd_dpp_rx_auth_req() 563 if (dpp_relay_rx_action(hapd->iface->interfaces->dpp, in hostapd_dpp_rx_auth_req() 590 if (dpp_set_configurator(hapd->iface->interfaces->dpp, hapd->msg_ctx, in hostapd_dpp_rx_auth_req() 1278 bi = dpp_pkex_finish(hapd->iface->interfaces->dpp, pkex, src, freq); in hostapd_dpp_rx_pkex_commit_reveal_req() 1370 if (dpp_relay_rx_action(hapd->iface->interfaces->dpp, in hostapd_dpp_rx_action() 1438 if (dpp_relay_rx_gas_req(hapd->iface->interfaces->dpp, sa, data, in hostapd_dpp_gas_req_handler() [all …]
|
| H A D | wpa_auth_glue.c | 486 if (hapd->iface->interfaces == NULL || in hostapd_wpa_auth_for_each_auth() 491 return hapd->iface->interfaces->for_each_interface( in hostapd_wpa_auth_for_each_auth() 492 hapd->iface->interfaces, wpa_auth_iface_iter, &data); in hostapd_wpa_auth_for_each_auth() 607 if (proto == ETH_P_RRB && hapd->iface->interfaces && in hostapd_wpa_auth_send_ether() 608 hapd->iface->interfaces->for_each_interface) { in hostapd_wpa_auth_send_ether() 615 res = hapd->iface->interfaces->for_each_interface( in hostapd_wpa_auth_send_ether() 616 hapd->iface->interfaces, hostapd_wpa_auth_ft_iter, in hostapd_wpa_auth_send_ether() 765 if (hapd->iface->interfaces && in hostapd_wpa_auth_send_oui() 766 hapd->iface->interfaces->for_each_interface) { in hostapd_wpa_auth_send_oui() 775 res = hapd->iface->interfaces->for_each_interface( in hostapd_wpa_auth_send_oui() [all …]
|
| /freebsd-12.1/contrib/wpa/wpa_supplicant/dbus/ |
| H A D | dbus_new_introspect.c | 20 struct interfaces { struct 27 static struct interfaces * add_interface(struct dl_list *list, in add_interface() argument 30 struct interfaces *iface; in add_interface() 32 dl_list_for_each(iface, list, struct interfaces, list) { in add_interface() 37 iface = os_zalloc(sizeof(struct interfaces)); in add_interface() 100 struct interfaces *iface; in extract_interfaces_methods() 115 struct interfaces *iface; in extract_interfaces_signals() 130 struct interfaces *iface; in extract_interfaces_properties() 161 struct interfaces *iface, *n; in add_interfaces() 163 dl_list_for_each_safe(iface, n, list, struct interfaces, list) { in add_interfaces()
|
| /freebsd-12.1/libexec/rc/rc.d/ |
| H A D | bridge | 52 eval interfaces=\$autobridge_${bridge} 53 if [ -n "${interfaces}" ]; then 54 for i in ${interfaces}; do
|
| /freebsd-12.1/contrib/netbsd-tests/ipf/expected/ |
| H A D | f29 | 30 interfaces: in X[nic0],X[] out X[nic3],X[] 36 interfaces: in X[nic0],X[] out X[nic2],X[] 42 interfaces: in X[nic0],X[] out X[nic1],X[] 48 interfaces: in X[nic0],X[] out X[nic0],X[]
|
| H A D | ni6 | 29 interfaces: in X[nf0],X[qfe0] out X[qfe0],X[nf0] 35 interfaces: in X[nf0],X[] out X[],X[] 41 interfaces: in X[nf0],X[qfe0] out X[qfe0],X[nf0]
|
| H A D | f25 | 14 interfaces: in X[hme0],X[] out X[],X[] 20 interfaces: in X[hme0],X[] out X[],X[hme0]
|
| H A D | f11 | 171 interfaces: in X[e1],X[] out X[],X[] 177 interfaces: in X[e1],X[e0] out X[],X[] 219 interfaces: in X[e1],X[] out X[],X[] 225 interfaces: in X[e1],X[e0] out X[],X[] 268 interfaces: in X[e0],X[e1] out X[],X[]
|
| /freebsd-12.1/sbin/pfctl/tests/files/ |
| H A D | pf0009.in | 1 interfaces = "{ enc0, tun1000000 }" 3 block in on $interfaces all
|
| /freebsd-12.1/contrib/apr-util/ |
| H A D | README | 5 and consistent interface to underlying client library interfaces. 24 Multiple SQL DBD client interfaces 25 Multiple flat-database DBM client interfaces 44 programming interfaces may require some adjustments; APR 1.x is 46 Users of APR 1.x can expect consistent interfaces and binary backwards 110 interfaces.
|
| /freebsd-12.1/sys/nfs/ |
| H A D | bootp_subr.c | 177 STAILQ_HEAD(, bootpc_ifcontext) interfaces; 920 STAILQ_FOREACH(ifctx, &gctx->interfaces, next) in bootpc_call() 936 STAILQ_FOREACH(ifctx, &gctx->interfaces, next) in bootpc_call() 1611 STAILQ_INIT(&gctx->interfaces); in bootpc_init() 1662 ifctx = STAILQ_FIRST(&gctx->interfaces); in bootpc_init() 1704 if (STAILQ_EMPTY(&gctx->interfaces) || in bootpc_init() 1724 STAILQ_FOREACH(ifctx, &gctx->interfaces, next) in bootpc_init() 1727 STAILQ_FOREACH(ifctx, &gctx->interfaces, next) in bootpc_init() 1737 STAILQ_FOREACH(ifctx, &gctx->interfaces, next) in bootpc_init() 1746 STAILQ_FOREACH(ifctx, &gctx->interfaces, next) in bootpc_init() [all …]
|
| /freebsd-12.1/libexec/rc/ |
| H A D | network.subr | 148 # interfaces. 615 # interfaces. 1247 # Create IEEE802.11 interfaces. 1322 # Create cloneable interfaces. 1415 # Destroy cloned interfaces. Destroyed interfaces are echoed to 1480 # interfaces are created. 1491 # Create wireless interfaces 1515 # Create vlan interfaces 1545 # Destroy child interfaces. 1623 # nodhcp - all interfaces, excluding DHCP configured interfaces [all …]
|
| /freebsd-12.1/contrib/ipfilter/ |
| H A D | NAT.FreeBSD | 15 4) Enable routing between interfaces 17 6) Configure your network interfaces 75 4) Enable Routing between interfaces. 94 6) Make sure that you have your interfaces configured.
|
| /freebsd-12.1/lib/libc/rpc/ |
| H A D | README | 35 interfaces of UI Threads to make certain interfaces thread-safe. These 36 interfaces are found in libthread in Solaris 2.3 and later. 78 2. The RPC library is thread safe for all client-side interfaces 79 (clnt_create, clnt_call, etc.). The server-side interfaces 81 server-side interfaces will be made thread safe in the next release of 83 interfaces are thread safe.
|
| /freebsd-12.1/contrib/libpcap/ |
| H A D | README.sita | 28 ACN interfaces and will not capture from the native OS packet stream. 33 work, but interfaces via a TCP session to remote agents that 44 list of monitorable interfaces.
|
| /freebsd-12.1/contrib/llvm/tools/lld/docs/ |
| H A D | Driver.rst | 22 interfaces. The main interfaces we plan to support are binutils' ld, Apple's 28 Each of these different interfaces is referred to as a flavor. There is also an
|
| /freebsd-12.1/contrib/wpa/src/wps/ |
| H A D | wps_upnp.c | 545 dl_list_for_each(iface, &s->sm->interfaces, in subscription_destroy() 1068 dl_list_for_each(iface, &sm->interfaces, in upnp_wps_get_iface() 1097 if (dl_list_len(&sm->interfaces) == 1) { in upnp_wps_device_deinit() 1117 if (dl_list_empty(&sm->interfaces)) { in upnp_wps_device_deinit() 1174 dl_list_init(&sm->interfaces); in upnp_wps_device_init() 1178 dl_list_add(&sm->interfaces, &iface->list); in upnp_wps_device_init() 1207 dl_list_for_each(iface, &sm->interfaces, in upnp_wps_set_ap_pin()
|
| /freebsd-12.1/contrib/ngatm/snmp_atm/ |
| H A D | BEGEMOT-ATM.txt | 34 -- Private Begemot MIB for ATM interfaces. 63 "The Begemot MIB for ATM interfaces." 199 "The state of the carrier. For interfaces which don't have the 208 "The mode of the SUNI interface. For interfaces without SUNI 210 Some types of interfaces may not be able to change this value."
|