Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HTTPMiddleman ¶
type HTTPMiddleman interface { // Addr is the absoluteURI, RFC 2396. // Request is the http header, don't guarantee it is complete, but contains the host line // Has not written anything to conn. // Handle does not need to close conn. // If handled is true or err is not nil that means the request has been handled Handle(method, addr string, request []byte, conn *net.TCPConn) (handled bool, err error) }
HTTPMiddleman is a middleman who can intercept and handle request
type Socks5Middleman ¶
type Socks5Middleman interface { // TCPRequestHandle does not need to close conn, // if return true that means the request has been handled TCPHandle(*socks5.Server, *net.TCPConn, *socks5.Request) (bool, error) // UDPPacketHandle handles udp packet. // If return true that means the request has been handled. UDPHandle(*socks5.Server, *net.UDPAddr, *socks5.Datagram) (bool, error) }
Socks5Middleman is a middleman who can intercept and handle request
type TokenChecker ¶
type TokenChecker interface { // You should not do a lot of time-consuming operations. Check([]byte) error }
Check token, token will be checked on server.
type TokenGetter ¶
type TokenGetter interface { // You should cache the token, avoid generate new one every time. Get() ([]byte, error) }
Get token, token will be passed from client to server.
Click to show internal directories.
Click to hide internal directories.