mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
handle the transport parameters in the packet packer
This commit is contained in:
parent
caf8da9adc
commit
9f5bfbe292
5 changed files with 31 additions and 40 deletions
|
@ -23,9 +23,8 @@ type packer interface {
|
|||
PackRetransmission(packet *ackhandler.Packet) ([]*packedPacket, error)
|
||||
PackConnectionClose(*wire.ConnectionCloseFrame) (*packedPacket, error)
|
||||
|
||||
SetOmitConnectionID()
|
||||
HandleTransportParameters(*handshake.TransportParameters)
|
||||
ChangeDestConnectionID(protocol.ConnectionID)
|
||||
SetMaxPacketSize(protocol.ByteCount)
|
||||
}
|
||||
|
||||
type packedPacket struct {
|
||||
|
@ -576,14 +575,13 @@ func (p *packetPacker) canSendData(encLevel protocol.EncryptionLevel) bool {
|
|||
return encLevel == protocol.EncryptionForwardSecure
|
||||
}
|
||||
|
||||
func (p *packetPacker) SetOmitConnectionID() {
|
||||
p.omitConnectionID = true
|
||||
}
|
||||
|
||||
func (p *packetPacker) ChangeDestConnectionID(connID protocol.ConnectionID) {
|
||||
p.destConnID = connID
|
||||
}
|
||||
|
||||
func (p *packetPacker) SetMaxPacketSize(size protocol.ByteCount) {
|
||||
p.maxPacketSize = utils.MinByteCount(p.maxPacketSize, size)
|
||||
func (p *packetPacker) HandleTransportParameters(params *handshake.TransportParameters) {
|
||||
p.omitConnectionID = params.OmitConnectionID
|
||||
if params.MaxPacketSize != 0 {
|
||||
p.maxPacketSize = utils.MinByteCount(p.maxPacketSize, params.MaxPacketSize)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue