mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
use the connection ID provided by the server in first Handshake packet
This commit is contained in:
parent
d1316f2566
commit
ec6118f7a0
4 changed files with 58 additions and 0 deletions
|
@ -564,6 +564,10 @@ 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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue