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

Side by Side Diff: components/onc/onc_constants.h

Issue 1058973002: Add an ONC property for disabling LCP echo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address stevenjb@'s comments Created 5 years, 8 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 unified diff | Download patch
OLDNEW
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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_
5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "components/onc/onc_export.h" 9 #include "components/onc/onc_export.h"
10 10
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 ONC_EXPORT extern const char kEAP[]; 325 ONC_EXPORT extern const char kEAP[];
326 ONC_EXPORT extern const char kGroup[]; 326 ONC_EXPORT extern const char kGroup[];
327 ONC_EXPORT extern const char kIKEVersion[]; 327 ONC_EXPORT extern const char kIKEVersion[];
328 ONC_EXPORT extern const char kPSK[]; 328 ONC_EXPORT extern const char kPSK[];
329 ONC_EXPORT extern const char kServerCAPEMs[]; 329 ONC_EXPORT extern const char kServerCAPEMs[];
330 ONC_EXPORT extern const char kServerCARef[]; 330 ONC_EXPORT extern const char kServerCARef[];
331 ONC_EXPORT extern const char kServerCARefs[]; 331 ONC_EXPORT extern const char kServerCARefs[];
332 ONC_EXPORT extern const char kXAUTH[]; 332 ONC_EXPORT extern const char kXAUTH[];
333 } // namespace ipsec 333 } // namespace ipsec
334 334
335 namespace l2tp {
336 ONC_EXPORT extern const char kLcpEchoDisabled[];
337 ONC_EXPORT extern const char kPassword[];
338 ONC_EXPORT extern const char kSaveCredentials[];
339 ONC_EXPORT extern const char kUsername[];
340 } // namespace l2tp
341
335 namespace openvpn { 342 namespace openvpn {
336 ONC_EXPORT extern const char kAuthNoCache[]; 343 ONC_EXPORT extern const char kAuthNoCache[];
337 ONC_EXPORT extern const char kAuthRetry[]; 344 ONC_EXPORT extern const char kAuthRetry[];
338 ONC_EXPORT extern const char kAuth[]; 345 ONC_EXPORT extern const char kAuth[];
339 ONC_EXPORT extern const char kCipher[]; 346 ONC_EXPORT extern const char kCipher[];
340 ONC_EXPORT extern const char kCompLZO[]; 347 ONC_EXPORT extern const char kCompLZO[];
341 ONC_EXPORT extern const char kCompNoAdapt[]; 348 ONC_EXPORT extern const char kCompNoAdapt[];
342 ONC_EXPORT extern const char kIgnoreDefaultRoute[]; 349 ONC_EXPORT extern const char kIgnoreDefaultRoute[];
343 ONC_EXPORT extern const char kInteract[]; 350 ONC_EXPORT extern const char kInteract[];
344 ONC_EXPORT extern const char kKeyDirection[]; 351 ONC_EXPORT extern const char kKeyDirection[];
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 ONC_EXPORT extern const char kWPAD[]; 420 ONC_EXPORT extern const char kWPAD[];
414 } // namespace proxy 421 } // namespace proxy
415 422
416 namespace global_network_config { 423 namespace global_network_config {
417 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 424 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
418 } // global_network_config 425 } // global_network_config
419 426
420 } // namespace onc 427 } // namespace onc
421 428
422 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 429 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698