diff options
Diffstat (limited to 'corking.h')
-rw-r--r-- | corking.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/corking.h b/corking.h new file mode 100644 index 0000000..b240595 --- /dev/null +++ b/corking.h @@ -0,0 +1,11 @@ +#ifndef CORKING_H +#define CORKING_H + +extern void set_tcp_cork(int fd); +extern void set_tcp_uncork(int fd); +extern void set_udp_cork(int fd); +extern void set_udp_uncork(int fd); +extern void set_sock_cork(int fd, int udp); +extern void set_sock_uncork(int fd, int udp); + +#endif /* CORKING_H */ |