gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] 30/154: comments


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 30/154: comments
Date: Mon, 19 Aug 2019 10:15:42 +0200

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

ng0 pushed a commit to branch master
in repository libmicrohttpd.

commit 61b84b6afc18961f244cf648040d07aaf36cdc62
Author: ng0 <address@hidden>
AuthorDate: Fri Jul 19 18:01:51 2019 +0000

    comments
---
 src/microhttpd/mhd_send.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index cd5b9ad5..5e529646 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -185,7 +185,6 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
   {
     if (! have_cork && want_cork)
     {
-      // setsockopt (nodelay-off);
       setsockopt (connection->socket_fd,
                   IPPROTO_TCP,
                   TCP_NODELAY,
@@ -193,7 +192,6 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
                   sizeof (off_val));
       connection->sk_tcp_nodelay_on = false;
     }
-    // ...
   }
 #endif
 
@@ -299,7 +297,6 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
   {
     if (have_cork && ! want_cork)
     {
-      // setsockopt (nodelay - on);
       if (0 == setsockopt (connection->socket_fd,
                            IPPROTO_TCP,
                            TCP_NODELAY,
@@ -309,7 +306,6 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
         connection->sk_tcp_nodelay_on = true;
       }
     }
-    // ...
   }
 #endif
 
@@ -362,7 +358,6 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection,
   {
     if (! have_cork && want_cork)
     {
-      // setsockopt (nodelay-off);
       if (0 == setsockopt (connection->socket_fd,
                            IPPROTO_TCP,
                            TCP_NODELAY,
@@ -371,7 +366,6 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection,
         connection->sk_tcp_nodelay = false;
       }
     }
-    // ...
   }
 #endif
 

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



reply via email to

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