adjust the minimum size for stateless resets to the new header format

This commit is contained in:
Marten Seemann 2019-08-31 12:33:53 +07:00
parent 96db15c836
commit d02fd5178a
2 changed files with 3 additions and 3 deletions

View file

@ -264,7 +264,7 @@ func (h *packetHandlerMap) maybeSendStatelessReset(p *receivedPacket, connID pro
}
token := h.GetStatelessResetToken(connID)
h.logger.Debugf("Sending stateless reset to %s (connection ID: %s). Token: %#x", p.remoteAddr, connID, token)
data := make([]byte, 23)
data := make([]byte, protocol.MinStatelessResetSize-16, protocol.MinStatelessResetSize)
rand.Read(data)
data[0] = (data[0] & 0x7f) | 0x40
data = append(data, token[:]...)