Lines Matching full:connect
79 \& int connect, int detail);
146 The HTTP client functions connect via the given proxy unless the \fIserver\fR
160 \&\fIbio_update_fn\fR is a BIO connect/disconnect callback function with prototype
163 \& BIO *(*OSSL_HTTP_bio_cb_t)(BIO *bio, void *arg, int connect, int detail)
170 callback function is invoked with the \fIconnect\fR argument being 1 and
172 On disconnect \fIconnect\fR is 0 and \fIdetail\fR is 1 if no error occurred, else 0.
173 For instance, on connect the callback may push an SSL BIO to implement HTTPS;
182 \& BIO *http_tls_cb(BIO *bio, void *arg, int connect, int detail)
184 \& if (connect && detail) { /* connecting with TLS */
189 \& } else if (!connect) { /* disconnecting */
217 \&\fBOSSL_HTTP_proxy_connect()\fR may be used by an above BIO connect callback function
220 pre-established with a TLS proxy using the HTTP CONNECT method,
222 to connect with TLS protection ultimately to \fIserver\fR and \fIport\fR.