allow the server to retransmit Initial packets

This commit is contained in:
Marten Seemann 2018-10-27 12:10:01 +07:00
parent 7fe93a726f
commit eeab7a5fca
2 changed files with 27 additions and 27 deletions

View file

@ -1066,7 +1066,7 @@ func (s *session) maybeSendRetransmission() (bool, error) {
// Don't retransmit Initial packets if we already received a response.
// An Initial might have been retransmitted multiple times before we receive a response.
// As soon as we receive one response, we don't need to send any more Initials.
if s.receivedFirstPacket && retransmitPacket.PacketType == protocol.PacketTypeInitial {
if s.perspective == protocol.PerspectiveClient && s.receivedFirstPacket && retransmitPacket.PacketType == protocol.PacketTypeInitial {
s.logger.Debugf("Skipping retransmission of packet %d. Already received a response to an Initial.", retransmitPacket.PacketNumber)
continue
}