gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] 134/154: handle TLS case in send_on_connect


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 134/154: handle TLS case in send_on_connectin2
Date: Mon, 19 Aug 2019 10:17:26 +0200

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

ng0 pushed a commit to branch master
in repository libmicrohttpd.

commit 97fd0a6557b98166f9617370e1497d47e80e9a04
Author: Christian Grothoff <address@hidden>
AuthorDate: Thu Aug 1 21:20:56 2019 +0200

    handle TLS case in send_on_connectin2
---
 src/microhttpd/mhd_send.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 36d8afa7..cc9fcf5b 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -348,6 +348,13 @@ MHD_send_on_connection2_ (struct MHD_Connection 
*connection,
                           const char *buffer,
                           size_t buffer_size)
 {
+#ifdef HTTPS_SUPPORT
+  if (0 != (connection->daemon->options & MHD_USE_TLS))
+    return MHD_send_on_connection_ (connection,
+                                    header,
+                                    header_size,
+                                    MHD_SSO_HDR_CORK);
+#endif
 #if defined(HAVE_SENDMSG) || defined(HAVE_WRITEV)
   MHD_socket s = connection->socket_fd;
   ssize_t ret;

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



reply via email to

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