1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __HAPD_EVENTS_H__ 8 #define __HAPD_EVENTS_H__ 9 10 #include <zephyr/net/wifi_mgmt.h> 11 12 int hostapd_send_wifi_mgmt_ap_status(struct hostapd_iface *iface, 13 enum net_event_wifi_cmd event, 14 enum wifi_ap_status ap_status); 15 16 int hostapd_send_wifi_mgmt_ap_sta_event(struct hostapd_iface *ap_ctx, 17 enum net_event_wifi_cmd event, 18 void *data); 19 20 #ifdef CONFIG_WIFI_NM_WPA_SUPPLICANT_DPP 21 void hostapd_handle_dpp_event(void *ctx, char *buf, size_t len); 22 #endif 23 24 #endif /* __HAPD_EVENTS_H_ */ 25