mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
Merge pull request #3666 from SparkiDev/tls13_tick_before_group
TLS 1.3: don't group and wait on send session ticket
This commit is contained in:
@ -6696,8 +6696,10 @@ static int SendTls13NewSessionTicket(WOLFSSL* ssl)
|
|||||||
|
|
||||||
ssl->buffers.outputBuffer.length += sendSz;
|
ssl->buffers.outputBuffer.length += sendSz;
|
||||||
|
|
||||||
if (!ssl->options.groupMessages)
|
/* Always send as this is either directly after server's Finished or only
|
||||||
ret = SendBuffered(ssl);
|
* message after client's Finished.
|
||||||
|
*/
|
||||||
|
ret = SendBuffered(ssl);
|
||||||
|
|
||||||
WOLFSSL_LEAVE("SendTls13NewSessionTicket", 0);
|
WOLFSSL_LEAVE("SendTls13NewSessionTicket", 0);
|
||||||
WOLFSSL_END(WC_FUNC_NEW_SESSION_TICKET_SEND);
|
WOLFSSL_END(WC_FUNC_NEW_SESSION_TICKET_SEND);
|
||||||
|
Reference in New Issue
Block a user