/external/ipsec-tools/src/include-glibc/netinet/ |
ipsec.h | 1 /* $NetBSD: ipsec.h,v 1.4 2006/09/09 16:22:09 manu Exp $ */ 4 #include <linux/ipsec.h>
|
/external/ipsec-tools/ |
config.h | 17 #define PATH_IPSEC_H <netinet/ipsec.h>
|
/external/chromium_org/chromeos/network/onc/ |
onc_normalizer.cc | 121 void Normalizer::NormalizeIPsec(base::DictionaryValue* ipsec) { 122 using namespace ::onc::ipsec; 125 ipsec->GetStringWithoutPathExpansion(kAuthenticationType, &auth_type); 126 RemoveEntryUnless(ipsec, ::onc::vpn::kClientCertType, auth_type == kCert); 127 RemoveEntryUnless(ipsec, kServerCARef, auth_type == kCert); 128 RemoveEntryUnless(ipsec, kPSK, auth_type == kPSK); 129 RemoveEntryUnless(ipsec, ::onc::vpn::kSaveCredentials, auth_type == kPSK); 132 ipsec->GetStringWithoutPathExpansion(::onc::vpn::kClientCertType, 134 RemoveEntryUnless(ipsec, 137 RemoveEntryUnless(ipsec, [all...] |
onc_normalizer.h | 42 void NormalizeIPsec(base::DictionaryValue* ipsec);
|
onc_signature.cc | 75 { ::onc::ipsec::kAuthenticationType, &kStringSignature}, 79 { ::onc::ipsec::kGroup, &kStringSignature}, 80 { ::onc::ipsec::kIKEVersion, &kIntegerSignature}, 81 { ::onc::ipsec::kPSK, &kStringSignature}, 84 { ::onc::ipsec::kServerCAPEMs, &kStringListSignature}, 85 { ::onc::ipsec::kServerCARef, &kStringSignature}, 86 { ::onc::ipsec::kServerCARefs, &kStringListSignature}, 88 // { ipsec::kEAP, &kEAPSignature }, 89 // { ipsec::kXAUTH, &kXAUTHSignature }, 420 {&kIPsecSignature, ::onc::ipsec::kPSK} [all...] |
onc_translation_tables.cc | 42 // { ::onc::ipsec::kAuthenticationType, shill::kL2tpIpsecAuthenticationType 44 { ::onc::ipsec::kGroup, shill::kL2tpIpsecTunnelGroupProperty}, 46 // { ::onc::ipsec::kIKEVersion, shill::kL2tpIpsecIkeVersion }, 47 { ::onc::ipsec::kPSK, shill::kL2tpIpsecPskProperty}, 49 { ::onc::ipsec::kServerCAPEMs, shill::kL2tpIpsecCaCertPemProperty}, 56 // support separate settings for ipsec and l2tp.
|
onc_utils.cc | 580 ipsec::kServerCARefs, 581 ipsec::kServerCARef, 582 ipsec::kServerCAPEMs,
|
onc_validator.cc | 589 using namespace ::onc::ipsec;
|
/external/chromium_org/chromeos/network/ |
network_ui_data.cc | 179 void TranslateIPsec(const base::DictionaryValue& ipsec, 182 if (ipsec.GetStringWithoutPathExpansion(::onc::vpn::kClientCertType,
|
client_cert_resolver.cc | 193 // pattern within an EAP, IPsec or OpenVPN configuration. 217 const base::DictionaryValue* ipsec = NULL; local 218 vpn->GetDictionaryWithoutPathExpansion(vpn::kIPsec, &ipsec); 219 if (ipsec)
|
/external/chromium_org/components/onc/ |
onc_constants.cc | 218 const char kIPsec[] = "IPsec"; 223 const char kTypeL2TP_IPsec[] = "L2TP-IPsec"; 228 namespace ipsec { namespace in namespace:onc 239 } // namespace ipsec
|
onc_constants.h | 251 namespace ipsec { namespace in namespace:onc 262 } // namespace ipsec
|
/external/ipsec-tools/src/libipsec/ |
test-policy.c | 40 #include <netinet/ipsec.h> 55 { 0, "out ipsec" }, 57 { 1, "in ipsec must_error" }, 58 { 1, "out ipsec esp/must_error" }, 63 { 1, "out ipsec esp" }, 64 { 0, "in ipsec ah/transport" }, 65 { 1, "in ipsec ah/tunnel" }, 66 { 0, "out ipsec ah/transport/" }, 67 { 1, "out ipsec ah/tunnel/" }, 68 { 0, "in ipsec esp / transport / 10.0.0.1-10.0.0.2" } [all...] |
/external/chromium_org/chrome/browser/chromeos/options/ |
vpn_config_view.cc | 768 ParseVPNUIProperty(vpn, type_dict_name, ::onc::ipsec::kServerCARef, 770 ParseVPNUIProperty(vpn, type_dict_name, ::onc::ipsec::kPSK, 772 ParseVPNUIProperty(vpn, type_dict_name, ::onc::ipsec::kGroup, [all...] |