exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit bdd9ef74e6c90381057ca3f1ece095663e21e59a
parent c1a75b5b98a99e5d1b02a4bd17f76daf7d67d629
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 14 Dec 2018 09:41:53 +0100

fastoption may not be supported by all curls

Diffstat:
Msrc/exchange-lib/curl_defaults.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/exchange-lib/curl_defaults.c b/src/exchange-lib/curl_defaults.c @@ -44,11 +44,12 @@ TEL_curl_easy_get (const char *url) curl_easy_setopt (eh, CURLOPT_ENCODING, "deflate")); +#ifdef CURLOPT_TCP_FASTOPEN GNUNET_assert (CURLE_OK == curl_easy_setopt (eh, CURLOPT_TCP_FASTOPEN, 1L)); - +#endif { /* Unfortunately libcurl needs chunk to be alive until after curl_easy_perform. To avoid manual cleanup, we keep