diff options
author | Jouni Malinen <j@w1.fi> | 2015-07-12 07:44:20 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2015-07-12 08:33:33 (GMT) |
commit | cfb5c08f214c8212a8d421be9cab37ddb6757b22 (patch) | |
tree | 4a7a35989e323c0931b666e8e29a69935de37cc2 /src/eapol_auth/eapol_auth_sm.h | |
parent | 778325501b0e485539d89fee47e92bc35917973b (diff) | |
download | hostap-cfb5c08f214c8212a8d421be9cab37ddb6757b22.zip hostap-cfb5c08f214c8212a8d421be9cab37ddb6757b22.tar.gz hostap-cfb5c08f214c8212a8d421be9cab37ddb6757b22.tar.bz2 |
Add EAPOL_REAUTH hostapd command to trigger EAPOL reauthentication
This new control interface command "EAPOL_REAUTH <MAC address>" can be
used to implement the IEEE 802.1X PAE Reauthenticate operation.
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/eapol_auth/eapol_auth_sm.h')
-rw-r--r-- | src/eapol_auth/eapol_auth_sm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eapol_auth/eapol_auth_sm.h b/src/eapol_auth/eapol_auth_sm.h index ebed19a..bea784d 100644 --- a/src/eapol_auth/eapol_auth_sm.h +++ b/src/eapol_auth/eapol_auth_sm.h @@ -1,6 +1,6 @@ /* * IEEE 802.1X-2004 Authenticator - EAPOL state machine - * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> + * Copyright (c) 2002-2015, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. @@ -94,5 +94,6 @@ void eapol_auth_step(struct eapol_state_machine *sm); int eapol_auth_dump_state(struct eapol_state_machine *sm, char *buf, size_t buflen); int eapol_auth_eap_pending_cb(struct eapol_state_machine *sm, void *ctx); +void eapol_auth_reauthenticate(struct eapol_state_machine *sm); #endif /* EAPOL_AUTH_SM_H */ |