- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for ProxyURL (0.07 seconds)
-
internal/config/subnet/config.go
// inputs not performing any network calls. return cfg, nil } // Make sure to clone the transport before editing the ProxyURL if proxyURL != nil { if tr, ok := transport.(*http.Transport); ok { ctransport := tr.Clone() ctransport.Proxy = http.ProxyURL((*url.URL)(proxyURL)) cfg.transport = ctransport } } else { cfg.transport = transport } return cfg, nilCreated: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 3.9K bytes - Click Count (0) -
internal/logger/target/http/http.go
h.payloadType = "application/json" } // If proxy available, set the same if h.config.Proxy != "" { proxyURL, _ := url.Parse(h.config.Proxy) transport := h.config.Transport if tr, ok := transport.(*http.Transport); ok { ctransport := tr.Clone() ctransport.Proxy = http.ProxyURL(proxyURL) h.config.Transport = ctransport } } h.client = &http.Client{Transport: h.config.Transport}Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 15.6K bytes - Click Count (0) -
api/go1.txt
pkg net/http, func Post(string, string, io.Reader) (*Response, error) pkg net/http, func PostForm(string, url.Values) (*Response, error) pkg net/http, func ProxyFromEnvironment(*Request) (*url.URL, error) pkg net/http, func ProxyURL(*url.URL) func(*Request) (*url.URL, error) pkg net/http, func ReadRequest(*bufio.Reader) (*Request, error) pkg net/http, func ReadResponse(*bufio.Reader, *Request) (*Response, error)
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0)