use the connection ID provided by the server in first Handshake packet

This commit is contained in:
Marten Seemann 2018-05-16 21:33:17 +09:00
parent d1316f2566
commit ec6118f7a0
4 changed files with 58 additions and 0 deletions

View file

@ -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)
}