diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-10-16 20:37:16 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-10-16 20:37:16 +0200 |
commit | 8ff7026b0e96234ea364a51f0174ecf49cf8bed3 (patch) | |
tree | a95f7ffe52ff1fc339f04121a2cf817338b4dd78 /src/lex.c | |
parent | 118ebb9d65b44fb734aee3ebd31ecdaffd38c615 (diff) | |
download | fastd-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 }, |