You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
388 B
C
20 lines
388 B
C
/* for macos X, don't ask */
|
|
#define SENDFILE 1
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/uio.h>
|
|
#include <errno.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/tcp.h>
|
|
|
|
int main() {
|
|
struct sf_hdtr hdr;
|
|
struct iovec v[17+23];
|
|
int r,fd=1;
|
|
off_t sbytes;
|
|
hdr.headers=v; hdr.hdr_cnt=17;
|
|
hdr.trailers=v+17; hdr.trl_cnt=23;
|
|
r=sendfile(0,1,37,42,&hdr,&sbytes,0);
|
|
}
|