handler

package
v1.19.1 Latest Latest
Warning

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

Go to latest
Published: May 9, 2026 License: MIT Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const (
	COPY_BUF    = 128 * 1024
	BAD_REQ_MSG = "Bad Request\n"

	// Reduced idle pool: the proxy handler makes upstream connections per request,
	// not persistent keep-alive sessions. 10 total / 2 per host is plenty and
	// avoids leaking hundreds of idle goroutines/sockets under bursty traffic.
	TRANSPORT_MAX_IDLE_CONNS          = 10
	TRANSPORT_MAX_IDLE_CONNS_PER_HOST = 2
	TRANSPORT_IDLE_CONN_TIMEOUT       = 60 * time.Second
)

Variables

This section is empty.

Functions

func NewSocksServer

func NewSocksServer(dialer dialer.ContextDialer, logger *log.Logger, fakeSNI string) (*socks5.Server, error)

Types

type DummySocksResolver

type DummySocksResolver struct{}

func (DummySocksResolver) Resolve

func (_ DummySocksResolver) Resolve(ctx context.Context, name string) (context.Context, net.IP, error)

type ProxyHandler

type ProxyHandler struct {
	// contains filtered or unexported fields
}

func NewProxyHandler

func NewProxyHandler(dialer dialer.ContextDialer, logger *clog.CondLogger, fakeSNI string) *ProxyHandler

func (*ProxyHandler) HandleRequest

func (s *ProxyHandler) HandleRequest(wr http.ResponseWriter, req *http.Request)

func (*ProxyHandler) HandleTunnel

func (s *ProxyHandler) HandleTunnel(wr http.ResponseWriter, req *http.Request)

func (*ProxyHandler) ServeHTTP

func (s *ProxyHandler) ServeHTTP(wr http.ResponseWriter, req *http.Request)

Jump to

Keyboard shortcuts

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