aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/microhttpd.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/microhttpd.texi b/doc/microhttpd.texi
index ab8c5c9e..f46b7e87 100644
--- a/doc/microhttpd.texi
+++ b/doc/microhttpd.texi
@@ -1393,7 +1393,7 @@ size of the file)
1393file descriptor referring to a file on disk with the data; will be 1393file descriptor referring to a file on disk with the data; will be
1394closed when response is destroyed; note that 'fd' must be an actual 1394closed when response is destroyed; note that 'fd' must be an actual
1395file descriptor (not a pipe or socket) since MHD might use 'sendfile' 1395file descriptor (not a pipe or socket) since MHD might use 'sendfile'
1396or 'seek' on it 1396or 'seek' on it. The descriptor should be in blocking-IO mode.
1397@end table 1397@end table
1398 1398
1399Return @mynull{} on error (i.e. invalid arguments, out of memory). 1399Return @mynull{} on error (i.e. invalid arguments, out of memory).
@@ -1413,7 +1413,7 @@ file starting at offset).
1413file descriptor referring to a file on disk with the data; will be 1413file descriptor referring to a file on disk with the data; will be
1414closed when response is destroyed; note that 'fd' must be an actual 1414closed when response is destroyed; note that 'fd' must be an actual
1415file descriptor (not a pipe or socket) since MHD might use 'sendfile' 1415file descriptor (not a pipe or socket) since MHD might use 'sendfile'
1416or 'seek' on it 1416or 'seek' on it. The descriptor should be in blocking-IO mode.
1417 1417
1418@item offset 1418@item offset
1419offset to start reading from in the file 1419offset to start reading from in the file