gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] 05/154: mhd_send: remove unnecessary commen


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 05/154: mhd_send: remove unnecessary comments.
Date: Mon, 19 Aug 2019 10:15:17 +0200

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

ng0 pushed a commit to branch master
in repository libmicrohttpd.

commit b474adda0898c01194ed47c5d90b5caed99f7bf6
Author: ng0 <address@hidden>
AuthorDate: Mon Jun 17 17:13:10 2019 +0000

    mhd_send: remove unnecessary comments.
---
 src/microhttpd/mhd_send.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 1031426d..1394aa70 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -288,7 +288,6 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection,
   // -- </pseudo>
 #ifdef WRITEV
   int iovcnt;
-  // TODO: iovec/writev needs no alloc, but consider looking into mmap?
   struct iovec vector[2];
   vector[0].iov_base = header;
   vector[0].iov_len = strlen (header);
@@ -298,8 +297,7 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection,
   int i = writev (s, vector, iovcnt);
   fprintf (stdout, "i=%d, errno=%d\n", i, errno);
 #else
-  // wait for phonecall clearing this up?
-  // COMMENTARY: not available, send a combination of header + buffer.
+  // not available, send a combination of header + buffer.
   size_t concatsize = header_size + buffer_size;
   const char *concatbuffer;
   concatbuffer = header + buffer;

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



reply via email to

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