diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-05-15 13:26:49 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-06-11 17:33:31 +0200 |
commit | efc69e9f3889000bf6cecc04a510f6095bd9aca2 (patch) | |
tree | b2ad39c13447d2eb6b7fd70956d42ecb56f9716c /src/starter/args.c | |
parent | 6d065f14ae04d582a5d3ef425a850fe7a85c9500 (diff) | |
download | strongswan-efc69e9f3889000bf6cecc04a510f6095bd9aca2.tar.bz2 strongswan-efc69e9f3889000bf6cecc04a510f6095bd9aca2.tar.xz |
starter: Removed pfs and pfsgroup options (handled via esp option).
Diffstat (limited to 'src/starter/args.c')
-rw-r--r-- | src/starter/args.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/starter/args.c b/src/starter/args.c index 3856c3df3..2f3e48b41 100644 --- a/src/starter/args.c +++ b/src/starter/args.c @@ -103,22 +103,6 @@ static const char *LST_keyexchange[] = { NULL }; -static const char *LST_pfsgroup[] = { - "modp1024", - "modp1536", - "modp2048", - "modp3072", - "modp4096", - "modp6144", - "modp8192", - "ecp192", - "ecp224", - "ecp256", - "ecp384", - "ecp521", - NULL -}; - static const char *LST_plutodebug[] = { "none", "all", @@ -215,7 +199,6 @@ static const token_info_t token_info[] = { ARG_ENUM, offsetof(starter_conn_t, startup), LST_startup }, { ARG_ENUM, offsetof(starter_conn_t, keyexchange), LST_keyexchange }, { ARG_MISC, 0, NULL /* KW_TYPE */ }, - { ARG_MISC, 0, NULL /* KW_PFS */ }, { ARG_MISC, 0, NULL /* KW_COMPRESS */ }, { ARG_ENUM, offsetof(starter_conn_t, install_policy), LST_bool }, { ARG_ENUM, offsetof(starter_conn_t, aggressive), LST_bool }, @@ -238,7 +221,6 @@ static const token_info_t token_info[] = { ARG_MISC, 0, NULL /* KW_REAUTH */ }, { ARG_STR, offsetof(starter_conn_t, ike), NULL }, { ARG_STR, offsetof(starter_conn_t, esp), NULL }, - { ARG_STR, offsetof(starter_conn_t, pfsgroup), LST_pfsgroup }, { ARG_TIME, offsetof(starter_conn_t, dpd_delay), NULL }, { ARG_TIME, offsetof(starter_conn_t, dpd_timeout), NULL }, { ARG_ENUM, offsetof(starter_conn_t, dpd_action), LST_dpd_action }, |