summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-12-14 08:37:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-12-14 08:37:09 +0000
commitec5ac82cfe22d69dfb6ef7a15d56bd41832a4c7a (patch)
tree526a86eeb4b6efc398b5d183ca45900205957ba2
parent76ac228e445743027b7d7ed0e98e15c4042dbf7a (diff)
downloadgnurl-ec5ac82cfe22d69dfb6ef7a15d56bd41832a4c7a.tar.gz
gnurl-ec5ac82cfe22d69dfb6ef7a15d56bd41832a4c7a.tar.bz2
gnurl-ec5ac82cfe22d69dfb6ef7a15d56bd41832a4c7a.zip
How do a fetch multiple files with libcurl?
-rw-r--r--docs/FAQ8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/FAQ b/docs/FAQ
index df43dffd9..d8d9d6de8 100644
--- a/docs/FAQ
+++ b/docs/FAQ
@@ -1,4 +1,4 @@
-Updated: November 22, 2000 (http://curl.haxx.se/docs/faq.shtml)
+Updated: December 14, 2000 (http://curl.haxx.se/docs/faq.shtml)
_ _ ____ _
___| | | | _ \| |
/ __| | | | |_) | |
@@ -49,6 +49,7 @@ FAQ
5. libcurl Issues
5.1 Is libcurl thread safe?
5.2 How can I receive all data into a large memory chunk?
+ 5.3 How do a fetch multiple files with libcurl?
6. License Issues
6.1 I have a GPL program, can I use the libcurl library?
@@ -436,6 +437,11 @@ FAQ
return realsize;
}
+ 5.3 How do a fetch multiple files with libcurl?
+
+ The easy interface of libcurl does not support multiple requests using the
+ same connection. The only available way to do multiple requests is to
+ init/perform/cleanup for each request.
6. License Issues