clash/constant/adapters.go

131 lines
2.4 KiB
Go
Raw Normal View History

2018-06-10 14:50:03 +00:00
package constant
import (
2019-07-02 11:18:03 +00:00
"context"
"fmt"
2018-06-13 17:00:58 +00:00
"net"
"time"
2018-06-10 14:50:03 +00:00
)
// Adapter Type
const (
Direct AdapterType = iota
2018-09-25 16:34:15 +00:00
Fallback
Reject
Selector
Shadowsocks
2019-10-09 10:46:23 +00:00
Snell
2018-08-12 05:50:54 +00:00
Socks5
Http
URLTest
2018-09-06 02:53:29 +00:00
Vmess
2019-02-15 06:25:20 +00:00
LoadBalance
)
2018-06-10 14:50:03 +00:00
type ServerAdapter interface {
2019-04-23 15:29:36 +00:00
net.Conn
2018-09-30 04:25:52 +00:00
Metadata() *Metadata
2018-06-10 14:50:03 +00:00
}
type Connection interface {
Chains() Chain
AppendToChains(adapter ProxyAdapter)
}
type Chain []string
func (c Chain) String() string {
switch len(c) {
case 0:
return ""
case 1:
return c[0]
default:
return fmt.Sprintf("%s[%s]", c[len(c)-1], c[0])
}
}
type Conn interface {
net.Conn
Connection
}
type PacketConn interface {
net.PacketConn
Connection
2020-02-17 09:34:19 +00:00
WriteWithMetadata(p []byte, metadata *Metadata) (n int, err error)
}
type ProxyAdapter interface {
2018-06-16 13:34:13 +00:00
Name() string
Type() AdapterType
DialContext(ctx context.Context, metadata *Metadata) (Conn, error)
2020-01-31 06:43:54 +00:00
DialUDP(metadata *Metadata) (PacketConn, error)
2019-04-23 15:29:36 +00:00
SupportUDP() bool
2018-11-21 05:47:46 +00:00
MarshalJSON() ([]byte, error)
2018-06-10 14:50:03 +00:00
}
type DelayHistory struct {
Time time.Time `json:"time"`
Delay uint16 `json:"delay"`
}
type Proxy interface {
ProxyAdapter
Alive() bool
DelayHistory() []DelayHistory
Dial(metadata *Metadata) (Conn, error)
LastDelay() uint16
2019-07-02 11:18:03 +00:00
URLTest(ctx context.Context, url string) (uint16, error)
}
// AdapterType is enum of adapter type
type AdapterType int
func (at AdapterType) String() string {
switch at {
case Direct:
return "Direct"
2018-09-25 16:34:15 +00:00
case Fallback:
return "Fallback"
case Reject:
return "Reject"
case Selector:
return "Selector"
case Shadowsocks:
return "Shadowsocks"
2019-10-09 10:46:23 +00:00
case Snell:
return "Snell"
2018-08-12 05:50:54 +00:00
case Socks5:
return "Socks5"
case Http:
return "Http"
case URLTest:
return "URLTest"
2018-09-06 02:53:29 +00:00
case Vmess:
return "Vmess"
2019-02-15 06:25:20 +00:00
case LoadBalance:
return "LoadBalance"
default:
2019-08-26 04:26:14 +00:00
return "Unknown"
}
}
// UDPPacket contains the data of UDP packet, and offers control/info of UDP packet's source
type UDPPacket interface {
// Data get the payload of UDP Packet
Data() []byte
// WriteBack writes the payload with source IP/Port equals addr
// - variable source IP/Port is important to STUN
// - if addr is not provided, WriteBack will wirte out UDP packet with SourceIP/Prot equals to origional Target,
// this is important when using Fake-IP.
WriteBack(b []byte, addr net.Addr) (n int, err error)
// Close closes the underlaying connection.
Close() error
// LocalAddr returns the source IP/Port of packet
LocalAddr() net.Addr
}