diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-04 15:53:41 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-04 15:53:41 +0200 |
commit | a157804e7b19e94ca9d7f3ae9efd516bcc0ece85 (patch) | |
tree | c7f1a4dfb6a391ab07e2fbc5c42d103dfd4461ae | |
parent | 33a2de703db162af0c3d77593d560f3a8e7f1b95 (diff) | |
download | fastd-a157804e7b19e94ca9d7f3ae9efd516bcc0ece85.tar fastd-a157804e7b19e94ca9d7f3ae9efd516bcc0ece85.zip |
Decreate keepalive interval
-rw-r--r-- | src/config.c | 4 |
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; |