diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-02-09 13:06:40 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-09 13:06:40 +0000 |
commit | 6a2e21ec8cbaf7c719902e06953d9dbec629ad4f (patch) | |
tree | c09552b516d0d6dadc999ef446843ba32db4f1e1 /lib/http.h | |
parent | 120f17ce04794f55603a1edcd8ec8f89a09fe4ca (diff) | |
download | curl-6a2e21ec8cbaf7c719902e06953d9dbec629ad4f.tar.gz |
FTP code turned into state machine. Not completely yet, but a good start.
The tag 'before_ftp_statemachine' was set just before this commit in case
of future need.
Diffstat (limited to 'lib/http.h')
-rw-r--r-- | lib/http.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/http.h b/lib/http.h index 57f1d115e..23afc9115 100644 --- a/lib/http.h +++ b/lib/http.h @@ -8,7 +8,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -34,9 +34,9 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn, char *hostname, int remote_port); /* protocol-specific functions set up to be called by the main engine */ -CURLcode Curl_http(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); +CURLcode Curl_http_connect(struct connectdata *conn, bool *done); /* The following functions are defined in http_chunks.c */ void Curl_httpchunk_init(struct connectdata *conn); |