You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I read the code src/drivers/driver_wext.c
at function: wpa_driver_wext_event_wireless
the client may receive a is_zero_ether_addr all 0 mac,
I want to ask how to make the client receive a "00:00:00:00:00:00" mac which seems a assiciation AP?
I read the code src/drivers/driver_wext.c
at function: wpa_driver_wext_event_wireless
the client may receive a is_zero_ether_addr all 0 mac,
I want to ask how to make the client receive a "00:00:00:00:00:00" mac which seems a assiciation AP?
case SIOCGIWAP:
wpa_printf(MSG_DEBUG, "Wireless event: new AP: "
MACSTR,
MAC2STR((u8 *) iwe->u.ap_addr.sa_data));
*if (is_zero_ether_addr(
(const u8 ) iwe->u.ap_addr.sa_data) ||
os_memcmp(iwe->u.ap_addr.sa_data,
"\x44\x44\x44\x44\x44\x44", ETH_ALEN) ==
0) {
os_free(drv->assoc_req_ies);
drv->assoc_req_ies = NULL;
os_free(drv->assoc_resp_ies);
drv->assoc_resp_ies = NULL;
wpa_supplicant_event(drv->ctx, EVENT_DISASSOC,
NULL);
The text was updated successfully, but these errors were encountered: