diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-06-04 00:24:37 +0200 |
---|---|---|
committer | Daniel Borkmann <dborkman@redhat.com> | 2013-06-04 00:24:37 +0200 |
commit | 1c0df00bdead4a02df12d610401dd34f7ea59a01 (patch) | |
tree | 4a1f69a3c551bd6a117923961e4d354ed48e5643 /corking.h | |
parent | 380b3ae23e93cf21cdb194a8e599f64ff40988a7 (diff) |
corking: break out udp/tcp cork functions
No, it's not about whine bottles ... move udp and tcp cork functions
out of xutils.c, so that we can further let it shrink.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
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 */ |