diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2006-10-25 08:40:34 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2006-10-25 08:40:34 +0000 |
commit | 0e4d1d05ad29ea86f29d94741ec9d7f24fcdf955 (patch) | |
tree | 441e862a875fb4219d8c6e24e0c3e7c9ea3da19e /src/starter/args.c | |
parent | b701b7895b280eb1f6949eb4bc9a45b89e6e9976 (diff) | |
download | strongswan-0e4d1d05ad29ea86f29d94741ec9d7f24fcdf955.tar.bz2 strongswan-0e4d1d05ad29ea86f29d94741ec9d7f24fcdf955.tar.xz |
added 'modeconfig=pull|push' and 'left|rightnatip' keywords
Diffstat (limited to 'src/starter/args.c')
-rw-r--r-- | src/starter/args.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/starter/args.c b/src/starter/args.c index 5cf96abde..ad37b1942 100644 --- a/src/starter/args.c +++ b/src/starter/args.c @@ -196,6 +196,7 @@ static const token_info_t token_info[] = { 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 }, + { ARG_MISC, 0, NULL /* KW_MODECONFIG */ }, /* ca section keywords */ { ARG_STR, offsetof(starter_ca_t, name), NULL }, @@ -214,6 +215,7 @@ static const token_info_t token_info[] = { ARG_MISC, 0, NULL /* KW_SUBNETWITHIN */ }, { ARG_MISC, 0, NULL /* KW_PROTOPORT */ }, { ARG_MISC, 0, NULL /* KW_SOURCEIP */ }, + { ARG_MISC, 0, NULL /* KW_NATIP */ }, { ARG_ENUM, offsetof(starter_end_t, firewall), LST_bool }, { ARG_ENUM, offsetof(starter_end_t, hostaccess), LST_bool }, { ARG_STR, offsetof(starter_end_t, updown), NULL }, |