mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57: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)
|
return c.WriteTo(b, c.remoteAddr)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *AssociatePacketConn) ReadPacket(buffer *buf.Buffer) (M.Socksaddr, error) {
|
func (c *AssociatePacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error) {
|
||||||
destination, err := c.NetPacketConn.ReadPacket(buffer)
|
destination, err = c.NetPacketConn.ReadPacket(buffer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return M.Socksaddr{}, err
|
return M.Socksaddr{}, err
|
||||||
}
|
}
|
||||||
c.remoteAddr = destination
|
c.remoteAddr = destination
|
||||||
buffer.Advance(3)
|
buffer.Advance(3)
|
||||||
dest, err := M.SocksaddrSerializer.ReadAddrPort(buffer)
|
destination, err = M.SocksaddrSerializer.ReadAddrPort(buffer)
|
||||||
return dest, err
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return destination.Unwrap(), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *AssociatePacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
func (c *AssociatePacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue