We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2941692 commit 0684d0fCopy full SHA for 0684d0f
src/tools/interop/interop.cpp
@@ -678,6 +678,9 @@ class InteropConnection {
678
}
679
break;
680
case QUIC_CONNECTION_EVENT_RESUMPTION_TICKET_RECEIVED:
681
+ if (pThis->ResumptionTicket) {
682
+ break; // Ignore any additional tickets
683
+ }
684
pThis->ResumptionTicketLength = Event->RESUMPTION_TICKET_RECEIVED.ResumptionTicketLength;
685
pThis->ResumptionTicket = new uint8_t[pThis->ResumptionTicketLength];
686
memcpy(
0 commit comments