]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
connect: remove some spurious infof() calls
authorDaniel Stenberg <daniel@haxx.se>
Wed, 19 Feb 2020 09:30:23 +0000 (10:30 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 19 Feb 2020 21:32:45 +0000 (22:32 +0100)
As they were added primarily for debugging, they provide little use for
users.

Closes #4951

lib/connect.c

index 0cfd6886f49f53d8460085de204c6f1bf6568f99..0a7475cb6a4369ce0a9645286ce889a807a40a8c 100644 (file)
@@ -757,9 +757,6 @@ static CURLcode connect_SOCKS(struct connectdata *conn, int sockindex,
 {
   CURLcode result = CURLE_OK;
 
-  infof(conn->data, "connect_SOCKS is called [socks state %d]\n",
-        conn->cnnct.state);
-
   if(conn->bits.socksproxy) {
 #ifndef CURL_DISABLE_PROXY
     /* for the secondary socket (FTP), use the "connect to host"
@@ -1034,8 +1031,6 @@ static void tcpnodelay(struct connectdata *conn, curl_socket_t sockfd)
                 sizeof(onoff)) < 0)
     infof(data, "Could not set TCP_NODELAY: %s\n",
           Curl_strerror(SOCKERRNO, buffer, sizeof(buffer)));
-  else
-    infof(data, "TCP_NODELAY set\n");
 #else
   (void)conn;
   (void)sockfd;
@@ -1243,8 +1238,6 @@ static CURLcode singleipconnect(struct connectdata *conn,
       if(setsockopt(sockfd, IPPROTO_TCP, TCP_FASTOPEN_CONNECT,
                     (void *)&optval, sizeof(optval)) < 0)
         infof(data, "Failed to enable TCP Fast Open on fd %d\n", sockfd);
-      else
-        infof(data, "TCP_FASTOPEN_CONNECT set\n");
 
       rc = connect(sockfd, &addr.sa_addr, addr.addrlen);
 #elif defined(MSG_FASTOPEN) /* old Linux */