diff options
author | Sunil Dutt <usdutt@codeaurora.org> | 2018-02-01 07:15:41 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2018-02-02 16:51:04 (GMT) |
commit | ba71cb821a9a5a6e059b8f5d7dc651189c7d4d51 (patch) | |
tree | 242eb77f378a66bda0ad6146b8138fe8d9228cfd /src/drivers/driver_common.c | |
parent | 8678b14faadf75e2a3d8590af19190f32e17f5a8 (diff) | |
download | hostap-ba71cb821a9a5a6e059b8f5d7dc651189c7d4d51.zip hostap-ba71cb821a9a5a6e059b8f5d7dc651189c7d4d51.tar.gz hostap-ba71cb821a9a5a6e059b8f5d7dc651189c7d4d51.tar.bz2 |
nl80211: Introduce the interface for external authentication
This command/event interface can be used by host drivers that do not
define separate commands for authentication and association but rely on
wpa_supplicant for the authentication (SAE) processing.
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
Diffstat (limited to 'src/drivers/driver_common.c')
-rw-r--r-- | src/drivers/driver_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/driver_common.c b/src/drivers/driver_common.c index 0464304..33a6db3 100644 --- a/src/drivers/driver_common.c +++ b/src/drivers/driver_common.c @@ -82,6 +82,7 @@ const char * event_to_string(enum wpa_event_type event) E2S(P2P_LO_STOP); E2S(BEACON_LOSS); E2S(DFS_PRE_CAC_EXPIRED); + E2S(EXTERNAL_AUTH); } return "UNKNOWN"; |