Browse Source

Set reserved to zero after Read()

Thank @IRN-Kawakaze for testing
pull/1744/head
RPRX 2 years ago committed by GitHub
parent
commit
4c8ee0af50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      proxy/wireguard/bind.go

7
proxy/wireguard/bind.go

@ -129,6 +129,13 @@ func (bind *netBindClient) connectTo(endpoint *netEndpoint) error {
return
}
i, err := c.Read(v.buff)
if i > 3 {
v.buff[1] = 0
v.buff[2] = 0
v.buff[3] = 0
}
v.bytes = i
v.endpoint = endpoint
v.err = err

Loading…
Cancel
Save