Lines Matching defs:response
102 /* send the request and get a response */
157 "empty response from OCSP server");
163 "response header line too long from OCSP server");
179 /* Read the OCSP response from the socket 'sd', using temporary memory
180 * BIO 'bio', and return the decoded OCSP response object, or NULL on
186 OCSP_RESPONSE *response;
191 /* Using brigades for response parsing is much simpler than using
202 "bad response from OCSP server: %s",
209 * connection after the response anyway for HTTP/1.0. */
214 "OCSP response header: %s", line);
219 "could not read response headers from OCSP server, "
225 "could not read response header from OCSP server");
229 /* Read the response body into the memory BIO. */
240 "OCSP response: got EOF");
245 "error reading response from OCSP server");
257 "OCSP response size exceeds %u byte limit",
262 "OCSP response: got %" APR_SIZE_T_FMT
272 /* Finally decode the OCSP response from what's stored in the
274 response = d2i_OCSP_RESPONSE_bio(bio, NULL);
275 if (response == NULL) {
277 "failed to decode OCSP response data");
281 return response;
289 OCSP_RESPONSE *response = NULL;
308 /* Clear the BIO contents, ready for the response. */
311 response = read_response(sd, bio, c, p);
316 return response;