Add resident.conf(5) and varsym.conf(5) manual pages.
[dragonfly/vkernel-mp.git] / contrib / hostapd-0.4.9 / ieee802_11_auth.h
blob90adc8f174ca324caf0c7e2646024f14ac8dda9d
1 #ifndef IEEE802_11_AUTH_H
2 #define IEEE802_11_AUTH_H
4 enum {
5 HOSTAPD_ACL_REJECT = 0,
6 HOSTAPD_ACL_ACCEPT = 1,
7 HOSTAPD_ACL_PENDING = 2,
8 HOSTAPD_ACL_ACCEPT_TIMEOUT = 3
9 };
11 int hostapd_allowed_address(hostapd *hapd, u8 *addr, u8 *msg, size_t len,
12 u32 *session_timeout, u32 *acct_interim_interval);
13 int hostapd_acl_init(hostapd *hapd);
14 void hostapd_acl_deinit(hostapd *hapd);
16 #endif /* IEEE802_11_AUTH_H */