summaryrefslogtreecommitdiff
path: root/content/fetchers
diff options
context:
space:
mode:
authorAshish Gupta <ashmew2@gmail.com>2017-05-02 12:25:51 +0200
committerAshish Gupta <ashmew2@gmail.com>2017-10-25 22:04:54 +0200
commit7aaf1dc18d5648ad381efad64facc7282df39e3c (patch)
treefd90a60664da09ff782d7d6ee0b3941dbcb4535a /content/fetchers
parent878db58d03e98521c0da55628b7be1c7cca76463 (diff)
downloadnetsurf-7aaf1dc18d5648ad381efad64facc7282df39e3c.tar.gz
netsurf-7aaf1dc18d5648ad381efad64facc7282df39e3c.tar.bz2
Fix description for FETCH_HEADER
Remove redundant FETCH_XXX description from the curl fetcher.
Diffstat (limited to 'content/fetchers')
-rw-r--r--content/fetchers/curl.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index a6146edb3..2c15cc106 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -295,24 +295,8 @@ fetch_curl_post_convert(const struct fetch_multipart_data *control)
/**
* Start fetching data for the given URL.
- *
- * The function returns immediately. The fetch may be queued for later
- * processing.
- *
- * A pointer to an opaque struct curl_fetch_info is returned, which can be
- * passed to fetch_abort() to abort the fetch at any time. Returns 0 if memory
- * is exhausted (or some other fatal error occurred).
- *
- * The caller must supply a callback function which is called when anything
- * interesting happens. The callback function is first called with msg
- * FETCH_HEADER, with the header in data, then one or more times
- * with FETCH_DATA with some data for the url, and finally with
- * FETCH_FINISHED. Alternatively, FETCH_ERROR indicates an error occurred:
- * data contains an error message. FETCH_REDIRECT may replace the FETCH_HEADER,
- * FETCH_DATA, FETCH_FINISHED sequence if the server sends a replacement URL.
- *
- * Some private data can be passed as the last parameter to fetch_start, and
- * callbacks will contain this.
+ * Returns a pointer to struct curl_fetch_info.
+ * See content/fetch.h for more information.
*/
static void *
fetch_curl_setup(struct fetch *parent_fetch,