mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
12 lines
205 B
Go
12 lines
205 B
Go
package network
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type ContextDialer interface {
|
|
DialContext(ctx context.Context, network, address string) (net.Conn, error)
|
|
}
|
|
|
|
var SystemDialer ContextDialer = &net.Dialer{}
|