Home | History | Annotate | Download | only in apps

Lines Matching refs:BIO

75 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
85 static BIO *init_responder(char *port);
86 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, char *port);
87 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
88 static OCSP_RESPONSE *query_responder(BIO *err, BIO *cbio, char *path,
113 BIO *acbio = NULL, *cbio = NULL;
114 BIO *derbio = NULL;
115 BIO *out = NULL;
728 BIO_printf(bio_err, "Error creating connect BIO - sockets not supported.\n");
938 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
966 /* Check validity: if invalid write to output BIO so we
1116 static BIO *init_responder(char *port)
1118 BIO *acbio = NULL, *bufbio = NULL;
1125 BIO_printf(bio_err, "Error setting up accept BIO - sockets not supported.\n");
1134 BIO_printf(bio_err, "Error setting up accept BIO\n");
1147 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, char *port)
1152 BIO *cbio = NULL;
1200 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
1213 static OCSP_RESPONSE *query_responder(BIO *err, BIO *cbio, char *path,
1230 BIO_puts(err, "Error connecting BIO\n");
1299 OCSP_RESPONSE *process_responder(BIO *err, OCSP_REQUEST *req,
1303 BIO *cbio = NULL;
1309 BIO_printf(err, "Error creating connect BIO\n");
1315 BIO *sbio;