mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
10 lines
284 B
C
10 lines
284 B
C
|
#ifndef CTRL_IFACE_H
|
||
|
#define CTRL_IFACE_H
|
||
|
|
||
|
int hostapd_ctrl_iface_init(struct hostapd_data *hapd);
|
||
|
void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd);
|
||
|
void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
|
||
|
char *buf, size_t len);
|
||
|
|
||
|
#endif /* CTRL_IFACE_H */
|