mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
fix socks5 AssociatePacketConn Read
This commit is contained in:
parent
8fb1634c9a
commit
76807c4415
1 changed files with 4 additions and 3 deletions
|
@ -85,9 +85,10 @@ func (c *AssociatePacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error
|
|||
return bufio.WritePacketBuffer(c.NetPacketConn, buffer, c.remoteAddr)
|
||||
}
|
||||
|
||||
func (c *AssociatePacketConn) Read(b []byte) (n int, err error) {
|
||||
n, _, err = c.ReadFrom(b)
|
||||
return
|
||||
func (c *AssociatePacketConn) Read(b []byte) (int, error) {
|
||||
n, addr, err := c.ReadFrom(b)
|
||||
c.remoteAddr = M.SocksaddrFromNet(addr)
|
||||
return n, err
|
||||
}
|
||||
|
||||
func (c *AssociatePacketConn) Write(b []byte) (n int, err error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue