tcp_fastopen.c 169 字节
Newer Older
Y
Yuchung Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11
#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);