diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-06-30 04:13:44 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-06-30 04:13:44 +0000 |
commit | ff0c034d341dee0c83a7043fd44bbab6c2d787d0 (patch) | |
tree | cf4f796365e5bb0a8e4ad195b518ca5f510a819f | |
parent | pkcs11 changes: (diff) | |
download | openvpn-ff0c034d341dee0c83a7043fd44bbab6c2d787d0.tar.xz |
Fixed bug introduced with the --port-share directive
back in r893 which causes TLS soft resets
(1 per hour by default) in TCP server mode to force
a blockage of tunnel packets and later time-out and
restart the connection.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1076 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r-- | ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1795,7 +1795,7 @@ key_state_init (struct tls_session *session, struct key_state *ks) ks->ack_write_buf = alloc_buf (BUF_SIZE (&session->opt->frame)); reliable_init (ks->send_reliable, BUF_SIZE (&session->opt->frame), FRAME_HEADROOM (&session->opt->frame), TLS_RELIABLE_N_SEND_BUFFERS, - session->opt->xmit_hold); + ks->key_id ? false : session->opt->xmit_hold); reliable_init (ks->rec_reliable, BUF_SIZE (&session->opt->frame), FRAME_HEADROOM (&session->opt->frame), TLS_RELIABLE_N_REC_BUFFERS, false); |