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
1051
BIO *OSSL_HTTP_REQ_CTX_exchange(OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
108
OSSL_HTTP_REQ_CTX *OSSL_HTTP_REQ_CTX_new(BIO *wbio, BIO *rbio, int buf_size)
crypto/openssl/crypto/http/http_client.c
1082
int OSSL_HTTP_is_alive(const OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
1090
OSSL_HTTP_REQ_CTX *OSSL_HTTP_open(const char *server, const char *port,
crypto/openssl/crypto/http/http_client.c
1097
OSSL_HTTP_REQ_CTX *rctx = NULL;
crypto/openssl/crypto/http/http_client.c
110
OSSL_HTTP_REQ_CTX *rctx;
crypto/openssl/crypto/http/http_client.c
1176
int OSSL_HTTP_set1_request(OSSL_HTTP_REQ_CTX *rctx, const char *path,
crypto/openssl/crypto/http/http_client.c
1210
BIO *OSSL_HTTP_exchange(OSSL_HTTP_REQ_CTX *rctx, char **redirection_url)
crypto/openssl/crypto/http/http_client.c
1307
OSSL_HTTP_REQ_CTX *rctx;
crypto/openssl/crypto/http/http_client.c
134
void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
1372
BIO *OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx,
crypto/openssl/crypto/http/http_client.c
1383
OSSL_HTTP_REQ_CTX *rctx = prctx == NULL ? NULL : *prctx;
crypto/openssl/crypto/http/http_client.c
1410
int OSSL_HTTP_close(OSSL_HTTP_REQ_CTX *rctx, int ok)
crypto/openssl/crypto/http/http_client.c
156
BIO *OSSL_HTTP_REQ_CTX_get0_mem_bio(const OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
165
size_t OSSL_HTTP_REQ_CTX_get_resp_len(const OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
174
void OSSL_HTTP_REQ_CTX_set_max_response_length(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
189
int OSSL_HTTP_REQ_CTX_set_request_line(OSSL_HTTP_REQ_CTX *rctx, int method_POST,
crypto/openssl/crypto/http/http_client.c
243
int OSSL_HTTP_REQ_CTX_add1_header(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
269
int OSSL_HTTP_REQ_CTX_set_expected(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
299
static int set1_content(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
368
int OSSL_HTTP_REQ_CTX_set1_req(OSSL_HTTP_REQ_CTX *rctx, const char *content_type,
crypto/openssl/crypto/http/http_client.c
381
void OSSL_HTTP_REQ_CTX_set_max_response_hdr_lines(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
391
static int add1_headers(OSSL_HTTP_REQ_CTX *rctx,
crypto/openssl/crypto/http/http_client.c
412
static OSSL_HTTP_REQ_CTX *http_req_ctx_new(int free_wbio, BIO *wbio, BIO *rbio,
crypto/openssl/crypto/http/http_client.c
419
OSSL_HTTP_REQ_CTX *rctx = OSSL_HTTP_REQ_CTX_new(wbio, rbio, buf_size);
crypto/openssl/crypto/http/http_client.c
536
static int check_set_resp_len(const char *desc, OSSL_HTTP_REQ_CTX *rctx, size_t len)
crypto/openssl/crypto/http/http_client.c
568
int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx)
crypto/openssl/crypto/http/http_client.c
989
int OSSL_HTTP_REQ_CTX_nbio_d2i(OSSL_HTTP_REQ_CTX *rctx,
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
250
OSSL_HTTP_REQ_CTX *rctx = NULL;
crypto/openssl/test/http_test.c
432
OSSL_HTTP_REQ_CTX *rctx = NULL;
crypto/openssl/test/http_test.c
574
OSSL_HTTP_REQ_CTX *rctx = NULL;