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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 const char kXAUTH[] = "XAUTH"; | 253 const char kXAUTH[] = "XAUTH"; |
254 } // namespace ipsec | 254 } // namespace ipsec |
255 | 255 |
256 namespace openvpn { | 256 namespace openvpn { |
257 const char kAuthNoCache[] = "AuthNoCache"; | 257 const char kAuthNoCache[] = "AuthNoCache"; |
258 const char kAuthRetry[] = "AuthRetry"; | 258 const char kAuthRetry[] = "AuthRetry"; |
259 const char kAuth[] = "Auth"; | 259 const char kAuth[] = "Auth"; |
260 const char kCipher[] = "Cipher"; | 260 const char kCipher[] = "Cipher"; |
261 const char kCompLZO[] = "CompLZO"; | 261 const char kCompLZO[] = "CompLZO"; |
262 const char kCompNoAdapt[] = "CompNoAdapt"; | 262 const char kCompNoAdapt[] = "CompNoAdapt"; |
| 263 const char kIgnoreDefaultRoute[] = "IgnoreDefaultRoute"; |
263 const char kInteract[] = "interact"; | 264 const char kInteract[] = "interact"; |
264 const char kKeyDirection[] = "KeyDirection"; | 265 const char kKeyDirection[] = "KeyDirection"; |
265 const char kNoInteract[] = "nointeract"; | 266 const char kNoInteract[] = "nointeract"; |
266 const char kNone[] = "none"; | 267 const char kNone[] = "none"; |
267 const char kNsCertType[] = "NsCertType"; | 268 const char kNsCertType[] = "NsCertType"; |
268 const char kPort[] = "Port"; | 269 const char kPort[] = "Port"; |
269 const char kProto[] = "Proto"; | 270 const char kProto[] = "Proto"; |
270 const char kPushPeerInfo[] = "PushPeerInfo"; | 271 const char kPushPeerInfo[] = "PushPeerInfo"; |
271 const char kRemoteCertEKU[] = "RemoteCertEKU"; | 272 const char kRemoteCertEKU[] = "RemoteCertEKU"; |
272 const char kRemoteCertKU[] = "RemoteCertKU"; | 273 const char kRemoteCertKU[] = "RemoteCertKU"; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 const char kLoginIDField[] = "${LOGIN_ID}"; | 319 const char kLoginIDField[] = "${LOGIN_ID}"; |
319 const char kEmailField[] = "${LOGIN_EMAIL}"; | 320 const char kEmailField[] = "${LOGIN_EMAIL}"; |
320 } // namespace substitutes | 321 } // namespace substitutes |
321 | 322 |
322 namespace global_network_config { | 323 namespace global_network_config { |
323 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 324 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
324 "AllowOnlyPolicyNetworksToAutoconnect"; | 325 "AllowOnlyPolicyNetworksToAutoconnect"; |
325 } // global_network_config | 326 } // global_network_config |
326 | 327 |
327 } // namespace onc | 328 } // namespace onc |
OLD | NEW |