summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2016-06-27 21:09:39 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2016-06-27 21:09:39 +0100
commit47ccd9855db44881339e68093655247a78fd8598 (patch)
tree521f29cf9f5bb7302c24b029ea56f835fc127bbe /content/fetch.c
parent767b73f5c703e447a3041423ff220a88a7c0c569 (diff)
downloadnetsurf-47ccd9855db44881339e68093655247a78fd8598.tar.gz
netsurf-47ccd9855db44881339e68093655247a78fd8598.tar.bz2
Move fetcher_fdset to fetch.h (and rename to fetch_fdset). Maybe not ideal but better
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/content/fetch.c b/content/fetch.c
index decb261a7..11adf9cf4 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -379,8 +379,9 @@ fetcher_add(lwc_string *scheme, const struct fetcher_operation_table *ops)
return NSERROR_OK;
}
-/* exported interface documented in content/fetchers.h */
-nserror fetcher_fdset(fd_set *read_fd_set,
+/* exported interface documented in content/fetch.h */
+nserror
+fetch_fdset(fd_set *read_fd_set,
fd_set *write_fd_set,
fd_set *except_fd_set,
int *maxfd_out)