diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-03-21 21:54:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-03-21 21:54:44 +0000 |
commit | 83367f67de9584b91570bcb53a153b8aa496d455 (patch) | |
tree | 83fe48b1331c3b40653ea85ec56b663093feae12 /lib/http.h | |
parent | 15f2647d713b2de6d76424ef83e5dd00cfd3403d (diff) | |
download | curl-83367f67de9584b91570bcb53a153b8aa496d455.tar.gz |
Xavier Bouchoux made the SSL connection non-blocking for the multi interface
(when using OpenSSL).
Diffstat (limited to 'lib/http.h')
-rw-r--r-- | lib/http.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/http.h b/lib/http.h index 599d067c0..bc459f5d3 100644 --- a/lib/http.h +++ b/lib/http.h @@ -37,6 +37,11 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, CURLcode Curl_http(struct connectdata *conn, bool *done); CURLcode Curl_http_done(struct connectdata *, CURLcode); CURLcode Curl_http_connect(struct connectdata *conn, bool *done); +CURLcode Curl_https_connecting(struct connectdata *conn, bool *done); +CURLcode Curl_https_proto_fdset(struct connectdata *conn, + fd_set *read_fd_set, + fd_set *write_fd_set, + int *max_fdp); /* The following functions are defined in http_chunks.c */ void Curl_httpchunk_init(struct connectdata *conn); |