summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2012-06-04 15:53:41 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2012-06-04 15:53:41 +0200
commita157804e7b19e94ca9d7f3ae9efd516bcc0ece85 (patch)
treec7f1a4dfb6a391ab07e2fbc5c42d103dfd4461ae
parent33a2de703db162af0c3d77593d560f3a8e7f1b95 (diff)
downloadfastd-a157804e7b19e94ca9d7f3ae9efd516bcc0ece85.tar
fastd-a157804e7b19e94ca9d7f3ae9efd516bcc0ece85.zip
Decreate keepalive interval
-rw-r--r--src/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c
index c28de7f..f826c18 100644
--- a/src/config.c
+++ b/src/config.c
@@ -56,8 +56,8 @@ static void default_config(fastd_config *conf) {
conf->log_syslog_ident = strdup("fastd");
conf->log_files = NULL;
- conf->keepalive_interval = 60;
- conf->peer_stale_time = 300;
+ conf->keepalive_interval = 20;
+ conf->peer_stale_time = 90;
conf->eth_addr_stale_time = 300;
conf->ifname = NULL;