summaryrefslogtreecommitdiffstats
path: root/src/lex.c
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-10-16 20:37:16 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-10-16 20:37:16 +0200
commit8ff7026b0e96234ea364a51f0174ecf49cf8bed3 (patch)
treea95f7ffe52ff1fc339f04121a2cf817338b4dd78 /src/lex.c
parent118ebb9d65b44fb734aee3ebd31ecdaffd38c615 (diff)
downloadfastd-8ff7026b0e96234ea364a51f0174ecf49cf8bed3.tar
fastd-8ff7026b0e96234ea364a51f0174ecf49cf8bed3.zip
Add `secure handshakes' option (without effect for now)
Not setting the option produces a warning (so not having it set is deprecated now), so we can change the default from no to yes in a few release cycles.
Diffstat (limited to 'src/lex.c')
-rw-r--r--src/lex.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lex.c b/src/lex.c
index b8f6496..8a2109d 100644
--- a/src/lex.c
+++ b/src/lex.c
@@ -69,6 +69,7 @@ static const keyword_t keywords[] = {
{ "forward", TOK_FORWARD },
{ "from", TOK_FROM },
{ "group", TOK_GROUP },
+ { "handshakes", TOK_HANDSHAKES },
{ "hide", TOK_HIDE },
{ "include", TOK_INCLUDE },
{ "info", TOK_INFO },
@@ -95,6 +96,7 @@ static const keyword_t keywords[] = {
{ "protocol", TOK_PROTOCOL },
{ "remote", TOK_REMOTE },
{ "secret", TOK_SECRET },
+ { "secure", TOK_SECURE },
{ "stderr", TOK_STDERR },
{ "syslog", TOK_SYSLOG },
{ "tap", TOK_TAP },