diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-05-29 23:19:11 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-05-29 23:19:11 +0800 |
commit | 2a431cab0358debfbffec28f0ed3fb2ac3c3a1b4 (patch) | |
tree | 160ca8ff535832057fb739fa31841c17cad9d461 /sysoptions.h | |
parent | 0e1dee828a80ad043d1122eb30931cba00ea7267 (diff) |
separate client/server fastopen options
Diffstat (limited to 'sysoptions.h')
-rw-r--r-- | sysoptions.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sysoptions.h b/sysoptions.h index 11dc10d..185c8e6 100644 --- a/sysoptions.h +++ b/sysoptions.h @@ -262,9 +262,12 @@ /* Use this string since some implementations might special-case it */ #define DROPBEAR_KEEPALIVE_STRING "keepalive@openssh.com" -/* Linux will attempt TCP fast open, falling back if not supported by the kernel */ +/* Linux will attempt TCP fast open, falling back if not supported by the kernel. + * Currently server is enabled but client is disabled by default until there + * is further compatibility testing */ #ifdef __linux__ -#define DROPBEAR_TCP_FAST_OPEN 1 +#define DROPBEAR_SERVER_TCP_FAST_OPEN +/* #define DROPBEAR_CLIENT_TCP_FAST_OPEN */ #endif /* no include guard for this file */ |