Documentation
¶
Index ¶
- func NewConn(c net.Conn, a C.ProxyAdapter) C.Conn
- func ParseProxy(mapping map[string]interface{}) (C.Proxy, error)
- type Base
- func (b *Base) Addr() string
- func (b *Base) DialUDP(metadata *C.Metadata) (C.PacketConn, error)
- func (b *Base) MarshalJSON() ([]byte, error)
- func (b *Base) Name() string
- func (b *Base) StreamConn(c net.Conn, metadata *C.Metadata) (net.Conn, error)
- func (b *Base) SupportUDP() bool
- func (b *Base) Type() C.AdapterType
- type HTTP2Options
- type HTTPOptions
- type Proxy
- type ShadowSocks
- type ShadowSocksOption
- type ShadowSocksR
- type ShadowSocksROption
- type Socks5
- type Socks5Option
- type Trojan
- type TrojanOption
- type Vmess
- type VmessOption
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Base ¶
type Base struct {
// contains filtered or unexported fields
}
func (*Base) MarshalJSON ¶
func (*Base) StreamConn ¶
func (*Base) SupportUDP ¶
func (*Base) Type ¶
func (b *Base) Type() C.AdapterType
type HTTP2Options ¶
type HTTPOptions ¶
type Proxy ¶
type Proxy struct {
C.ProxyAdapter
}
func NewProxy ¶
func NewProxy(adapter C.ProxyAdapter) *Proxy
func (*Proxy) DialContext ¶
type ShadowSocks ¶
type ShadowSocks struct { *Base // contains filtered or unexported fields }
func NewShadowSocks ¶
func NewShadowSocks(option ShadowSocksOption) (*ShadowSocks, error)
func (*ShadowSocks) DialContext ¶
func (*ShadowSocks) DialUDP ¶
func (ss *ShadowSocks) DialUDP(metadata *C.Metadata) (C.PacketConn, error)
func (*ShadowSocks) StreamConn ¶
type ShadowSocksOption ¶
type ShadowSocksOption struct { Name string `proxy:"name"` Server string `proxy:"server"` Port int `proxy:"port"` Password string `proxy:"password"` Cipher string `proxy:"cipher"` UDP bool `proxy:"udp,omitempty"` Plugin string `proxy:"plugin,omitempty"` PluginOpts map[string]interface{} `proxy:"plugin-opts,omitempty"` }
type ShadowSocksR ¶
type ShadowSocksR struct { *Base // contains filtered or unexported fields }
func NewShadowSocksR ¶
func NewShadowSocksR(option ShadowSocksROption) (*ShadowSocksR, error)
func (*ShadowSocksR) DialContext ¶
func (*ShadowSocksR) DialUDP ¶
func (ssr *ShadowSocksR) DialUDP(metadata *C.Metadata) (C.PacketConn, error)
func (*ShadowSocksR) StreamConn ¶
type ShadowSocksROption ¶
type ShadowSocksROption struct { Name string `proxy:"name"` Server string `proxy:"server"` Port int `proxy:"port"` Password string `proxy:"password"` Cipher string `proxy:"cipher"` Obfs string `proxy:"obfs"` ObfsParam string `proxy:"obfs-param,omitempty"` Protocol string `proxy:"protocol"` ProtocolParam string `proxy:"protocol-param,omitempty"` UDP bool `proxy:"udp,omitempty"` }
type Socks5 ¶ added in v0.1.2
type Socks5 struct { *Base // contains filtered or unexported fields }
func NewSocks5 ¶ added in v0.1.2
func NewSocks5(option Socks5Option) *Socks5
func (*Socks5) DialContext ¶ added in v0.1.2
type Socks5Option ¶ added in v0.1.2
type Socks5Option struct { Name string `proxy:"name"` Server string `proxy:"server"` Port int `proxy:"port"` UserName string `proxy:"username,omitempty"` Password string `proxy:"password,omitempty"` TLS bool `proxy:"tls,omitempty"` UDP bool `proxy:"udp,omitempty"` SkipCertVerify bool `proxy:"skip-cert-verify,omitempty"` }
type Trojan ¶
type Trojan struct { *Base // contains filtered or unexported fields }
func NewTrojan ¶
func NewTrojan(option TrojanOption) (*Trojan, error)
func (*Trojan) DialContext ¶
func (*Trojan) MarshalJSON ¶
type TrojanOption ¶
type TrojanOption struct { Name string `proxy:"name"` Server string `proxy:"server"` Port int `proxy:"port"` Password string `proxy:"password"` ALPN []string `proxy:"alpn,omitempty"` SNI string `proxy:"sni,omitempty"` SkipCertVerify bool `proxy:"skip-cert-verify,omitempty"` UDP bool `proxy:"udp,omitempty"` }
type Vmess ¶
type Vmess struct { *Base // contains filtered or unexported fields }
func NewVmess ¶
func NewVmess(option VmessOption) (*Vmess, error)
func (*Vmess) DialContext ¶
type VmessOption ¶
type VmessOption struct { Name string `proxy:"name"` Server string `proxy:"server"` Port int `proxy:"port"` UUID string `proxy:"uuid"` AlterID int `proxy:"alterId"` Cipher string `proxy:"cipher"` TLS bool `proxy:"tls,omitempty"` UDP bool `proxy:"udp,omitempty"` Network string `proxy:"network,omitempty"` HTTPOpts HTTPOptions `proxy:"http-opts,omitempty"` HTTP2Opts HTTP2Options `proxy:"h2-opts,omitempty"` WSPath string `proxy:"ws-path,omitempty"` WSHeaders map[string]string `proxy:"ws-headers,omitempty"` SkipCertVerify bool `proxy:"skip-cert-verify,omitempty"` ServerName string `proxy:"servername,omitempty"` }
Click to show internal directories.
Click to hide internal directories.