Home | History | Annotate | Download | only in rpc

Lines Matching refs:Response

60 // argument to force the body of the response to be read and then
65 ReadResponseHeader(*Response) error
106 var response Response
108 response = Response{}
109 err = client.codec.ReadResponseHeader(&response)
113 seq := response.Seq
123 // removed; response is a server telling us about an
130 case response.Error != "":
131 // We've got an error response. Give this to the request;
134 call.Error = ServerError(response.Error)
222 func (c *gobClientCodec) ReadResponseHeader(r *Response) error {
250 // Require successful HTTP response
257 err = errors.New("unexpected HTTP response: " + resp.Status)