gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] 19/154: adjust


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

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

ng0 pushed a commit to branch master
in repository libmicrohttpd.

commit 8edc3b919cebc8291f1f22916e7d9e831672d313
Author: ng0 <address@hidden>
AuthorDate: Thu Jul 11 15:53:53 2019 +0000

    adjust
---
 src/microhttpd/mhd_send.c | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 1cbe2d96..de228676 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -202,6 +202,22 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
   ret = send (connection->socket_fd, buffer, buffer_size, 0);
 #endif
 
+  /*
+  // pseudo-code for gnutls corking
+  if (have_more_data && !corked)
+    gnutls_record_cork(connection->tls_session);
+  if (!have_more_data && corked)
+    gnutls_record_uncork(connection->tls_session);
+  */
+
+  /* for TLS*/
+  /*
+  if (0 != (daemon->options & MHD_USE_TLS))
+    TLS;
+  else
+    no-TLS;
+  */
+
   // shouldn't we return 0 or -1? Why re-use the _ERR_ functions?
   // error handling from send_param_adapter():
   if (0 > ret)
@@ -222,7 +238,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
     return MHD_ERR_NOTCONN_;
   }
 #if EPOLL_SUPPORT
-  else if (i > (size_t) ret)
+  else if (buffer_size > (size_t) ret)
     connection->epoll_state &= ~MHD_EPOLL_STATE_WRITE_READY;
 #endif /* EPOLL_SUPPORT */
     //  return ret; // should be return at the end of the function?

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



reply via email to

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