Lines Matching refs:evt
117 wifi_event_ap_wps_rg_fail_reason_t evt = {0}; in hostapd_pwd_auth_fail() local
123 os_memcpy(evt.peer_macaddr, data->peer_macaddr, ETH_ALEN); in hostapd_pwd_auth_fail()
124 evt.reason = WPS_AP_FAIL_REASON_AUTH; in hostapd_pwd_auth_fail()
125 esp_event_post(WIFI_EVENT, WIFI_EVENT_AP_WPS_RG_FAILED, &evt, in hostapd_pwd_auth_fail()
126 sizeof(evt), OS_BLOCK); in hostapd_pwd_auth_fail()
178 wifi_event_ap_wps_rg_success_t evt; in hostapd_wps_event_success() local
180 os_memcpy(evt.peer_macaddr, success->peer_macaddr, ETH_ALEN); in hostapd_wps_event_success()
181 esp_event_post(WIFI_EVENT, WIFI_EVENT_AP_WPS_RG_SUCCESS, &evt, in hostapd_wps_event_success()
182 sizeof(evt), OS_BLOCK); in hostapd_wps_event_success()
189 wifi_event_ap_wps_rg_fail_reason_t evt; in hostapd_wps_event_fail() local
191 evt.reason = WPS_AP_FAIL_REASON_CONFIG; in hostapd_wps_event_fail()
193 evt.reason = WPS_AP_FAIL_REASON_NORMAL; in hostapd_wps_event_fail()
194 os_memcpy(evt.peer_macaddr, fail->peer_macaddr, ETH_ALEN); in hostapd_wps_event_fail()
195 esp_event_post(WIFI_EVENT, WIFI_EVENT_AP_WPS_RG_FAILED, &evt, in hostapd_wps_event_fail()
196 sizeof(evt), OS_BLOCK); in hostapd_wps_event_fail()