Fix issue with renego & resend
This commit is contained in:
parent
8cc7e03ae0
commit
23b7b703aa
2 changed files with 11 additions and 1 deletions
|
@ -2206,7 +2206,10 @@ int ssl_resend( ssl_context *ssl )
|
|||
}
|
||||
}
|
||||
|
||||
ssl->handshake->retransmit_state = SSL_RETRANS_WAITING;
|
||||
if( ssl->state == SSL_HANDSHAKE_OVER )
|
||||
ssl->handshake->retransmit_state = SSL_RETRANS_FINISHED;
|
||||
else
|
||||
ssl->handshake->retransmit_state = SSL_RETRANS_WAITING;
|
||||
|
||||
SSL_DEBUG_MSG( 2, ( "<= ssl_resend" ) );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue