diff options
author | Martin Willi <martin@strongswan.org> | 2006-03-07 09:42:15 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-03-07 09:42:15 +0000 |
commit | 8a4911290753eb3b4d3070ed9097d7cbcd2fd349 (patch) | |
tree | ce5cbaf9364ace55fd324b5967652cc32b0c5797 /Source/charon/threads/kernel_interface.c | |
parent | aa5a35a0056a50c563af9fa1d7c808e1f869405c (diff) | |
download | strongswan-8a4911290753eb3b4d3070ed9097d7cbcd2fd349.tar.bz2 strongswan-8a4911290753eb3b4d3070ed9097d7cbcd2fd349.tar.xz |
- configuration_manager replaced by configuration_t interface
- current configuration_manager is now static_configuration (testing)
- first draft of starter_configuration, which should once interact with ipsec starter (via whack?)
- some cleanups
- socket_t uses RAW socket, which allows parallel service of pluto/charon
Diffstat (limited to 'Source/charon/threads/kernel_interface.c')
-rw-r--r-- | Source/charon/threads/kernel_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/threads/kernel_interface.c b/Source/charon/threads/kernel_interface.c index 7b0c163ce..c42a09129 100644 --- a/Source/charon/threads/kernel_interface.c +++ b/Source/charon/threads/kernel_interface.c @@ -273,7 +273,7 @@ static status_t add_sa( private_kernel_interface_t *this, request.sa.id.proto = (protocol == ESP) ? KERNEL_ESP : KERNEL_AH; request.sa.family = me->get_family(me); request.sa.mode = TRUE; /* tunnel mode */ - request.sa.replay_window = 0; //sa->replay_window; ??? + request.sa.replay_window = 32; request.sa.reqid = reqid; request.sa.lft.soft_byte_limit = XFRM_INF; request.sa.lft.soft_packet_limit = XFRM_INF; |