mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-26 09:18:24 -05:00
0f3d578efc
Remove the GPL notification text from the files that were initially contributed by myself. Signed-hostap: Jouni Malinen <j@w1.fi>
27 lines
725 B
C
27 lines
725 B
C
/*
|
|
* hostapd / IEEE 802.11 authentication (ACL)
|
|
* Copyright (c) 2003-2005, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef IEEE802_11_AUTH_H
|
|
#define IEEE802_11_AUTH_H
|
|
|
|
enum {
|
|
HOSTAPD_ACL_REJECT = 0,
|
|
HOSTAPD_ACL_ACCEPT = 1,
|
|
HOSTAPD_ACL_PENDING = 2,
|
|
HOSTAPD_ACL_ACCEPT_TIMEOUT = 3
|
|
};
|
|
|
|
int hostapd_allowed_address(struct hostapd_data *hapd, const u8 *addr,
|
|
const u8 *msg, size_t len, u32 *session_timeout,
|
|
u32 *acct_interim_interval, int *vlan_id,
|
|
u8 *psk, int *has_psk);
|
|
int hostapd_acl_init(struct hostapd_data *hapd);
|
|
void hostapd_acl_deinit(struct hostapd_data *hapd);
|
|
|
|
#endif /* IEEE802_11_AUTH_H */
|