mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-01 03:34:39 +02:00
have server side reply unexpected_message for hello_request
This commit is contained in:
@@ -2609,7 +2609,12 @@ static int DoHelloRequest(CYASSL* ssl, const byte* input, word32* inOutIdx)
|
||||
}
|
||||
}
|
||||
|
||||
return SendAlert(ssl, alert_warning, no_renegotiation);
|
||||
if (ssl->options.side == SERVER_END) {
|
||||
SendAlert(ssl, alert_fatal, unexpected_message); /* try */
|
||||
return FATAL_ERROR;
|
||||
}
|
||||
else
|
||||
return SendAlert(ssl, alert_warning, no_renegotiation);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user