mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
fix version dependent Public Header parsing in the proxy
This commit is contained in:
parent
2c4a17e406
commit
11a31cfdac
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ func (p *QuicProxy) runProxy() error {
|
|||
atomic.AddUint64(&conn.incomingPacketCounter, 1)
|
||||
|
||||
r := bytes.NewReader(raw)
|
||||
hdr, err := wire.ParsePublicHeader(r, protocol.PerspectiveClient, protocol.VersionWhatever)
|
||||
hdr, err := wire.ParsePublicHeader(r, protocol.PerspectiveClient, p.version)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue