mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
identify version negotiation packets without parsing the header
This commit is contained in:
parent
14426dfa12
commit
df34e4496e
5 changed files with 35 additions and 12 deletions
|
@ -287,7 +287,7 @@ func (c *client) establishSecureConnection(ctx context.Context) error {
|
|||
}
|
||||
|
||||
func (c *client) handlePacket(p *receivedPacket) {
|
||||
if p.hdr.IsVersionNegotiation() {
|
||||
if wire.IsVersionNegotiationPacket(p.data) {
|
||||
go c.handleVersionNegotiationPacket(p.hdr)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue