diff dbutil.h @ 1023:a00303a7d247 fastopen

tcp fastopen for the server
author Matt Johnston <matt@ucc.asn.au>
date Sun, 15 Feb 2015 22:34:05 +0800
parents 4121ca987e6a
children aac0095dc3b4
line wrap: on
line diff
--- a/dbutil.h	Sat Feb 14 09:56:11 2015 +0800
+++ b/dbutil.h	Sun Feb 15 22:34:05 2015 +0800
@@ -75,6 +75,12 @@
 		char **ret_host, char **ret_port, int host_lookup);
 void set_sock_nodelay(int sock);
 void set_sock_priority(int sock, enum dropbear_prio prio);
+
+#ifdef __linux__
+#define DROPBEAR_TCP_FAST_OPEN
+void set_listen_fast_open(int sock);
+#endif
+
 int dropbear_listen(const char* address, const char* port,
 		int *socks, unsigned int sockcount, char **errstring, int *maxfd);
 int spawn_command(void(*exec_fn)(void *user_data), void *exec_data,