plugin

package
v0.0.0-...-d329b08 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 31, 2019 License: GPL-3.0 Imports: 2 Imported by: 0

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 return true or error 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 {
	// TCPHandle does not need to close conn.
	// If return true or error that means the request has been handled.
	TCPHandle(*socks5.Server, *net.TCPConn, *socks5.Request) (bool, error)

	// UDPHandle handles udp packet.
	// If return true or error 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.

Directories

Path Synopsis
middleman

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL