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/config.y | |
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/config.y')
-rw-r--r-- | src/config.y | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/config.y b/src/config.y index 95ceaa2..bb9884e 100644 --- a/src/config.y +++ b/src/config.y @@ -117,6 +117,8 @@ %token TOK_MAC %token TOK_ADDRESSES %token TOK_AUTO +%token TOK_SECURE +%token TOK_HANDSHAKES %token <addr4> TOK_ADDR4 %token <addr6> TOK_ADDR6 @@ -167,6 +169,7 @@ statement: peer_group_statement | TOK_USER user ';' | TOK_GROUP group ';' | TOK_DROP TOK_CAPABILITIES drop_capabilities ';' + | TOK_SECURE TOK_HANDSHAKES secure_handshakes ';' | TOK_LOG log ';' | TOK_HIDE hide ';' | TOK_INTERFACE interface ';' @@ -218,6 +221,13 @@ drop_capabilities_enabled: $$ = $1 ? DROP_CAPS_ON : DROP_CAPS_OFF; } +secure_handshakes: + boolean { + conf->secure_handshakes_set = true; + conf->secure_handshakes = $1; + } + ; + log: TOK_LEVEL log_level { conf->log_stderr_level = $2; } |