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