aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/multi-uv.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-11-03 12:44:38 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-11-03 12:44:38 +0100
commitc8e6e60b4064efffe5aa510e5c436261f7145a83 (patch)
treebc315271e76a405cba492dfdef0c033d7f4c00c1 /docs/examples/multi-uv.c
parent82b6fd41125bc69a20f5cd7e139509458ebb6294 (diff)
docs: shorten and simplify the top comment in multi-uv.c
and change URL to use https
Diffstat (limited to 'docs/examples/multi-uv.c')
-rw-r--r--docs/examples/multi-uv.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/docs/examples/multi-uv.c b/docs/examples/multi-uv.c
index 16b66693d..358200ec2 100644
--- a/docs/examples/multi-uv.c
+++ b/docs/examples/multi-uv.c
@@ -24,18 +24,12 @@
* multi_socket API using libuv
* </DESC>
*/
-/* Example application code using the multi socket interface to download
- multiple files at once, but instead of using curl_multi_perform and
- curl_multi_wait, which uses select(), we use libuv.
- It supports epoll, kqueue, etc. on unixes and fast IO completion ports on
- Windows, which means, it should be very fast on all platforms..
-
- Written by Clemens Gruber, based on an outdated example from uvbook and
- some tests from libuv.
+/* Example application using the multi socket interface to download multiple
+ files in parallel, powered by libuv.
Requires libuv and (of course) libcurl.
- See http://nikhilm.github.com/uvbook/ for more information on libuv.
+ See https://nikhilm.github.com/uvbook/ for more information on libuv.
*/
#include <stdio.h>