Lines Matching full:connect
20 int connect, int detail);
84 The HTTP client functions connect via the given proxy unless the I<server>
97 I<bio_update_fn> is a BIO connect/disconnect callback function with prototype
99 BIO *(*OSSL_HTTP_bio_cb_t)(BIO *bio, void *arg, int connect, int detail)
105 callback function is invoked with the I<connect> argument being 1 and
107 On disconnect I<connect> is 0 and I<detail> is 1 if no error occurred, else 0.
108 For instance, on connect the callback may push an SSL BIO to implement HTTPS;
116 BIO *http_tls_cb(BIO *bio, void *arg, int connect, int detail)
118 if (connect && detail) { /* connecting with TLS */
123 } else if (!connect) { /* disconnecting */
148 OSSL_HTTP_proxy_connect() may be used by an above BIO connect callback function
151 pre-established with a TLS proxy using the HTTP CONNECT method,
153 to connect with TLS protection ultimately to I<server> and I<port>.