Merge from vendor branch BIND:
[dragonfly.git] / contrib / hostapd-0.4.9 / ieee802_11_auth.h
1 #ifndef IEEE802_11_AUTH_H
2 #define IEEE802_11_AUTH_H
3
4 enum {
5         HOSTAPD_ACL_REJECT = 0,
6         HOSTAPD_ACL_ACCEPT = 1,
7         HOSTAPD_ACL_PENDING = 2,
8         HOSTAPD_ACL_ACCEPT_TIMEOUT = 3
9 };
10
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);
15
16 #endif /* IEEE802_11_AUTH_H */