mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Implementation read waiter for socks5 UDP and UoT
This commit is contained in:
parent
ae8098ad39
commit
aa34723225
4 changed files with 97 additions and 1 deletions
|
@ -7,6 +7,7 @@ import (
|
|||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/sagernet/sing/common/bufio"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
M "github.com/sagernet/sing/common/metadata"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
|
@ -147,7 +148,7 @@ func (c *Client) DialContext(ctx context.Context, network string, address M.Sock
|
|||
tcpConn.Close()
|
||||
return nil, err
|
||||
}
|
||||
return NewAssociateConn(udpConn, address, tcpConn), nil
|
||||
return NewAssociatePacketConn(bufio.NewUnbindPacketConn(udpConn), address, tcpConn), nil
|
||||
}
|
||||
return nil, os.ErrInvalid
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue