mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 15:11:50 +00:00
12 lines
169 B
C
12 lines
169 B
C
|
#include <linux/init.h>
|
||
|
#include <linux/kernel.h>
|
||
|
|
||
|
int sysctl_tcp_fastopen;
|
||
|
|
||
|
static int __init tcp_fastopen_init(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
late_initcall(tcp_fastopen_init);
|