summaryrefslogtreecommitdiff
path: root/content/fetchers.h
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/fetchers.h
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/fetchers.h')
-rw-r--r--content/fetchers.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/content/fetchers.h b/content/fetchers.h
index cd09e92e4..6392e245e 100644
--- a/content/fetchers.h
+++ b/content/fetchers.h
@@ -129,30 +129,4 @@ nserror fetcher_init(void);
void fetcher_quit(void);
-/**
- * Get the set of file descriptors the fetchers are currently using.
- *
- * This obtains the file descriptors the fetch system is using to
- * obtain data. It will cause the fetchers to make progress, if
- * possible, potentially completing fetches before requiring activity
- * on file descriptors.
- *
- * If a set of descriptors is returned (maxfd is not -1) The caller is
- * expected to wait on them (with select etc.) and continue to obtain
- * the fdset with this call. This will switch the fetchers from polled
- * mode to waiting for network activity which is much more efficient.
- *
- * \note If the caller does not subsequently obtain the fdset again
- * the fetchers will fall back to the less efficient polled
- * operation. The fallback to polled operation will only occour after
- * a timeout which introduces additional delay.
- *
- * \param[out] read_fd_set The fd set for read.
- * \param[out] write_fd_set The fd set for write.
- * \param[out] except_fd_set The fd set for exceptions.
- * \param[out] maxfd The highest fd number in the set or -1 if no fd available.
- * \return NSERROR_OK on success or appropriate error code.
- */
-nserror fetcher_fdset(fd_set *read_fd_set, fd_set *write_fd_set, fd_set *except_fd_set, int *maxfd);
-
#endif