Lines Matching refs:connect
20 int connect, int detail);
81 The HTTP client functions connect via the given proxy unless the I<server>
94 I<bio_update_fn> is a BIO connect/disconnect callback function with prototype
96 BIO *(*OSSL_HTTP_bio_cb_t)(BIO *bio, void *arg, int connect, int detail)
102 the function is invoked with the I<connect> argument being 1 and the I<detail>
104 On disconnect I<connect> is 0 and I<detail> is 1 if no error occurred, else 0.
105 For instance, on connect the function may prepend a TLS BIO to implement HTTPS;
110 BIO *http_tls_cb(BIO *hbio, void *arg, int connect, int detail)
112 if (connect && detail) { /* connecting with TLS */
117 } else if (!connect && !detail) { /* disconnecting after error */
134 OSSL_HTTP_proxy_connect() may be used by an above BIO connect callback function
139 to connect with TLS protection ultimately to I<server> and I<port>.