anastasis_api_curl_defaults.c (1767B)
1 /* 2 This file is part of Anastasis 3 Copyright (C) 2014-2019 Anastasis SARL 4 5 Anastasis is free software; you can redistribute it and/or modify it under the 6 terms of the GNU General Public License as published by the Free Software 7 Foundation; either version 3, or (at your option) any later version. 8 9 Anastasis is distributed in the hope that it will be useful, but WITHOUT ANY 10 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 11 A PARTICULAR PURPOSE. See the GNU General Public License for more details. 12 13 You should have received a copy of the GNU General Public License along with 14 Anastasis; see the file COPYING. If not, see 15 <http://www.gnu.org/licenses/> 16 */ 17 /** 18 * @file restclient/anastasis_api_curl_defaults.c 19 * @brief curl easy handle defaults 20 * @author Florian Dold 21 */ 22 #include "platform.h" 23 #include <taler/taler_curl_lib.h> 24 #include "anastasis_api_curl_defaults.h" 25 26 CURL * 27 ANASTASIS_curl_easy_get_ (const char *url) 28 { 29 CURL *eh; 30 31 eh = curl_easy_init (); 32 if (NULL == eh) 33 return NULL; 34 GNUNET_assert (CURLE_OK == 35 curl_easy_setopt (eh, 36 CURLOPT_URL, 37 url)); 38 TALER_curl_set_secure_redirect_policy (eh, 39 url); 40 GNUNET_assert (CURLE_OK == 41 curl_easy_setopt (eh, 42 CURLOPT_TCP_FASTOPEN, 43 1L)); 44 /* Enable compression (using whatever curl likes), see 45 https://curl.se/libcurl/c/CURLOPT_ACCEPT_ENCODING.html */ 46 GNUNET_break (CURLE_OK == 47 curl_easy_setopt (eh, 48 CURLOPT_ACCEPT_ENCODING, 49 "")); 50 return eh; 51 }