Lines Matching refs:HTTP
13 - HTTP client high-level functions
55 OSSL_HTTP_open() initiates an HTTP session using the I<bio> argument if not
62 defaulting to 80 for HTTP or 443 for HTTPS.
77 HTTP(S) proxy to use (unless overridden by "no_proxy" settings).
87 The HTTP client functions connect via the given proxy unless the I<server>
91 Proxying plain HTTP is supported directly,
99 may be used to modify the connection BIO used by the HTTP client,
150 seconds the overall HTTP transfer (i.e., connection setup if needed,
157 pre-established with a TLS proxy using the HTTP CONNECT method,
170 If <rctx> indicates using a proxy for HTTP (but not HTTPS), the server host
176 If I<req> is NULL the HTTP GET method will be used to send the request
177 else HTTP POST with the contents of I<req> and optional I<content_type>, where
180 The optional list I<headers> may contain additional custom HTTP header lines.
186 OSSL_HTTP_exchange() exchanges any form of HTTP request and response
190 If the HTTP method is GET and I<redirection_url>
192 the server may return with HTTP code 301 (MOVED_PERMANENTLY) or 302 (FOUND).
205 OSSL_HTTP_get() uses HTTP GET to obtain data from I<bio> if non-NULL,
207 It supports redirection via HTTP status code 301 or 302. It is meant for
219 OSSL_HTTP_transfer() exchanges an HTTP request and response
234 It must be 1 if no error occurred during the HTTP transfer and 0 otherwise.
241 other HTTP client implementations such as wget, curl, and git.