1 /** 2 * Copyright 2023-2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __HAPD_MAIN_H_ 8 #define __HAPD_MAIN_H_ 9 10 #include "common.h" 11 12 struct hostapd_iface *zephyr_get_hapd_handle_by_ifname(const char *ifname); 13 void zephyr_hostapd_init(struct hapd_interfaces *interfaces); 14 void zephyr_hostapd_msg(void *ctx, const char *txt, size_t len); 15 #endif /* __HAPD_MAIN_H_ */ 16