Lines Matching defs:resp
91 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req,
99 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
790 OCSP_RESPONSE *resp = NULL;
903 resp = OCSP_response_create(
905 send_ocsp_response(cbio, resp);
973 i = make_ocsp_response(&resp, cfg.req, rdb, rca_cert,
977 send_ocsp_response(cbio, resp);
979 resp = process_responder(bio_err, cfg.req,
984 if (!resp)
993 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
995 if (!resp) {
1013 i2d_OCSP_RESPONSE_bio(derbio, resp);
1016 i = OCSP_response_status(resp);
1027 OCSP_RESPONSE_print(out, resp, 0);
1039 OCSP_RESPONSE_free(resp);
1040 resp = NULL;
1056 bs = OCSP_response_get1_basic(resp);
1106 OCSP_RESPONSE_free(resp);
1248 make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
1260 *resp = OCSP_response_create(
1283 *resp = OCSP_response_create(
1336 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1446 send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
1454 BIO_printf(cbio, http_resp, i2d_OCSP_RESPONSE(resp, NULL));
1455 i2d_OCSP_RESPONSE_bio(cbio, resp);
1555 OCSP_RESPONSE *resp = NULL;
1575 resp = query_responder(err, cbio, path, headers, host, req, req_timeout);
1576 if (!resp)
1582 return resp;