Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Unified Diff: chromeos/network/onc/onc_translation_tables.cc

Issue 1137633003: Add ONC property for EAP-GTC authentication (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add to onc_constants.h Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromeos/network/onc/onc_validator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d3d00a0c5e38d3548be9e17777ca7f8dd735c5f1..40e0cd177019cdda6f99a88599d0b50c59b09bfd 100644
--- a/chromeos/network/onc/onc_translation_tables.cc
+++ b/chromeos/network/onc/onc_translation_tables.cc
@@ -311,6 +311,7 @@ const StringTranslationEntry kEAPOuterTable[] = {
const StringTranslationEntry kEAP_PEAP_InnerTable[] = {
{::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
@@ -318,6 +319,7 @@ const StringTranslationEntry kEAP_TTLS_InnerTable[] = {
{::onc::eap::kMD5, shill::kEapPhase2AuthTTLSMD5},
{::onc::eap::kMSCHAPv2, shill::kEapPhase2AuthTTLSMSCHAPV2},
{::onc::eap::kPAP, shill::kEapPhase2AuthTTLSPAP},
+ {::onc::eap::kGTC, shill::kEapPhase2AuthTTLSGTC},
{NULL}};
const StringTranslationEntry kActivationStateTable[] = {
« no previous file with comments | « no previous file | chromeos/network/onc/onc_validator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698