summaryrefslogtreecommitdiffstats
path: root/src/config.c
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-03-20 18:31:30 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-03-20 18:31:30 +0100
commit4d77b7247f80a031b22d3259c470a489604df422 (patch)
treefb4489af2338a60b1787347edd3802deb14543d7 /src/config.c
parent06eae18f7d8fee5541b8a8fba949c24bf92f952c (diff)
downloadfastd-4d77b7247f80a031b22d3259c470a489604df422.tar
fastd-4d77b7247f80a031b22d3259c470a489604df422.zip
Enable secure handshakes by default
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/config.c b/src/config.c
index 0031113..7876f75 100644
--- a/src/config.c
+++ b/src/config.c
@@ -64,6 +64,7 @@ static void default_config(fastd_config_t *conf) {
conf->mtu = 1500;
conf->mode = MODE_TAP;
+ conf->secure_handshakes = true;
conf->drop_caps = DROP_CAPS_ON;
conf->protocol = &fastd_protocol_ec25519_fhmqvc;
@@ -573,9 +574,6 @@ void fastd_config_check(fastd_context_t *ctx, fastd_config_t *conf) {
fastd_config_method(ctx, conf, "null");
}
- if (!conf->secure_handshakes_set)
- pr_warn(ctx, "`secure handshakes' not set, please read the documentation about this option; defaulting to no");
-
configure_user(ctx, conf);
configure_methods(ctx, conf);
}