Home
last modified time | relevance | path

Searched refs:OSSL_HTTP_REQ_CTX (Results 1 – 17 of 17) sorted by relevance

/freebsd-14.2/crypto/openssl/include/openssl/
H A Dhttp.h42 void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx);
46 int OSSL_HTTP_REQ_CTX_add1_header(OSSL_HTTP_REQ_CTX *rctx,
48 int OSSL_HTTP_REQ_CTX_set_expected(OSSL_HTTP_REQ_CTX *rctx,
53 int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx);
54 int OSSL_HTTP_REQ_CTX_nbio_d2i(OSSL_HTTP_REQ_CTX *rctx,
56 BIO *OSSL_HTTP_REQ_CTX_exchange(OSSL_HTTP_REQ_CTX *rctx);
57 BIO *OSSL_HTTP_REQ_CTX_get0_mem_bio(const OSSL_HTTP_REQ_CTX *rctx);
58 size_t OSSL_HTTP_REQ_CTX_get_resp_len(const OSSL_HTTP_REQ_CTX *rctx);
61 int OSSL_HTTP_is_alive(const OSSL_HTTP_REQ_CTX *rctx);
85 BIO *OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx,
[all …]
H A Dtypes.h202 typedef struct ossl_http_req_ctx_st OSSL_HTTP_REQ_CTX; typedef
H A Docsp.h.in173 OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
178 typedef OSSL_HTTP_REQ_CTX OCSP_REQ_CTX;
H A Docsp.h269 OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
274 typedef OSSL_HTTP_REQ_CTX OCSP_REQ_CTX;
/freebsd-14.2/crypto/openssl/crypto/http/
H A Dhttp_client.c92 OSSL_HTTP_REQ_CTX *rctx; in OSSL_HTTP_REQ_CTX_new()
115 void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx) in OSSL_HTTP_REQ_CTX_free()
273 static int set1_content(OSSL_HTTP_REQ_CTX *rctx, in set1_content()
350 static int add1_headers(OSSL_HTTP_REQ_CTX *rctx, in add1_headers()
524 int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx) in OSSL_HTTP_REQ_CTX_nbio()
838 int OSSL_HTTP_REQ_CTX_nbio_d2i(OSSL_HTTP_REQ_CTX *rctx, in OSSL_HTTP_REQ_CTX_nbio_d2i()
932 int OSSL_HTTP_is_alive(const OSSL_HTTP_REQ_CTX *rctx) in OSSL_HTTP_is_alive()
947 OSSL_HTTP_REQ_CTX *rctx = NULL; in OSSL_HTTP_open()
1147 OSSL_HTTP_REQ_CTX *rctx = NULL; in OSSL_HTTP_get()
1223 BIO *OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx, in OSSL_HTTP_transfer()
[all …]
/freebsd-14.2/crypto/openssl/doc/man3/
H A DOCSP_sendreq_new.pod20 OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
28 typedef OSSL_HTTP_REQ_CTX OCSP_REQ_CTX;
29 int OCSP_sendreq_nbio(OCSP_RESPONSE **presp, OSSL_HTTP_REQ_CTX *rctx);
40 using the HTTP request functions described in L<OSSL_HTTP_REQ_CTX(3)>.
42 The function OCSP_sendreq_new() builds a complete B<OSSL_HTTP_REQ_CTX> structure
81 B<OCSP_REQ_CTX> by L<OSSL_HTTP_REQ_CTX(3)>,
89 OCSP_sendreq_new() returns a valid B<OSSL_HTTP_REQ_CTX> structure or NULL
99 L<OSSL_HTTP_REQ_CTX(3)>, L<OSSL_HTTP_transfer(3)>,
H A DOSSL_HTTP_REQ_CTX.pod5 OSSL_HTTP_REQ_CTX,
25 typedef struct ossl_http_req_ctx_st OSSL_HTTP_REQ_CTX;
28 void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx);
33 int OSSL_HTTP_REQ_CTX_add1_header(OSSL_HTTP_REQ_CTX *rctx,
36 int OSSL_HTTP_REQ_CTX_set_expected(OSSL_HTTP_REQ_CTX *rctx,
41 int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx);
42 int OSSL_HTTP_REQ_CTX_nbio_d2i(OSSL_HTTP_REQ_CTX *rctx,
44 BIO *OSSL_HTTP_REQ_CTX_exchange(OSSL_HTTP_REQ_CTX *rctx);
46 BIO *OSSL_HTTP_REQ_CTX_get0_mem_bio(const OSSL_HTTP_REQ_CTX *rctx);
47 size_t OSSL_HTTP_REQ_CTX_get_resp_len(const OSSL_HTTP_REQ_CTX *rctx);
[all …]
H A DOSSL_HTTP_transfer.pod21 OSSL_HTTP_REQ_CTX *OSSL_HTTP_open(const char *server, const char *port,
29 int OSSL_HTTP_set1_request(OSSL_HTTP_REQ_CTX *rctx, const char *path,
34 BIO *OSSL_HTTP_exchange(OSSL_HTTP_REQ_CTX *rctx, char **redirection_url);
41 BIO *OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx,
51 int OSSL_HTTP_close(OSSL_HTTP_REQ_CTX *rctx, int ok);
255 OSSL_HTTP_open() returns on success a B<OSSL_HTTP_REQ_CTX>, else NULL.
/freebsd-14.2/crypto/openssl/crypto/ocsp/
H A Docsp_http.c15 OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path, in OCSP_sendreq_new()
18 OSSL_HTTP_REQ_CTX *rctx = OSSL_HTTP_REQ_CTX_new(io, io, buf_size); in OCSP_sendreq_new()
54 OSSL_HTTP_REQ_CTX *ctx; in OCSP_sendreq_bio()
/freebsd-14.2/crypto/openssl/test/
H A Dhttp_test.c164 OSSL_HTTP_REQ_CTX *rctx = NULL; in test_http_keep_alive()
/freebsd-14.2/secure/lib/libcrypto/man/man3/
H A DMakefile300 MAN+= OSSL_HTTP_REQ_CTX.3
3041 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_add1_header.3
3042 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_exchange.3
3043 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_free.3
3044 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_get0_mem_bio.3
3045 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_get_resp_len.3
3046 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_nbio.3
3047 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_nbio_d2i.3
3048 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_new.3
3049 MLINKS+= OSSL_HTTP_REQ_CTX.3 OSSL_HTTP_REQ_CTX_set1_req.3
[all …]
/freebsd-14.2/crypto/openssl/crypto/cmp/
H A Dcmp_local.h43 OSSL_HTTP_REQ_CTX *http_ctx;
/freebsd-14.2/crypto/openssl/util/
H A Dindent.pro305 -T OSSL_HTTP_REQ_CTX
H A Dother.syms72 OSSL_HTTP_REQ_CTX datatype
/freebsd-14.2/crypto/openssl/doc/
H A Dbuild.info1674 DEPEND[html/man3/OSSL_HTTP_REQ_CTX.html]=man3/OSSL_HTTP_REQ_CTX.pod
1675 GENERATE[html/man3/OSSL_HTTP_REQ_CTX.html]=man3/OSSL_HTTP_REQ_CTX.pod
1676 DEPEND[man/man3/OSSL_HTTP_REQ_CTX.3]=man3/OSSL_HTTP_REQ_CTX.pod
1677 GENERATE[man/man3/OSSL_HTTP_REQ_CTX.3]=man3/OSSL_HTTP_REQ_CTX.pod
3204 html/man3/OSSL_HTTP_REQ_CTX.html \
3812 man/man3/OSSL_HTTP_REQ_CTX.3 \
/freebsd-14.2/crypto/openssl/doc/man7/
H A Dmigration_guide.pod1963 type is B<OSSL_HTTP_REQ_CTX>, and the deprecated functions are replaced
1964 with B<OSSL_HTTP_REQ_CTX_*()>. See L<OSSL_HTTP_REQ_CTX(3)> for additional
/freebsd-14.2/crypto/openssl/
H A DCHANGES.md1379 replaced with OSSL_HTTP_REQ_CTX and the functions OSSL_HTTP_REQ_CTX_*().