dissector: proto_80211_mac_hdr: Fix compiler warnings
[netsniff-ng.git] / corking.h
blobfb4483cbea5fe9faa70276523a3797a1bcfa3d11
1 #ifndef CORKING_H
2 #define CORKING_H
4 #include <stdbool.h>
6 extern void set_tcp_cork(int fd);
7 extern void set_tcp_uncork(int fd);
8 extern void set_udp_cork(int fd);
9 extern void set_udp_uncork(int fd);
10 extern void set_sock_cork(int fd, bool is_udp);
11 extern void set_sock_uncork(int fd, bool is_udp);
13 #endif /* CORKING_H */