Searched refs:mib (Results 1 – 10 of 10) sorted by relevance
/hostap-3.6.0/tests/hwsim/ |
D | test_ieee8021x.py | 188 mib = hapd.get_sta(addr0, info="eapol") 189 if mib['auth_pae_state'] != 'AUTHENTICATING': 190 raise Exception("Unexpected Auth PAE state: " + mib['auth_pae_state']) 437 mib = hapd.get_sta(addr0, info="eapol") 438 if mib[mibparam] != val: 439 raise Exception("Unexpected %s value: %s (expected %s)" % (param, mib[mibparam], val)) 479 mib = hapd.get_sta(addr0, info="eapol") 480 val = int(mib['aWhile']) 489 mib = hapd.get_sta(addr0, info="eapol") 490 val = int(mib['aWhile'])
|
D | test_hapd_ctrl.py | 732 mib = hapd.request("MIB") 733 if len(mib) != 0: 734 raise Exception("Unexpected MIB response: " + mib) 736 mib = hapd.request("MIB radius_server") 737 if len(mib) != 0: 738 raise Exception("Unexpected 'MIB radius_server' response: " + mib) 745 mib = hapd.request("MIB") 746 if "FAIL" in mib: 747 raise Exception("Unexpected MIB response: " + mib) 749 mib = hapd.request("MIB radius_server") [all …]
|
D | test_radius.py | 43 mib = hapd.get_mib() 44 if "radiusAuthClientAccessRequests" not in mib: 46 if int(mib["radiusAuthClientAccessRetransmissions"]) < 1: 48 if int(mib["radiusAuthClientPendingRequests"]) < 1: 65 mib = hapd.get_mib() 66 if "radiusAuthClientAccessRequests" not in mib: 68 …logger.info("radiusAuthClientAccessRetransmissions: " + mib["radiusAuthClientAccessRetransmissions… 98 mib = hapd.get_mib() 99 if "radiusAccClientRetransmissions" not in mib: 101 if int(mib["radiusAccClientRetransmissions"]) < 2: [all …]
|
D | test_wpas_ctrl.py | 772 mib = dev[0].get_mib() 773 if "dot11RSNAOptionImplemented" not in mib: 775 if mib["dot11RSNAOptionImplemented"] != "TRUE":
|
D | test_ap_psk.py | 29 mib = dev.get_mib() 31 if mib[v[0]] != v[1]: 32 raise Exception("Unexpected {} = {} (expected {})".format(v[0], mib[v[0]], v[1]))
|
/hostap-3.6.0/src/l2_packet/ |
D | l2_packet_freebsd.c | 194 int mib[] = { CTL_NET, AF_ROUTE, 0, AF_LINK, NET_RT_IFLIST, 0 }; in eth_get() 196 if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) in eth_get() 200 if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) { in eth_get()
|
/hostap-3.6.0/src/wps/ |
D | wps_upnp.c | 876 int mib[] = { CTL_NET, AF_ROUTE, 0, AF_LINK, NET_RT_IFLIST, 0 }; in eth_get() local 878 if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) in eth_get() 882 if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) { in eth_get()
|
/hostap-3.6.0/wpa_supplicant/doc/docbook/ |
D | wpa_cli.sgml | 206 <term>mib</term>
|
/hostap-3.6.0/wpa_supplicant/ |
D | README | 749 mib = get MIB variables (dot1x, dot11)
|
/hostap-3.6.0/hostapd/ |
D | ChangeLog | 1226 * started adding dot11, dot1x, radius MIBs ('hostapd_cli mib',
|