splice (2) Linux Manual Page
splice – splice data to/from a pipe Synopsis#define _GNU_SOURCE /* See feature_test_macros(7) */ #include <fcntl.h> ssize_t splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags);Descriptionsplice() moves data between two file descriptors without copying between kernel address space and user address space. It transfers up to len bytes of data from the…
