Added eap-dynamic plugin which can proxy any other EAP method

This commit is contained in:
Tobias Brunner
2012-08-31 11:42:01 +02:00
parent 7240914955
commit 700ff5def9
9 changed files with 332 additions and 1 deletions
+1
View File
@@ -114,6 +114,7 @@ eap_type_t eap_type_from_string(char *name)
{"peap", EAP_PEAP},
{"mschapv2", EAP_MSCHAPV2},
{"tnc", EAP_TNC},
{"dynamic", EAP_DYNAMIC},
{"radius", EAP_RADIUS},
};
+1 -1
View File
@@ -71,7 +71,7 @@ enum eap_type_t {
EAP_EXPERIMENTAL = 255,
/** not a method, but an implementation providing different methods */
EAP_RADIUS = 256,
/** not a method, select actual method dynamically based on e.g. the ID */
/** not a method, select method dynamically based on client selection */
EAP_DYNAMIC = 257,
};