From 167e95f01accd3ec4a9e2d65d5af5ed29316faab Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Sun, 28 Aug 2016 17:20:07 +0200 Subject: [PATCH] Additional range enums introduced to eap_type_t --- include/WinStd/EAP.h | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/include/WinStd/EAP.h b/include/WinStd/EAP.h index 9b3bdb21..4834f542 100644 --- a/include/WinStd/EAP.h +++ b/include/WinStd/EAP.h @@ -65,12 +65,17 @@ namespace winstd { #pragma warning(suppress: 4480) enum eap_type_t : unsigned char { - eap_type_undefined = 0, ///< Undefined EAP type - eap_type_tls = 13, ///< EAP-TLS - eap_type_ttls = 21, ///< EAP-TTLS - eap_type_peap = 25, ///< EAP-PEAP - eap_type_mschapv2 = 26, ///< EAP-MSCHAPv2 - eap_type_pap = 192, ///< PAP (Not actually an EAP method; Moved to the Unassigned area) + eap_type_undefined = 0, ///< Undefined EAP type + eap_type_tls = 13, ///< EAP-TLS + eap_type_ttls = 21, ///< EAP-TTLS + eap_type_peap = 25, ///< EAP-PEAP + eap_type_mschapv2 = 26, ///< EAP-MSCHAPv2 + eap_type_pap = 192, ///< PAP (Not actually an EAP method; Moved to the Unassigned area) + + eap_type_start = 1, ///< Start of EAP methods + eap_type_end = 192, ///< End of EAP methods (non-inclusive) + eap_type_noneap_start = 192, ///< Start of non-EAP methods + eap_type_noneap_end = 254, ///< End of non-EAP methods (non-inclusive) };