]> granicus.if.org Git - curl/commitdiff
curl: remove keepalive #ifdef checks done on libcurl's behalf
authorDaniel Stenberg <daniel@haxx.se>
Thu, 3 Dec 2015 08:53:53 +0000 (09:53 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 3 Dec 2015 08:55:00 +0000 (09:55 +0100)
They didn't match the ifdef logic used within libcurl anyway so they
could indeed warn for the wrong case - plus the tool cannot know how the
lib actually performs at that level.

src/tool_operate.c

index 66ab0fabb31b36981b70884fa0539c219496464b..d5177d92b58016cff33589a30aefcd9ba21d8ef1 100644 (file)
@@ -1262,10 +1262,6 @@ static CURLcode operate_do(struct GlobalConfig *global,
         if(!config->nokeepalive) {
           my_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L);
           if(config->alivetime != 0) {
-#if !defined(TCP_KEEPIDLE) || !defined(TCP_KEEPINTVL)
-            warnf(config->global, "Keep-alive functionality somewhat crippled "
-                "due to missing support in your operating system!\n");
-#endif
             my_setopt(curl, CURLOPT_TCP_KEEPIDLE, config->alivetime);
             my_setopt(curl, CURLOPT_TCP_KEEPINTVL, config->alivetime);
           }