Symbol: OSSL_HTTP_REQ_CTX
crypto/openssl/crypto/cmp/cmp_local.h
43
OSSL_HTTP_REQ_CTX *http_ctx;
crypto/openssl/crypto/http/http_client.c
100
OSSL_HTTP_REQ_CTX *rctx;
crypto/openssl/crypto/http/http_client.c
1022
BIO *OSSL_HTTP_REQ_CTX_exchange(OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
1053
int OSSL_HTTP_is_alive(const OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
1061
OSSL_HTTP_REQ_CTX *OSSL_HTTP_open(const char *server, const char *port,
crypto/openssl/crypto/http/http_client.c
1068
OSSL_HTTP_REQ_CTX *rctx = NULL;
crypto/openssl/crypto/http/http_client.c
1147
int OSSL_HTTP_set1_request(OSSL_HTTP_REQ_CTX *rctx, const char *path,
crypto/openssl/crypto/http/http_client.c
1181
BIO *OSSL_HTTP_exchange(OSSL_HTTP_REQ_CTX *rctx, char **redirection_url)
crypto/openssl/crypto/http/http_client.c
124
void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
1278
OSSL_HTTP_REQ_CTX *rctx;
crypto/openssl/crypto/http/http_client.c
1343
BIO *OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx,
crypto/openssl/crypto/http/http_client.c
1354
OSSL_HTTP_REQ_CTX *rctx = prctx == NULL ? NULL : *prctx;
crypto/openssl/crypto/http/http_client.c
1381
int OSSL_HTTP_close(OSSL_HTTP_REQ_CTX *rctx, int ok)
crypto/openssl/crypto/http/http_client.c
146
BIO *OSSL_HTTP_REQ_CTX_get0_mem_bio(const OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
155
size_t OSSL_HTTP_REQ_CTX_get_resp_len(const OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
164
void OSSL_HTTP_REQ_CTX_set_max_response_length(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
179
int OSSL_HTTP_REQ_CTX_set_request_line(OSSL_HTTP_REQ_CTX *rctx, int method_POST,
crypto/openssl/crypto/http/http_client.c
229
int OSSL_HTTP_REQ_CTX_add1_header(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
252
int OSSL_HTTP_REQ_CTX_set_expected(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
282
static int set1_content(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
351
int OSSL_HTTP_REQ_CTX_set1_req(OSSL_HTTP_REQ_CTX *rctx, const char *content_type,
crypto/openssl/crypto/http/http_client.c
364
void OSSL_HTTP_REQ_CTX_set_max_response_hdr_lines(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
374
static int add1_headers(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
395
static OSSL_HTTP_REQ_CTX *http_req_ctx_new(int free_wbio, BIO *wbio, BIO *rbio,
crypto/openssl/crypto/http/http_client.c
402
OSSL_HTTP_REQ_CTX *rctx = OSSL_HTTP_REQ_CTX_new(wbio, rbio, buf_size);
crypto/openssl/crypto/http/http_client.c
519
static int check_set_resp_len(const char *desc, OSSL_HTTP_REQ_CTX *rctx, size_t len)
crypto/openssl/crypto/http/http_client.c
551
int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
960
int OSSL_HTTP_REQ_CTX_nbio_d2i(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
98
OSSL_HTTP_REQ_CTX *OSSL_HTTP_REQ_CTX_new(BIO *wbio, BIO *rbio, int buf_size)
crypto/openssl/crypto/ocsp/ocsp_http.c
15
OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
crypto/openssl/crypto/ocsp/ocsp_http.c
18
OSSL_HTTP_REQ_CTX *rctx = OSSL_HTTP_REQ_CTX_new(io, io, buf_size);
crypto/openssl/crypto/ocsp/ocsp_http.c
54
OSSL_HTTP_REQ_CTX *ctx;
crypto/openssl/include/openssl/http.h
104
int OSSL_HTTP_close(OSSL_HTTP_REQ_CTX *rctx, int ok);
crypto/openssl/include/openssl/http.h
48
OSSL_HTTP_REQ_CTX *OSSL_HTTP_REQ_CTX_new(BIO *wbio, BIO *rbio, int buf_size);
crypto/openssl/include/openssl/http.h
49
void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx);
crypto/openssl/include/openssl/http.h
50
int OSSL_HTTP_REQ_CTX_set_request_line(OSSL_HTTP_REQ_CTX *rctx, int method_POST,
crypto/openssl/include/openssl/http.h
53
int OSSL_HTTP_REQ_CTX_add1_header(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/include/openssl/http.h
55
int OSSL_HTTP_REQ_CTX_set_expected(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/include/openssl/http.h
58
int OSSL_HTTP_REQ_CTX_set1_req(OSSL_HTTP_REQ_CTX *rctx, const char *content_type,
crypto/openssl/include/openssl/http.h
60
int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx);
crypto/openssl/include/openssl/http.h
61
int OSSL_HTTP_REQ_CTX_nbio_d2i(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/include/openssl/http.h
63
BIO *OSSL_HTTP_REQ_CTX_exchange(OSSL_HTTP_REQ_CTX *rctx);
crypto/openssl/include/openssl/http.h
64
BIO *OSSL_HTTP_REQ_CTX_get0_mem_bio(const OSSL_HTTP_REQ_CTX *rctx);
crypto/openssl/include/openssl/http.h
65
size_t OSSL_HTTP_REQ_CTX_get_resp_len(const OSSL_HTTP_REQ_CTX *rctx);
crypto/openssl/include/openssl/http.h
66
void OSSL_HTTP_REQ_CTX_set_max_response_length(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/include/openssl/http.h
68
void OSSL_HTTP_REQ_CTX_set_max_response_hdr_lines(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/include/openssl/http.h
70
int OSSL_HTTP_is_alive(const OSSL_HTTP_REQ_CTX *rctx);
crypto/openssl/include/openssl/http.h
74
OSSL_HTTP_REQ_CTX *OSSL_HTTP_open(const char *server, const char *port,
crypto/openssl/include/openssl/http.h
82
int OSSL_HTTP_set1_request(OSSL_HTTP_REQ_CTX *rctx, const char *path,
crypto/openssl/include/openssl/http.h
87
BIO *OSSL_HTTP_exchange(OSSL_HTTP_REQ_CTX *rctx, char **redirection_url);
crypto/openssl/include/openssl/http.h
94
BIO *OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx,
crypto/openssl/include/openssl/ocsp.h
276
OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
crypto/openssl/include/openssl/ocsp.h
281
typedef OSSL_HTTP_REQ_CTX OCSP_REQ_CTX;
crypto/openssl/test/http_test.c
249
OSSL_HTTP_REQ_CTX *rctx = NULL;
crypto/openssl/test/http_test.c
503
OSSL_HTTP_REQ_CTX *rctx = NULL;