diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-01-10 15:28:59 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-01-10 16:02:32 +0000 |
commit | 0abb3e85e518c4d9366d4555093c0aff0c060858 (patch) | |
tree | ca712109d5828b8653476207eb4628dcdb236772 /src/include/ipxe/eap.h | |
parent | 4ed7a5718f29e59c19d6bef51dc3430861c9da87 (diff) | |
download | ipxe-0abb3e85e518c4d9366d4555093c0aff0c060858.tar.gz |
[eap] Ignore any received EAP responses
EAP responses (including our own) may be broadcast by switches but are
not of interest to us and can be safely ignored if received.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/eap.h')
-rw-r--r-- | src/include/ipxe/eap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/ipxe/eap.h b/src/include/ipxe/eap.h index 818862a94..4b689cc24 100644 --- a/src/include/ipxe/eap.h +++ b/src/include/ipxe/eap.h @@ -26,6 +26,9 @@ struct eap_header { /** EAP request */ #define EAP_CODE_REQUEST 1 +/** EAP response */ +#define EAP_CODE_RESPONSE 2 + /** EAP request */ struct eap_request { /** Header */ |