blob: b24059576203ca13adcf00817a23a7c4263b1a0a (
plain)
1
2
3
4
5
6
7
8
9
10
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 */
|