diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:36:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:36:47 +0000 |
commit | 0441d265f2bb9da249c7abf333f0f771fadb4ab5 (patch) | |
tree | 3f3789daa2f6db22da6e55e92bee0062a7d613fe /src/lib/sendfile-util.h | |
parent | Initial commit. (diff) | |
download | dovecot-0441d265f2bb9da249c7abf333f0f771fadb4ab5.tar.xz dovecot-0441d265f2bb9da249c7abf333f0f771fadb4ab5.zip |
Adding upstream version 1:2.3.21+dfsg1.upstream/1%2.3.21+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/lib/sendfile-util.h')
-rw-r--r-- | src/lib/sendfile-util.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/sendfile-util.h b/src/lib/sendfile-util.h new file mode 100644 index 0000000..3d7f14a --- /dev/null +++ b/src/lib/sendfile-util.h @@ -0,0 +1,16 @@ +#ifndef SENDFILE_UTIL_H +#define SENDFILE_UTIL_H + +/* Wrapper for various sendfile()-like calls. Read a maximum of count bytes + from the given offset in in_fd and write them to out_fd. The offset is + updated after the call. Note the call assert-crashes if count is 0. + + Returns: + >0 number of bytes successfully written (maybe less than count) + 0 if offset points to the input's EOF or past it + -1, errno=EINVAL if it isn't supported for some reason (out_fd isn't a + socket or there simply is no sendfile()). + -1, errno=EAGAIN if non-blocking write couldn't send anything */ +ssize_t safe_sendfile(int out_fd, int in_fd, uoff_t *offset, size_t count); + +#endif |