diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2012-05-17 19:49:22 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2012-05-17 19:49:22 +0200 |
commit | 80c5b17d1af10bf2eeba55e1caba770cb3dcf734 (patch) | |
tree | 0233436f53bac2b77fc1909cb736c9919fdba8c7 /src/libcharon/plugins/uci | |
parent | 24742c0f8385b194d5e2587bb8575de4a9eb6fec (diff) | |
download | strongswan-80c5b17d1af10bf2eeba55e1caba770cb3dcf734.tar.bz2 strongswan-80c5b17d1af10bf2eeba55e1caba770cb3dcf734.tar.xz |
make IKEv1 DPD timeout configurable in charon
Diffstat (limited to 'src/libcharon/plugins/uci')
-rw-r--r-- | src/libcharon/plugins/uci/uci_config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcharon/plugins/uci/uci_config.c b/src/libcharon/plugins/uci/uci_config.c index b4e99c3f2..eb2c4b330 100644 --- a/src/libcharon/plugins/uci/uci_config.c +++ b/src/libcharon/plugins/uci/uci_config.c @@ -175,7 +175,8 @@ METHOD(enumerator_t, peer_enumerator_enumerate, bool, name, IKEV2, ike_cfg, CERT_SEND_IF_ASKED, UNIQUE_NO, 1, create_rekey(ike_rekey), 0, /* keytries, rekey, reauth */ 1800, 900, /* jitter, overtime */ - TRUE, FALSE, 60, /* mobike, aggr., dpddelay */ + TRUE, FALSE, /* mobike, aggressive */ + 60, 0, /* DPD delay, timeout */ NULL, NULL, /* vip, pool */ FALSE, NULL, NULL); /* mediation, med by, peer id */ auth = auth_cfg_create(); |