diff options
author | Martin Willi <martin@revosec.ch> | 2013-02-14 17:11:35 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2013-02-14 17:11:35 +0100 |
commit | e212033ef2012ff9be098ce2a9ee0da39c662c31 (patch) | |
tree | 2d421ad964fa2516a5efa452db5c04070f78f1ea /src/libcharon/plugins/ha/ha_tunnel.c | |
parent | 285668b6e34a40173b5ae2563ebe440f3ae2e969 (diff) | |
parent | 88f4cd398825aa5c95e0d4ef839f0699f4901175 (diff) | |
download | strongswan-e212033ef2012ff9be098ce2a9ee0da39c662c31.tar.bz2 strongswan-e212033ef2012ff9be098ce2a9ee0da39c662c31.tar.xz |
Merge branch 'ike-dscp'
Diffstat (limited to 'src/libcharon/plugins/ha/ha_tunnel.c')
-rw-r--r-- | src/libcharon/plugins/ha/ha_tunnel.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libcharon/plugins/ha/ha_tunnel.c b/src/libcharon/plugins/ha/ha_tunnel.c index 130c86e48..e6a09a76e 100644 --- a/src/libcharon/plugins/ha/ha_tunnel.c +++ b/src/libcharon/plugins/ha/ha_tunnel.c @@ -205,7 +205,7 @@ static void setup_tunnel(private_ha_tunnel_t *this, /* create config and backend */ ike_cfg = ike_cfg_create(IKEV2, FALSE, FALSE, local, FALSE, charon->socket->get_port(charon->socket, FALSE), - remote, FALSE, IKEV2_UDP_PORT, FRAGMENTATION_NO); + remote, FALSE, IKEV2_UDP_PORT, FRAGMENTATION_NO, 0); ike_cfg->add_proposal(ike_cfg, proposal_create_default(PROTO_IKE)); peer_cfg = peer_cfg_create("ha", ike_cfg, CERT_NEVER_SEND, UNIQUE_KEEP, 0, 86400, 0, 7200, 3600, FALSE, FALSE, 30, @@ -288,4 +288,3 @@ ha_tunnel_t *ha_tunnel_create(char *local, char *remote, char *secret) return &this->public; } - |