OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/onc/onc_constants.h" | 5 #include "components/onc/onc_constants.h" |
6 | 6 |
7 // Constants for ONC properties. | 7 // Constants for ONC properties. |
8 namespace onc { | 8 namespace onc { |
9 | 9 |
10 const char kAugmentationActiveSetting[] = "Active"; | 10 const char kAugmentationActiveSetting[] = "Active"; |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 const char kEAP[] = "EAP"; | 307 const char kEAP[] = "EAP"; |
308 const char kGroup[] = "Group"; | 308 const char kGroup[] = "Group"; |
309 const char kIKEVersion[] = "IKEVersion"; | 309 const char kIKEVersion[] = "IKEVersion"; |
310 const char kPSK[] = "PSK"; | 310 const char kPSK[] = "PSK"; |
311 const char kServerCAPEMs[] = "ServerCAPEMs"; | 311 const char kServerCAPEMs[] = "ServerCAPEMs"; |
312 const char kServerCARef[] = "ServerCARef"; | 312 const char kServerCARef[] = "ServerCARef"; |
313 const char kServerCARefs[] = "ServerCARefs"; | 313 const char kServerCARefs[] = "ServerCARefs"; |
314 const char kXAUTH[] = "XAUTH"; | 314 const char kXAUTH[] = "XAUTH"; |
315 } // namespace ipsec | 315 } // namespace ipsec |
316 | 316 |
| 317 namespace l2tp { |
| 318 const char kLcpEchoDisabled[] = "LcpEchoDisabled"; |
| 319 const char kPassword[] = "Password"; |
| 320 const char kSaveCredentials[] = "SaveCredentials"; |
| 321 const char kUsername[] = "Username"; |
| 322 } // namespace l2tp |
| 323 |
317 namespace openvpn { | 324 namespace openvpn { |
318 const char kAuthNoCache[] = "AuthNoCache"; | 325 const char kAuthNoCache[] = "AuthNoCache"; |
319 const char kAuthRetry[] = "AuthRetry"; | 326 const char kAuthRetry[] = "AuthRetry"; |
320 const char kAuth[] = "Auth"; | 327 const char kAuth[] = "Auth"; |
321 const char kCipher[] = "Cipher"; | 328 const char kCipher[] = "Cipher"; |
322 const char kCompLZO[] = "CompLZO"; | 329 const char kCompLZO[] = "CompLZO"; |
323 const char kCompNoAdapt[] = "CompNoAdapt"; | 330 const char kCompNoAdapt[] = "CompNoAdapt"; |
324 const char kIgnoreDefaultRoute[] = "IgnoreDefaultRoute"; | 331 const char kIgnoreDefaultRoute[] = "IgnoreDefaultRoute"; |
325 const char kInteract[] = "interact"; | 332 const char kInteract[] = "interact"; |
326 const char kKeyDirection[] = "KeyDirection"; | 333 const char kKeyDirection[] = "KeyDirection"; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 const char kLoginIDField[] = "${LOGIN_ID}"; | 401 const char kLoginIDField[] = "${LOGIN_ID}"; |
395 const char kEmailField[] = "${LOGIN_EMAIL}"; | 402 const char kEmailField[] = "${LOGIN_EMAIL}"; |
396 } // namespace substitutes | 403 } // namespace substitutes |
397 | 404 |
398 namespace global_network_config { | 405 namespace global_network_config { |
399 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 406 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
400 "AllowOnlyPolicyNetworksToAutoconnect"; | 407 "AllowOnlyPolicyNetworksToAutoconnect"; |
401 } // global_network_config | 408 } // global_network_config |
402 | 409 |
403 } // namespace onc | 410 } // namespace onc |
OLD | NEW |