/hostap-3.6.0/src/ap/ |
D | vlan_init.c | 221 os_strlcpy(n->bridge, vlan->bridge, sizeof(n->bridge)); in vlan_add_dynamic()
|
D | x_snoop.c | 28 if (conf->bridge[0] == '\0') { in x_snoop_init() 75 l2 = l2_packet_init(conf->bridge, NULL, ETH_P_ALL, handler, hapd, 1); in x_snoop_get_l2_packet()
|
D | vlan_full.c | 426 if (vlan->bridge[0]) { in vlan_bridge_name() 427 os_strlcpy(br_name, vlan->bridge, IFNAMSIZ); in vlan_bridge_name() 486 if (hapd->conf->bridge[0] && in vlan_newlink() 487 !br_addif(hapd->conf->bridge, ifname)) in vlan_newlink() 603 if (hapd->conf->bridge[0] && in vlan_dellink() 605 br_delif(hapd->conf->bridge, ifname); in vlan_dellink()
|
D | ap_drv_ops.c | 337 const char *bridge = NULL; in hostapd_set_wds_sta() local 342 bridge = hapd->conf->wds_bridge; in hostapd_set_wds_sta() 343 else if (hapd->conf->bridge[0]) in hostapd_set_wds_sta() 344 bridge = hapd->conf->bridge; in hostapd_set_wds_sta() 346 bridge, ifname_wds); in hostapd_set_wds_sta() 500 const char *bridge, int use_existing) in hostapd_if_add() argument 506 bridge, use_existing, 1); in hostapd_if_add()
|
D | ap_config.h | 136 char bridge[IFNAMSIZ + 1]; member 278 char bridge[IFNAMSIZ + 1]; member
|
D | ap_drv_ops.h | 57 const char *bridge, int use_existing);
|
D | wpa_auth_glue.c | 1568 ft_iface = hapd->conf->bridge[0] ? hapd->conf->bridge : in hostapd_setup_wpa()
|
D | hostapd.c | 1164 conf->bridge[0] ? conf->bridge : NULL, in hostapd_setup_bss()
|
/hostap-3.6.0/hostapd/ |
D | main.c | 196 params.bridge = os_calloc(hapd->iface->num_bss, sizeof(char *)); in hostapd_driver_init() 197 if (params.bridge == NULL) in hostapd_driver_init() 201 if (bss->conf->bridge[0]) in hostapd_driver_init() 202 params.bridge[i] = bss->conf->bridge; in hostapd_driver_init() 208 os_free(params.bridge); in hostapd_driver_init()
|
D | README-MULTI-AP | 80 is created for each backhaul STA and it is automatically added to a bridge. 81 This is the same behavior as for WDS, and the relevant option ('bridge' or
|
D | ChangeLog | 345 * added code to clear bridge FDB entry on station disconnection 593 * Add bridge handling for WDS STA interfaces. By default they are 594 added to the configured bridge of the AP interface (if present), 595 but the user can also specify a separate bridge using cli command 598 - Add wds_bridge command for specifying bridge for WDS STA 726 * detect bridge interface automatically so that bridge parameter in 728 automatically add then WLAN interface into a bridge with 1063 ath# is part of a bridge interface
|
D | config_file.c | 109 os_strlcpy(vlan->bridge, pos2, sizeof(vlan->bridge)); in hostapd_config_read_vlan_file() 2360 os_strlcpy(bss->bridge, pos, sizeof(bss->bridge)); in hostapd_config_fill()
|
D | defconfig | 192 # automatically create bridge and VLAN interfaces if necessary.
|
/hostap-3.6.0/tests/hwsim/ |
D | utils.py | 81 def iface_is_in_bridge(bridge, ifname): argument 88 if bridge == truebridge:
|
D | example-setup.txt | 35 …l-genl-3-dev libnl-route-3-dev libssl-dev libiberty-dev libdbus-1-dev iw bridge-utils python-pyrad…
|
D | test_sigma_dut.py | 103 bridge=None, sae_h2e=False, owe_ptk_workaround=False): argument 117 if bridge: 118 cmd += ['-b', bridge] 3832 sigma = start_sigma_dut(iface, bridge="ap-br0", hostapd_logdir=logdir)
|
/hostap-3.6.0/tests/hwsim/vm/ |
D | example-vm-setup.txt | 37 python-dbus python-gobject python-openssl bridge-utils ebtables tshark
|
/hostap-3.6.0/wpa_supplicant/ |
D | android.config | 271 # in a bridge for EAPOL frames. This should be uncommented only if the kernel 273 # bridge interfaces (commit 'bridge: respect RFC2863 operational state')').
|
D | driver_i.h | 442 u8 *if_addr, const char *bridge) in wpa_drv_if_add() argument 447 if_addr, bridge, 0, 0); in wpa_drv_if_add()
|
D | defconfig | 308 # in a bridge for EAPOL frames. This should be uncommented only if the kernel 310 # bridge interfaces (commit 'bridge: respect RFC2863 operational state')').
|
D | README | 417 -b = optional bridge interface name 496 If the interface is added in a Linux bridge (e.g., br0), the bridge
|
/hostap-3.6.0/src/drivers/ |
D | driver_atheros.c | 1756 if (params->bridge[0]) { in atheros_init() 1758 params->bridge[0]); in atheros_init() 1759 drv->sock_recv = l2_packet_init(params->bridge[0], NULL, in atheros_init()
|
D | driver.h | 2234 char **bridge; member 3363 const char *bridge, int use_existing, int setup_ap);
|
D | driver_nl80211.c | 7688 } else if ((params->num_bridge == 0 || !params->bridge[0]) && in i802_init() 7709 if (params->bridge[i]) { in i802_init() 7710 ifindex = if_nametoindex(params->bridge[i]); in i802_init() 7721 if (params->num_bridge && params->bridge[0]) { in i802_init() 7722 if (i802_check_bridge(drv, bss, params->bridge[0], in i802_init() 7725 if (os_strcmp(params->bridge[0], master_ifname) != 0) in i802_init() 7730 (params->num_bridge == 0 || !params->bridge[0])) in i802_init() 7886 const char *bridge, int use_existing, in wpa_driver_nl80211_if_add() argument 7979 if (bridge && in wpa_driver_nl80211_if_add() 7980 i802_check_bridge(drv, new_bss, bridge, ifname) < 0) { in wpa_driver_nl80211_if_add() [all …]
|
/hostap-3.6.0/wpa_supplicant/doc/docbook/ |
D | wpa_supplicant.sgml | 308 <para>Optional bridge interface name. (Per interface)</para>
|