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.
19 lines
329 B
C
19 lines
329 B
C
10 years ago
|
#include "socket.h"
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <netinet/tcp.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int socket_fastopen(int s) {
|
||
|
#ifdef TCP_FASTOPEN
|
||
|
return setsockopt(s,SOL_TCP,TCP_FASTOPEN,(int[]){ 5 }, sizeof(int));
|
||
|
#else
|
||
|
#ifdef ENOPROTOOPT
|
||
|
errno=ENOPROTOOPT;
|
||
|
#else
|
||
|
errno=ENOSYS;
|
||
|
#endif
|
||
|
return -1;
|
||
|
#endif
|
||
|
}
|