mirror of
https://github.com/nadoo/glider.git
synced 2025-02-24 01:45:39 +08:00
55 lines
1.0 KiB
Go
55 lines
1.0 KiB
Go
package proxy
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"github.com/nadoo/glider/common/log"
|
|
)
|
|
|
|
// A proxy.Dialer means to establish a connection and relay it.
|
|
type Dialer interface {
|
|
// Addr()
|
|
Addr() string
|
|
|
|
// Dial connects to the given address via the proxy.
|
|
Dial(network, addr string) (c net.Conn, err error)
|
|
|
|
// DialUDP connects to the given address via the proxy.
|
|
DialUDP(network, addr string) (pc net.PacketConn, writeTo net.Addr, err error)
|
|
|
|
// Get the dialer by dstAddr
|
|
NextDialer(dstAddr string) Dialer
|
|
}
|
|
|
|
type DialerCreator func(s string, dialer Dialer) (Dialer, error)
|
|
|
|
var (
|
|
dialerMap = make(map[string]DialerCreator)
|
|
)
|
|
|
|
func RegisterDialer(name string, c DialerCreator) {
|
|
dialerMap[name] = c
|
|
}
|
|
|
|
func DialerFromURL(s string, dialer Dialer) (Dialer, error) {
|
|
u, err := url.Parse(s)
|
|
if err != nil {
|
|
log.F("parse err: %s", err)
|
|
return nil, err
|
|
}
|
|
|
|
if dialer == nil {
|
|
dialer = Direct
|
|
}
|
|
|
|
c, ok := dialerMap[strings.ToLower(u.Scheme)]
|
|
if ok {
|
|
return c(s, dialer)
|
|
}
|
|
|
|
return nil, errors.New("unknown scheme '" + u.Scheme + "'")
|
|
}
|