aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-03 15:01:22 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-03 15:01:22 +0000
commit8b6314ccfbe48bba2cd560812dd1841425f3bd79 (patch)
tree17ca2bf182593acbbc583d224e0af674e9fd8964 /lib/transfer.h
parent6de7dc5879b3605a180dafa05f792f132eafdcaa (diff)
merged the multi-dev branch back into MAIN again
Diffstat (limited to 'lib/transfer.h')
-rw-r--r--lib/transfer.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/transfer.h b/lib/transfer.h
index c35f7c6fb..6f616c8ad 100644
--- a/lib/transfer.h
+++ b/lib/transfer.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2001, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* In order to be useful for every potential user, curl and libcurl are
* dual-licensed under the MPL and the MIT/X-derivate licenses.
@@ -24,6 +24,17 @@
*****************************************************************************/
CURLcode Curl_perform(struct SessionHandle *data);
+CURLcode Curl_pretransfer(struct SessionHandle *data);
+CURLcode Curl_posttransfer(struct SessionHandle *data);
+
+CURLcode Curl_readwrite(struct connectdata *conn, bool *done);
+void Curl_single_fdset(struct connectdata *conn,
+ fd_set *read_fd_set,
+ fd_set *write_fd_set,
+ fd_set *exc_fd_set,
+ int *max_fd);
+CURLcode Curl_readwrite_init(struct connectdata *conn);
+
/* This sets up a forthcoming transfer */
CURLcode
Curl_Transfer (struct connectdata *data,