v/vlib/veb/sendfile_linux.c.v
2024-04-24 19:23:19 +03:00

11 lines
288 B
V

module veb
#include <sys/sendfile.h>
fn C.sendfile(out_fd int, in_fd int, offset voidptr, count int) int
fn sendfile(out_fd int, in_fd int, nr_bytes int) int {
// always pass nil as offset, so the file offset will be used and updated.
return C.sendfile(out_fd, in_fd, 0, nr_bytes)
}