Lines Matching defs:resp
69 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
80 static int send_ocsp_response(BIO *cbio, const OCSP_RESPONSE *resp);
224 OCSP_RESPONSE *resp = NULL;
666 resp =
669 send_ocsp_response(cbio, resp);
724 make_ocsp_response(bio_err, &resp, req, rdb, rca_cert, rsigner, rkey,
727 if (resp == NULL)
730 send_ocsp_response(cbio, resp);
733 resp = process_responder(req, host, port, path, opt_proxy, opt_no_proxy,
735 if (resp == NULL)
746 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
748 if (resp == NULL) {
763 i2d_OCSP_RESPONSE_bio(derbio, resp);
767 i = OCSP_response_status(resp);
776 OCSP_RESPONSE_print(out, resp, 0);
789 OCSP_RESPONSE_free(resp);
790 resp = NULL;
812 bs = OCSP_response_get1_basic(resp);
869 OCSP_RESPONSE_free(resp);
1028 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
1046 *resp =
1074 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1121 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1143 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, NULL);
1152 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1158 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, bs);
1167 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1215 static int send_ocsp_response(BIO *cbio, const OCSP_RESPONSE *resp)
1222 (const ASN1_VALUE *)resp);
1238 OCSP_RESPONSE *resp = NULL;
1248 resp = (OCSP_RESPONSE *)
1255 if (resp == NULL)
1260 return resp;