Additional range enums introduced to eap_type_t

This commit is contained in:
Simon Rozman 2016-08-28 17:20:07 +02:00
parent 88a8b7d093
commit 167e95f01a

View File

@ -71,6 +71,11 @@ namespace winstd
eap_type_peap = 25, ///< EAP-PEAP eap_type_peap = 25, ///< EAP-PEAP
eap_type_mschapv2 = 26, ///< EAP-MSCHAPv2 eap_type_mschapv2 = 26, ///< EAP-MSCHAPv2
eap_type_pap = 192, ///< PAP (Not actually an EAP method; Moved to the Unassigned area) 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)
}; };