52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
|
/*
|
||
|
* IEEE 802.1X-2010 KaY Interface
|
||
|
* Copyright (c) 2019, The Linux Foundation
|
||
|
*
|
||
|
* This software may be distributed under the terms of the BSD license.
|
||
|
* See README for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef WPA_AUTH_KAY_H
|
||
|
#define WPA_AUTH_KAY_H
|
||
|
|
||
|
#ifdef CONFIG_MACSEC
|
||
|
|
||
|
int ieee802_1x_alloc_kay_sm_hapd(struct hostapd_data *hapd,
|
||
|
struct sta_info *sta);
|
||
|
void * ieee802_1x_notify_create_actor_hapd(struct hostapd_data *hapd,
|
||
|
struct sta_info *sta);
|
||
|
void ieee802_1x_dealloc_kay_sm_hapd(struct hostapd_data *hapd);
|
||
|
|
||
|
void * ieee802_1x_create_preshared_mka_hapd(struct hostapd_data *hapd,
|
||
|
struct sta_info *sta);
|
||
|
|
||
|
#else /* CONFIG_MACSEC */
|
||
|
|
||
|
static inline int ieee802_1x_alloc_kay_sm_hapd(struct hostapd_data *hapd,
|
||
|
struct sta_info *sta)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static inline void *
|
||
|
ieee802_1x_notify_create_actor_hapd(struct hostapd_data *hapd,
|
||
|
struct sta_info *sta)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
static inline void ieee802_1x_dealloc_kay_sm_hapd(struct hostapd_data *hapd)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static inline void *
|
||
|
ieee802_1x_create_preshared_mka_hapd(struct hostapd_data *hapd,
|
||
|
struct sta_info *sta)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
#endif /* CONFIG_MACSEC */
|
||
|
|
||
|
#endif /* WPA_AUTH_KAY_H */
|