Documentation ¶
Index ¶
- Constants
- func Register(name string, fn CreatorFn)
- type CreatorFn
- type HTTP2HTTPSPlugin
- type HTTPProxy
- func (hp *HTTPProxy) Auth(req *http.Request) bool
- func (hp *HTTPProxy) Close() error
- func (hp *HTTPProxy) ConnectHandler(rw http.ResponseWriter, req *http.Request)
- func (hp *HTTPProxy) HTTPHandler(rw http.ResponseWriter, req *http.Request)
- func (hp *HTTPProxy) Handle(conn io.ReadWriteCloser, realConn net.Conn, extraBufToLocal []byte)
- func (hp *HTTPProxy) Name() string
- func (hp *HTTPProxy) ServeHTTP(rw http.ResponseWriter, req *http.Request)
- type HTTPS2HTTPPlugin
- type Listener
- type Plugin
- func Create(name string, params map[string]string) (p Plugin, err error)
- func NewHTTP2HTTPSPlugin(params map[string]string) (Plugin, error)
- func NewHTTPProxyPlugin(params map[string]string) (Plugin, error)
- func NewHTTPS2HTTPPlugin(params map[string]string) (Plugin, error)
- func NewSocks5Plugin(params map[string]string) (p Plugin, err error)
- func NewStaticFilePlugin(params map[string]string) (Plugin, error)
- func NewUnixDomainSocketPlugin(params map[string]string) (p Plugin, err error)
- type Socks5Plugin
- type StaticFilePlugin
- type UnixDomainSocketPlugin
Constants ¶
View Source
const PluginHTTP2HTTPS = "http2https"
View Source
const PluginHTTPProxy = "http_proxy"
View Source
const PluginHTTPS2HTTP = "https2http"
View Source
const PluginSocks5 = "socks5"
View Source
const PluginStaticFile = "static_file"
View Source
const PluginUnixDomainSocket = "unix_domain_socket"
Variables ¶
This section is empty.
Functions ¶
Types ¶
type HTTP2HTTPSPlugin ¶
type HTTP2HTTPSPlugin struct {
// contains filtered or unexported fields
}
func (*HTTP2HTTPSPlugin) Close ¶
func (p *HTTP2HTTPSPlugin) Close() error
func (*HTTP2HTTPSPlugin) Handle ¶
func (p *HTTP2HTTPSPlugin) Handle(conn io.ReadWriteCloser, realConn net.Conn, extraBufToLocal []byte)
func (*HTTP2HTTPSPlugin) Name ¶
func (p *HTTP2HTTPSPlugin) Name() string
type HTTPProxy ¶
type HTTPProxy struct { AuthUser string AuthPasswd string // contains filtered or unexported fields }
func (*HTTPProxy) ConnectHandler ¶
func (hp *HTTPProxy) ConnectHandler(rw http.ResponseWriter, req *http.Request)
deprecated Hijack needs to SetReadDeadline on the Conn of the request, but if we use stream compression here, we may always get i/o timeout error.
func (*HTTPProxy) HTTPHandler ¶
func (hp *HTTPProxy) HTTPHandler(rw http.ResponseWriter, req *http.Request)
type HTTPS2HTTPPlugin ¶
type HTTPS2HTTPPlugin struct {
// contains filtered or unexported fields
}
func (*HTTPS2HTTPPlugin) Close ¶
func (p *HTTPS2HTTPPlugin) Close() error
func (*HTTPS2HTTPPlugin) Handle ¶
func (p *HTTPS2HTTPPlugin) Handle(conn io.ReadWriteCloser, realConn net.Conn, extraBufToLocal []byte)
func (*HTTPS2HTTPPlugin) Name ¶
func (p *HTTPS2HTTPPlugin) Name() string
type Listener ¶
type Listener struct {
// contains filtered or unexported fields
}
func NewProxyListener ¶
func NewProxyListener() *Listener
type Plugin ¶
type Socks5Plugin ¶
func (*Socks5Plugin) Close ¶
func (sp *Socks5Plugin) Close() error
func (*Socks5Plugin) Handle ¶
func (sp *Socks5Plugin) Handle(conn io.ReadWriteCloser, realConn net.Conn, extraBufToLocal []byte)
func (*Socks5Plugin) Name ¶
func (sp *Socks5Plugin) Name() string
type StaticFilePlugin ¶
type StaticFilePlugin struct {
// contains filtered or unexported fields
}
func (*StaticFilePlugin) Close ¶
func (sp *StaticFilePlugin) Close() error
func (*StaticFilePlugin) Handle ¶
func (sp *StaticFilePlugin) Handle(conn io.ReadWriteCloser, realConn net.Conn, extraBufToLocal []byte)
func (*StaticFilePlugin) Name ¶
func (sp *StaticFilePlugin) Name() string
type UnixDomainSocketPlugin ¶
func (*UnixDomainSocketPlugin) Close ¶
func (uds *UnixDomainSocketPlugin) Close() error
func (*UnixDomainSocketPlugin) Handle ¶
func (uds *UnixDomainSocketPlugin) Handle(conn io.ReadWriteCloser, realConn net.Conn, extraBufToLocal []byte)
func (*UnixDomainSocketPlugin) Name ¶
func (uds *UnixDomainSocketPlugin) Name() string
Click to show internal directories.
Click to hide internal directories.