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 /svr-main.c | |
parent | 0e1dee828a80ad043d1122eb30931cba00ea7267 (diff) |
separate client/server fastopen options
Diffstat (limited to 'svr-main.c')
-rw-r--r-- | svr-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -429,7 +429,7 @@ static size_t listensockets(int *socks, size_t sockcount, int *maxfd) { for (n = 0; n < (unsigned int)nsock; n++) { int sock = socks[sockpos + n]; set_sock_priority(sock, DROPBEAR_PRIO_LOWDELAY); -#ifdef DROPBEAR_TCP_FAST_OPEN +#ifdef DROPBEAR_SERVER_TCP_FAST_OPEN set_listen_fast_open(sock); #endif } |