Skip to content
Snippets Groups Projects
Commit ec5ac82c authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

How do a fetch multiple files with libcurl?

parent 76ac228e
No related branches found
No related tags found
No related merge requests found
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment