Browse Source

fix fast_open option on server

pull/70/head
clowwindy 11 years ago
parent
commit
bf5d8a7740
1 changed files with 3 additions and 0 deletions
  1. 3
      src/server.c

3
src/server.c

@ -1012,6 +1012,9 @@ int main (int argc, char **argv)
if (password == NULL) password = conf->password;
if (method == NULL) method = conf->method;
if (timeout == NULL) timeout = conf->timeout;
#ifdef TCP_FASTOPEN
if (fast_open == 0) fast_open = conf->fast_open;
#endif
}
if (server_num == 0 || server_port == NULL || password == NULL)

Loading…
Cancel
Save