Searched defs:httpError (Results 1 – 2 of 2) sorted by relevance
328 type httpError struct { struct329 msg string330 timeout bool333 func (e *httpError) Error() string { return e.msg }334 func (e *httpError) Timeout() bool { return e.timeout }335 func (e *httpError) Temporary() bool { return true }
594 httpError(http_t *http) /* I - HTTP connection */ in httpError() function