diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-02-23 12:33:57 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-02-23 16:24:44 +0000 |
commit | 25ffcd79bfd38da96f9905b78e3d5c3cab33dad3 (patch) | |
tree | f19e4a09d18890608775e3acbefbe12ca1b6da77 /src/include/ipxe/eap.h | |
parent | 834f319f87bd2a1135c51375774f6bfe17a244cc (diff) | |
download | ipxe-25ffcd79bfd38da96f9905b78e3d5c3cab33dad3.tar.gz |
[eap] Allow MD5-Challenge authentication method to be disabled
RFC 3748 states that implementations must support the MD5-Challenge
method. However, some network environments may wish to disable it as
a matter of policy.
Allow support for MD5-Challenge to be controllable via the build
configuration option EAP_METHOD_MD5 in config/general.h.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/eap.h')
-rw-r--r-- | src/include/ipxe/eap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ipxe/eap.h b/src/include/ipxe/eap.h index cf1c7c00d..fe1bb5282 100644 --- a/src/include/ipxe/eap.h +++ b/src/include/ipxe/eap.h @@ -166,6 +166,8 @@ struct eap_method { /** Declare an EAP method */ #define __eap_method __table_entry ( EAP_METHODS, 01 ) +extern int eap_tx_response ( struct eap_supplicant *supplicant, + const void *rsp, size_t rsp_len ); extern int eap_rx ( struct eap_supplicant *supplicant, const void *data, size_t len ); |