type net/http/httputil.ReverseProxy
12 uses
net/http/httputil (current package)
reverseproxy.go#L103: type ReverseProxy struct {
reverseproxy.go#L262: func NewSingleHostReverseProxy(target *url.URL) *ReverseProxy {
reverseproxy.go#L266: return &ReverseProxy{Director: director}
reverseproxy.go#L306: func (p *ReverseProxy) defaultErrorHandler(rw http.ResponseWriter, req *http.Request, err error) {
reverseproxy.go#L311: func (p *ReverseProxy) getErrorHandler() func(http.ResponseWriter, *http.Request, error) {
reverseproxy.go#L320: func (p *ReverseProxy) modifyResponse(rw http.ResponseWriter, res *http.Response, req *http.Request) bool {
reverseproxy.go#L332: func (p *ReverseProxy) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
reverseproxy.go#L596: func (p *ReverseProxy) flushInterval(res *http.Response) time.Duration {
reverseproxy.go#L613: func (p *ReverseProxy) copyResponse(dst http.ResponseWriter, src io.Reader, flushInterval time.Duration) error {
reverseproxy.go#L642: func (p *ReverseProxy) copyBuffer(dst io.Writer, src io.Reader, buf []byte) (int64, error) {
reverseproxy.go#L673: func (p *ReverseProxy) logf(format string, args ...any) {
reverseproxy.go#L737: func (p *ReverseProxy) handleUpgradeResponse(rw http.ResponseWriter, req *http.Request, res *http.Response) {