mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Unwrap 4in6 address in socks packet conn
This commit is contained in:
parent
e2392d8d40
commit
dc27334e9a
1 changed files with 7 additions and 4 deletions
|
@ -89,15 +89,18 @@ func (c *AssociatePacketConn) Write(b []byte) (n int, err error) {
|
|||
return c.WriteTo(b, c.remoteAddr)
|
||||
}
|
||||
|
||||
func (c *AssociatePacketConn) ReadPacket(buffer *buf.Buffer) (M.Socksaddr, error) {
|
||||
destination, err := c.NetPacketConn.ReadPacket(buffer)
|
||||
func (c *AssociatePacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error) {
|
||||
destination, err = c.NetPacketConn.ReadPacket(buffer)
|
||||
if err != nil {
|
||||
return M.Socksaddr{}, err
|
||||
}
|
||||
c.remoteAddr = destination
|
||||
buffer.Advance(3)
|
||||
dest, err := M.SocksaddrSerializer.ReadAddrPort(buffer)
|
||||
return dest, err
|
||||
destination, err = M.SocksaddrSerializer.ReadAddrPort(buffer)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
return destination.Unwrap(), nil
|
||||
}
|
||||
|
||||
func (c *AssociatePacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue