gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] 72/154: first attempt to add MHD_send_on_co


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 72/154: first attempt to add MHD_send_on_connection2_
Date: Mon, 19 Aug 2019 10:16:24 +0200

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

ng0 pushed a commit to branch master
in repository libmicrohttpd.

commit 51cfb23f17b55708fb569b46df90914e70b5a077
Author: ng0 <address@hidden>
AuthorDate: Wed Jul 24 15:05:51 2019 +0000

    first attempt to add MHD_send_on_connection2_
---
 src/microhttpd/connection.c | 34 ++++++++++++++++++++--------------
 1 file changed, 20 insertions(+), 14 deletions(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 3275a3d5..b09425b4 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3408,20 +3408,26 @@ MHD_connection_handle_write (struct MHD_Connection 
*connection)
       mhd_assert (0);
       return;
     case MHD_CONNECTION_HEADERS_SENDING:
-      /* TODO: Maybe use MHD_send_on_connection2_()?  */
-      /*
-      ret = MHD_send_on_connection2_ (struct MHD_Connection *connection,
-                                      const char *header,
-                                      size_t header_size,
-                                      const char *buffer,
-                                      size_t buffer_size);
-      */
-      ret = MHD_send_on_connection_ (connection,
-                                     &connection->write_buffer
-                                     [connection->write_buffer_send_offset],
-                                     connection->write_buffer_append_offset -
-                                     connection->write_buffer_send_offset,
-                                     MHD_SSO_MAY_CORK);
+      /* if the response body is not available, we use 
MHD_send_on_connection_() */
+      if (sizeof(connection->response->data) <= 1024) /* bad magic number */
+        {
+          ret = MHD_send_on_connection_ (connection,
+                                         &connection->write_buffer
+                                         
[connection->write_buffer_send_offset],
+                                         
connection->write_buffer_append_offset -
+                                         connection->write_buffer_send_offset,
+                                         MHD_SSO_MAY_CORK);
+        }
+      else
+        {
+            ret = MHD_send_on_connection2_ (connection,
+                                            &connection->write_buffer
+                                            
[connection->write_buffer_send_offset],
+                                            
connection->write_buffer_append_offset -
+                                            
connection->write_buffer_send_offset,
+                                            response_body,
+                                            response_size);
+        }
 
       if (ret < 0)
         {

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



reply via email to

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