mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Refactor socksaddr
This commit is contained in:
parent
9378ae739c
commit
b35c53ca8f
54 changed files with 1191 additions and 666 deletions
|
@ -8,7 +8,7 @@ import (
|
|||
)
|
||||
|
||||
type ContextDialer interface {
|
||||
DialContext(ctx context.Context, network string, address *M.AddrPort) (net.Conn, error)
|
||||
DialContext(ctx context.Context, network string, address M.Socksaddr) (net.Conn, error)
|
||||
}
|
||||
|
||||
var SystemDialer ContextDialer = &DefaultDialer{}
|
||||
|
@ -21,7 +21,7 @@ func (d *DefaultDialer) ListenUDP(network string, laddr *net.UDPAddr) (*net.UDPC
|
|||
return net.ListenUDP(network, laddr)
|
||||
}
|
||||
|
||||
func (d *DefaultDialer) DialContext(ctx context.Context, network string, address *M.AddrPort) (net.Conn, error) {
|
||||
func (d *DefaultDialer) DialContext(ctx context.Context, network string, address M.Socksaddr) (net.Conn, error) {
|
||||
return d.Dialer.DialContext(ctx, network, address.String())
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue