diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-09-21 22:03:32 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-09-21 22:03:32 +0200 |
commit | 5251e9ea404f8c461721299d83f3a5d2ebcc7303 (patch) | |
tree | 39ed3acce5a580fb00af0f883c2c2617f529950d | |
parent | 0a4ce8475a97942a8160143247a170c88e96b0c7 (diff) |
do tcp fast open in the exchange httpd
-rw-r--r-- | src/exchange/taler-exchange-httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index c6c3b540c..cd6d7793f 100644 --- a/src/exchange/taler-exchange-httpd.c +++ b/src/exchange/taler-exchange-httpd.c @@ -961,7 +961,7 @@ main (int argc, } mhd - = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_PIPE_FOR_SHUTDOWN | MHD_USE_DEBUG | MHD_USE_DUAL_STACK | MHD_USE_INTERNAL_POLLING_THREAD, + = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_PIPE_FOR_SHUTDOWN | MHD_USE_DEBUG | MHD_USE_DUAL_STACK | MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_TCP_FASTOPEN, (-1 == fh) ? serve_port : 0, NULL, NULL, &handle_mhd_request, NULL, |