diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-05-26 17:19:26 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-05-26 17:19:26 +0200 |
commit | 517895bd0566f836202a386d5e9e914c9d95601b (patch) | |
tree | 2465941a6e2b74ae6438c855e0faf7f21db32155 /src/libstrongswan | |
parent | 0355a1320caceaa86179dd59133bdd7b6d16831e (diff) | |
download | strongswan-517895bd0566f836202a386d5e9e914c9d95601b.tar.bz2 strongswan-517895bd0566f836202a386d5e9e914c9d95601b.tar.xz |
eliminated ipsec_policy.h
Diffstat (limited to 'src/libstrongswan')
-rw-r--r-- | src/libstrongswan/utils/identification.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libstrongswan/utils/identification.h b/src/libstrongswan/utils/identification.h index 77791b5c3..dc0aec18e 100644 --- a/src/libstrongswan/utils/identification.h +++ b/src/libstrongswan/utils/identification.h @@ -79,7 +79,8 @@ enum id_type_t { * An example of an ID_RFC822_ADDR is "jsmith@example.com". * The string MUST NOT contain any terminators. */ - ID_RFC822_ADDR = 3, + ID_USER_FQDN = 3, /* IKEv1 only */ + ID_RFC822_ADDR = 3, /* IKEv2 only */ /** * ID data is an IPv4 subnet (IKEv1 only) @@ -147,6 +148,11 @@ enum id_type_t { * IETF Attribute Syntax String (RFC 3281) */ ID_IETF_ATTR_STRING = 205, + + /** + * Private ID used by the pluto daemon for opportunistic encryption + */ + ID_MYID = 206, }; /** |