diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-05-06 20:19:31 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-05-06 21:04:11 +0100 |
commit | 7d758a6a6842fac6c511039c29d76300e2e21ccd (patch) | |
tree | 2fe98fe2787486cb4fc164283148c9d37fc5e7f3 /src/OS/os.c-FreeBSD | |
parent | 40525d07a858c90293bc09188fb539a1cec3f8aa (diff) |
Enable use of sendfile on FreeBSD
Diffstat (limited to 'src/OS/os.c-FreeBSD')
-rw-r--r-- | src/OS/os.c-FreeBSD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/OS/os.c-FreeBSD b/src/OS/os.c-FreeBSD new file mode 100644 index 000000000..a892e5940 --- /dev/null +++ b/src/OS/os.c-FreeBSD @@ -0,0 +1,25 @@ +/************************************************* +* Exim - an Internet mail transport agent * +*************************************************/ + +/* Copyright (c) Jeremy Harris 2017 */ +/* See the file NOTICE for conditions of use and distribution. */ + +/* FreeBSD-specific code. This is concatenated onto the generic +src/os.c file. */ + + +/************* +* Sendfile * +*************/ +#include <sys/sendfile.h> + +ssize_t +os_sendfile(int out, int in, off_t * off, size_t cnt) +{ +off_t written; +return sendfile(in, out, *off, cnt, NULL, &written, 0) < 0 + ? (ssize_t) -1 : (ssize_t) written; +} + +/* End of os.c-Linux */ |