Nuke unused macro and comment
[dragonfly.git] / contrib / hostapd-0.5.8 / ieee802_11_auth.h
blob0eed825e29a404c9687bbbf03089efbab22006e3
1 /*
2 * hostapd / IEEE 802.11 authentication (ACL)
3 * Copyright (c) 2003-2005, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #ifndef IEEE802_11_AUTH_H
16 #define IEEE802_11_AUTH_H
18 enum {
19 HOSTAPD_ACL_REJECT = 0,
20 HOSTAPD_ACL_ACCEPT = 1,
21 HOSTAPD_ACL_PENDING = 2,
22 HOSTAPD_ACL_ACCEPT_TIMEOUT = 3
25 int hostapd_allowed_address(struct hostapd_data *hapd, const u8 *addr,
26 const u8 *msg, size_t len, u32 *session_timeout,
27 u32 *acct_interim_interval, int *vlan_id);
28 int hostapd_acl_init(struct hostapd_data *hapd);
29 void hostapd_acl_deinit(struct hostapd_data *hapd);
30 int hostapd_acl_reconfig(struct hostapd_data *hapd,
31 struct hostapd_config *oldconf);
33 #endif /* IEEE802_11_AUTH_H */