mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
qlog received version negotiation packets
This commit is contained in:
parent
416dc485f8
commit
70ede9d73a
2 changed files with 10 additions and 1 deletions
|
@ -358,6 +358,9 @@ func (c *client) handleVersionNegotiationPacket(p *receivedPacket) {
|
|||
}
|
||||
|
||||
c.logger.Infof("Received a Version Negotiation packet. Supported Versions: %s", hdr.SupportedVersions)
|
||||
if c.qlogger != nil {
|
||||
c.qlogger.ReceivedVersionNegotiationPacket(hdr)
|
||||
}
|
||||
newVersion, ok := protocol.ChooseSupportedVersion(c.config.Versions, hdr.SupportedVersions)
|
||||
if !ok {
|
||||
//nolint:stylecheck
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue