gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] 34/154: Use s in setsockopt()


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 34/154: Use s in setsockopt()
Date: Mon, 19 Aug 2019 10:15:46 +0200

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

ng0 pushed a commit to branch master
in repository libmicrohttpd.

commit d7a3f8260761e16928f5a58cd9e83085bb69aa15
Author: ng0 <address@hidden>
AuthorDate: Fri Jul 19 21:36:12 2019 +0000

    Use s in setsockopt()
---
 src/microhttpd/mhd_send.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 36007929..656a3f14 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -132,7 +132,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
 #if TCP_CORK
   if ((use_corknopush) && (have_cork && ! want_cork))
     {
-      if (0 == setsockopt (connection->socket_fd,
+      if (0 == setsockopt (s,
                            IPPROTO_TCP,
                            TCP_CORK,
                            (const void *) &off_val,
@@ -140,7 +140,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
       {
         connection->sk_tcp_nodelay = true;
       }
-      else if (0 == setsockopt (connection->socket_fd,
+      else if (0 == setsockopt (s,
                                 IPPROTO_TCP,
                                 TCP_NODELAY,
                                 (const void *) &on_val,
@@ -158,7 +158,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
    * exist and we can disregard TCP_NODELAY unless requested. */
   if ((use_corknopush) && (have_cork && ! want_cork))
     {
-      if (0 == setsockopt (connection->socket_fd,
+      if (0 == setsockopt (s,
                            IPPROTO_TCP,
                            TCP_NOPUSH,
                            (const void *) &on_val,
@@ -171,7 +171,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
 #if TCP_NODELAY
   if ((! use_corknopush) && (! have_cork && want_cork))
     {
-      if (0 == setsockopt (connection->socket_fd,
+      if (0 == setsockopt (s,
                            IPPROTO_TCP,
                            TCP_NODELAY,
                            (const void *) &off_val,
@@ -217,7 +217,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
   {
     /* plaintext transmission */
 #if MSG_MORE
-    ret = send (connection->socket_fd,
+    ret = send (s,
                 buffer,
                 buffer_size,
                 (want_cork ? MSG_MORE : 0));
@@ -254,7 +254,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
   {
     if (! have_cork && want_cork && ! have_more)
     {
-      if (0 == setsockopt (connection->socket_fd,
+      if (0 == setsockopt (s,
                            IPPROTO_TCP,
                            TCP_CORK,
                            (const void *) &on_val,
@@ -262,7 +262,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
       {
         connection->sk_tcp_nodelay_on = false;
       }
-      else if (0 == setsockopt (connection->socket_fd,
+      else if (0 == setsockopt (s,
                                 IPPROTO_TCP,
                                 TCP_NODELAY,
                                 (const void *) &off_val,
@@ -285,7 +285,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
   {
     if (have_cork && ! want_cork)
     {
-      if (0 == setsockopt (connection->socket_fd,
+      if (0 == setsockopt (s,
                            IPPROTO_TCP,
                            TCP_NODELAY,
                            (const void *) &on_val,
@@ -346,7 +346,7 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection,
   {
     if (! have_cork && want_cork)
     {
-      if (0 == setsockopt (connection->socket_fd,
+      if (0 == setsockopt (s,
                            IPPROTO_TCP,
                            TCP_NODELAY,
                            (const void *) &off_val,
@@ -371,7 +371,7 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection,
     if ((ret == header_len + buffer_len) && have_cork)
     {
       // response complete, definitely uncork!
-      setsockopt (connection->socket_fd,
+      setsockopt (s,
                   IPPROTO_TCP,
                   TCP_CORK,
                   (const void *) &off_val,

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



reply via email to

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