Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.73K
~161 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for ooops.789

sendfile() is used to transfer data between file descriptors. The prototype of sendfile() is as follows, #include <sys/sendfile.h> ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count); It basically copies file data from one file descriptor to another in local machine. So, not sure if sendfile can be used to …

Member Avatar for aShu5tosh
0
161

The End.