gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 134/282: connect: remove some spurious infof() calls


From: gnunet
Subject: [gnurl] 134/282: connect: remove some spurious infof() calls
Date: Wed, 01 Apr 2020 14:29:59 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 1b6cfb9d24cdcb822996bc23e2eb5a4cea73ec4e
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed Feb 19 10:30:23 2020 +0100

    connect: remove some spurious infof() calls
    
    As they were added primarily for debugging, they provide little use for
    users.
    
    Closes #4951
---
 lib/connect.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/lib/connect.c b/lib/connect.c
index 0cfd6886f..0a7475cb6 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -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 */

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]