()
| 155 | } |
| 156 | |
| 157 | func (h *Http) DontRedirect() *Http { |
| 158 | h.HttpClient.CheckRedirect = func(req *http.Request, via []*http.Request) error { |
| 159 | return http.ErrUseLastResponse |
| 160 | } |
| 161 | return h |
| 162 | } |
| 163 | func (h *Http) DontKeepAlive() *Http { |
| 164 | h.HttpTransport.DisableKeepAlives = true |
| 165 | return h |
no outgoing calls