mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
remove all references to Public Resets in comments
This commit is contained in:
parent
92edfc16ea
commit
aba2c3d031
3 changed files with 2 additions and 6 deletions
|
@ -23,8 +23,7 @@ const DefaultMaxCongestionWindow ByteCount = defaultMaxCongestionWindowPackets *
|
||||||
// InitialCongestionWindow is the initial congestion window in QUIC packets
|
// InitialCongestionWindow is the initial congestion window in QUIC packets
|
||||||
const InitialCongestionWindow ByteCount = 32 * DefaultTCPMSS
|
const InitialCongestionWindow ByteCount = 32 * DefaultTCPMSS
|
||||||
|
|
||||||
// MaxUndecryptablePackets limits the number of undecryptable packets that a
|
// MaxUndecryptablePackets limits the number of undecryptable packets that are queued in the session.
|
||||||
// session queues for later until it sends a public reset.
|
|
||||||
const MaxUndecryptablePackets = 10
|
const MaxUndecryptablePackets = 10
|
||||||
|
|
||||||
// ConnectionFlowControlMultiplier determines how much larger the connection flow control windows needs to be relative to any stream's flow control window
|
// ConnectionFlowControlMultiplier determines how much larger the connection flow control windows needs to be relative to any stream's flow control window
|
||||||
|
|
|
@ -58,7 +58,6 @@ func (u *packetUnpacker) Unpack(headerBinary []byte, hdr *wire.ExtendedHeader, d
|
||||||
encryptionLevel = protocol.Encryption1RTT
|
encryptionLevel = protocol.Encryption1RTT
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// Wrap err in quicError so that public reset is sent by session
|
|
||||||
return nil, qerr.Error(qerr.DecryptionFailure, err.Error())
|
return nil, qerr.Error(qerr.DecryptionFailure, err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -114,9 +114,7 @@ type session struct {
|
||||||
|
|
||||||
receivedFirstPacket bool // since packet numbers start at 0, we can't use largestRcvdPacketNumber != 0 for this
|
receivedFirstPacket bool // since packet numbers start at 0, we can't use largestRcvdPacketNumber != 0 for this
|
||||||
receivedFirstForwardSecurePacket bool
|
receivedFirstForwardSecurePacket bool
|
||||||
// Used to calculate the next packet number from the truncated wire
|
largestRcvdPacketNumber protocol.PacketNumber // used to calculate the next packet number
|
||||||
// representation, and sent back in public reset packets
|
|
||||||
largestRcvdPacketNumber protocol.PacketNumber
|
|
||||||
|
|
||||||
sessionCreationTime time.Time
|
sessionCreationTime time.Time
|
||||||
lastNetworkActivityTime time.Time
|
lastNetworkActivityTime time.Time
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue