Lines Matching refs:connect
20 int connect, int detail);
85 The HTTP client functions connect via the given proxy unless the I<server>
99 I<bio_update_fn> is a BIO connect/disconnect callback function with prototype
101 BIO *(*OSSL_HTTP_bio_cb_t)(BIO *bio, void *arg, int connect, int detail)
107 callback function is invoked with the I<connect> argument being 1 and
109 On disconnect I<connect> is 0 and I<detail> is 1 if no error occurred, else 0.
110 For instance, on connect the callback may push an SSL BIO to implement HTTPS;
118 BIO *http_tls_cb(BIO *bio, void *arg, int connect, int detail)
120 if (connect && detail) { /* connecting with TLS */
125 } else if (!connect) { /* disconnecting */
152 OSSL_HTTP_proxy_connect() may be used by an above BIO connect callback function
157 to connect with TLS protection ultimately to I<server> and I<port>.