diff options
author | Martin Willi <martin@strongswan.org> | 2006-06-12 08:36:41 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-06-12 08:36:41 +0000 |
commit | 50f98119ddc495ae7dddad5169c39bbd1aa3b63c (patch) | |
tree | 3028b13ef54147f97642734782a9206cc5a566d0 /src/charon/testing/child_sa_test.c | |
parent | fec9cb332fe199d3adc88d42f27e351b6f69d0c3 (diff) | |
download | strongswan-50f98119ddc495ae7dddad5169c39bbd1aa3b63c.tar.bz2 strongswan-50f98119ddc495ae7dddad5169c39bbd1aa3b63c.tar.xz |
using same reqid if a child sa rekeys an existing one
Diffstat (limited to 'src/charon/testing/child_sa_test.c')
-rw-r--r-- | src/charon/testing/child_sa_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/testing/child_sa_test.c b/src/charon/testing/child_sa_test.c index f36ab74d4..2c318a624 100644 --- a/src/charon/testing/child_sa_test.c +++ b/src/charon/testing/child_sa_test.c @@ -49,8 +49,8 @@ void test_child_sa(protected_tester_t *tester) remote_me = host_create(AF_INET, "192.168.0.3", 0); remote_other = host_create(AF_INET, "192.168.0.4", 0); - local_sa = child_sa_create(local_me, local_other, 5, 10); - remote_sa = child_sa_create(remote_me, remote_other, 5, 10); + local_sa = child_sa_create(0, local_me, local_other, 5, 10); + remote_sa = child_sa_create(0, remote_me, remote_other, 5, 10); proposal1 = proposal_create(PROTO_ESP); proposal1->add_algorithm(proposal1, ENCRYPTION_ALGORITHM, ENCR_AES_CBC, 16); |