Lines Matching refs:Response
169 // Write writes resp in response to req. To close the connection gracefully, set the
170 // Response.Close field to true. Write should be considered operational until
172 func (sc *ServerConn) Write(req *http.Request, resp *http.Response) error {
174 // Retrieve the pipeline ID of this request/response pair
357 // Read reads the next response from the wire. A valid response might be
361 func (cc *ClientConn) Read(req *http.Request) (resp *http.Response, err error) {
362 // Retrieve the pipeline ID of this request/response pair
422 // Do is convenience method that writes a request and reads a response.
423 func (cc *ClientConn) Do(req *http.Request) (resp *http.Response, err error) {