aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/plugins/load_tester/load_tester_config.c
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2010-02-22 18:11:42 +0100
committerMartin Willi <martin@revosec.ch>2010-02-26 11:44:33 +0100
commit4e18490ea8bbd13b2f49c4be385744fc453f1cfc (patch)
tree17ca79e630cc62f3601652b388672aeda9a92ac7 /src/charon/plugins/load_tester/load_tester_config.c
parentdeac3a0a5da9fd293ae63ac6eb36662c43fdb1e3 (diff)
downloadstrongswan-4e18490ea8bbd13b2f49c4be385744fc453f1cfc.tar.bz2
strongswan-4e18490ea8bbd13b2f49c4be385744fc453f1cfc.tar.xz
Store custom IKE src/dst ports on ike_cfg
Diffstat (limited to 'src/charon/plugins/load_tester/load_tester_config.c')
-rw-r--r--src/charon/plugins/load_tester/load_tester_config.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/charon/plugins/load_tester/load_tester_config.c b/src/charon/plugins/load_tester/load_tester_config.c
index 82f408d45..bb9eabf47 100644
--- a/src/charon/plugins/load_tester/load_tester_config.c
+++ b/src/charon/plugins/load_tester/load_tester_config.c
@@ -189,7 +189,8 @@ static peer_cfg_t* generate_config(private_load_tester_config_t *this, uint num)
}
};
- ike_cfg = ike_cfg_create(FALSE, FALSE, "0.0.0.0", this->remote);
+ ike_cfg = ike_cfg_create(FALSE, FALSE,
+ "0.0.0.0", IKEV2_UDP_PORT, this->remote, IKEV2_UDP_PORT);
ike_cfg->add_proposal(ike_cfg, this->proposal->clone(this->proposal));
peer_cfg = peer_cfg_create("load-test", 2, ike_cfg,
CERT_SEND_IF_ASKED, UNIQUE_NO, 1, /* keytries */