Index: chromeos/network/onc/onc_translation_tables.cc |
diff --git a/chromeos/network/onc/onc_translation_tables.cc b/chromeos/network/onc/onc_translation_tables.cc |
index 217a4ded56094ecd3414f0869a42b46787068e55..fb2c3f6d315870bceab430603c3e85866f25c3ca 100644 |
--- a/chromeos/network/onc/onc_translation_tables.cc |
+++ b/chromeos/network/onc/onc_translation_tables.cc |
@@ -31,6 +31,7 @@ const FieldTranslationEntry eap_fields[] = { |
{::onc::eap::kPassword, shill::kEapPasswordProperty}, |
{::onc::eap::kSaveCredentials, shill::kSaveCredentialsProperty}, |
{::onc::eap::kServerCAPEMs, shill::kEapCaCertPemProperty}, |
+ {::onc::eap::kSubjectMatch, shill::kEapSubjectMatchProperty}, |
{::onc::eap::kUseSystemCAs, shill::kEapUseSystemCasProperty}, |
{::onc::eap::kUseProactiveKeyCaching, |
shill::kEapUseProactiveKeyCachingProperty}, |
@@ -320,17 +321,18 @@ const StringTranslationEntry kEAPOuterTable[] = { |
// Translation of the EAP.Inner field in case of EAP.Outer == PEAP |
const StringTranslationEntry kEAP_PEAP_InnerTable[] = { |
+ {::onc::eap::kGTC, shill::kEapPhase2AuthPEAPGTC}, |
{::onc::eap::kMD5, shill::kEapPhase2AuthPEAPMD5}, |
{::onc::eap::kMSCHAPv2, shill::kEapPhase2AuthPEAPMSCHAPV2}, |
- {::onc::eap::kGTC, shill::kEapPhase2AuthPEAPGTC}, |
{NULL}}; |
// Translation of the EAP.Inner field in case of EAP.Outer == TTLS |
const StringTranslationEntry kEAP_TTLS_InnerTable[] = { |
+ {::onc::eap::kGTC, shill::kEapPhase2AuthTTLSGTC}, |
{::onc::eap::kMD5, shill::kEapPhase2AuthTTLSMD5}, |
+ {::onc::eap::kMSCHAP, shill::kEapPhase2AuthTTLSMSCHAP}, |
{::onc::eap::kMSCHAPv2, shill::kEapPhase2AuthTTLSMSCHAPV2}, |
{::onc::eap::kPAP, shill::kEapPhase2AuthTTLSPAP}, |
- {::onc::eap::kGTC, shill::kEapPhase2AuthTTLSGTC}, |
{NULL}}; |
const StringTranslationEntry kActivationStateTable[] = { |