httpproxy icon indicating copy to clipboard operation
httpproxy copied to clipboard

Go HTTP proxy server library

Results 13 httpproxy issues
Sort by recently updated
recently updated
newest added

The opErrror processing does not seem to work. TBH I do not understand the code (still new to golang) When I replace it with checks like error.Is(err,syscall.EPIPE) instead , etc....

I see in proxy.go that outbound connections are made using local proxy environment variable. This does not work for https:// connection. prx := &Proxy{ Rt: &http.Transport{TLSClientConfig: &tls.Config{}, Proxy: http.ProxyFromEnvironment}, MitmChunked:...