(url string)
| 66 | } |
| 67 | |
| 68 | func waitConnGet(url string) (*http.Response, error) { |
| 69 | return waitConn(func() (*http.Response, error) { |
| 70 | return (&http.Client{ |
| 71 | Transport: &http.Transport{ |
| 72 | TLSClientConfig: &tls.Config{ |
| 73 | InsecureSkipVerify: true}}}).Get(url) |
| 74 | }) |
| 75 | } |
| 76 | |
| 77 | // MuFindAddress has to be hold to be able to call FindAddress. Caller has to release when he is ready. |
| 78 | var MuFindAddress sync.Mutex |
no test coverage detected
searching dependent graphs…