identify version negotiation packets without parsing the header

This commit is contained in:
Marten Seemann 2019-02-04 16:20:50 +08:00
parent 14426dfa12
commit df34e4496e
5 changed files with 35 additions and 12 deletions

View file

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