[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [libmicrohttpd] 140/154: Mark function calls which could be
From: |
gnunet |
Subject: |
[GNUnet-SVN] [libmicrohttpd] 140/154: Mark function calls which could be removed as dead code. |
Date: |
Mon, 19 Aug 2019 10:17:32 +0200 |
This is an automated email from the git hooks/post-receive script.
ng0 pushed a commit to branch master
in repository libmicrohttpd.
commit dd81c5f816fe01ad7997cbac02c68fac25218d3e
Author: ng0 <address@hidden>
AuthorDate: Fri Aug 2 09:28:13 2019 +0000
Mark function calls which could be removed as dead code.
---
src/microhttpd/connection.c | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 070fad51..97db6378 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -350,7 +350,7 @@ socket_start_no_buffering_flush (struct MHD_Connection
*connection)
#if defined(TCP_NOPUSH) && !defined(TCP_CORK)
const int dummy = 0;
#endif /* !TCP_CORK */
- res = socket_start_no_buffering (connection);
+ res = socket_start_no_buffering (connection); /* REMOVE: Dead */
#if defined(__FreeBSD__) && __FreeBSD__+0 >= 9
/* FreeBSD do not need zero-send for flushing starting from version 9 */
#elif defined(TCP_NOPUSH) && !defined(TCP_CORK)
@@ -3460,9 +3460,9 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
{
connection->state = MHD_CONNECTION_CONTINUE_SENDING;
if (socket_flush_possible (connection))
- socket_start_extra_buffering (connection);
+ socket_start_extra_buffering (connection); /* REMOVE: Dead */
else
- socket_start_no_buffering (connection);
+ socket_start_no_buffering (connection); /* REMOVE: Dead */
break;
}
@@ -3488,9 +3488,9 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
{
connection->state = MHD_CONNECTION_CONTINUE_SENT;
if (socket_flush_possible (connection))
- socket_start_no_buffering_flush (connection);
+ socket_start_no_buffering_flush (connection); /* REMOVE: Dead
*/
else
- socket_start_normal_buffering (connection);
+ socket_start_normal_buffering (connection); /* REMOVE: Dead */
continue;
}
@@ -3592,9 +3592,9 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
}
connection->state = MHD_CONNECTION_HEADERS_SENDING;
if (socket_flush_possible (connection))
- socket_start_extra_buffering (connection);
+ socket_start_extra_buffering (connection); /* REMOVE: Dead */
else
- socket_start_no_buffering (connection);
+ socket_start_no_buffering (connection); /* REMOVE: Dead */
break;
case MHD_CONNECTION_HEADERS_SENDING:
@@ -3603,12 +3603,12 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
case MHD_CONNECTION_HEADERS_SENT:
/* Some clients may take some actions right after header receive */
if (socket_flush_possible (connection))
- socket_start_no_buffering_flush (connection);
+ socket_start_no_buffering_flush (connection); /* REMOVE: Dead */
#ifdef UPGRADE_SUPPORT
if (NULL != connection->response->upgrade_handler)
{
- socket_start_normal_buffering (connection);
+ socket_start_normal_buffering (connection); /* REMOVE: Dead */
connection->state = MHD_CONNECTION_UPGRADE;
/* This connection is "upgraded". Pass socket to application. */
if (MHD_YES !=
@@ -3631,9 +3631,9 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
}
#endif /* UPGRADE_SUPPORT */
if (socket_flush_possible (connection))
- socket_start_extra_buffering (connection);
+ socket_start_extra_buffering (connection); /* REMOVE: Dead */
else
- socket_start_normal_buffering (connection);
+ socket_start_normal_buffering (connection); /* REMOVE: Dead */
if (connection->have_chunked_upload)
connection->state = MHD_CONNECTION_CHUNKED_BODY_UNREADY;
@@ -3666,7 +3666,7 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
connection->state = MHD_CONNECTION_NORMAL_BODY_READY;
/* Buffering for flushable socket was already enabled*/
if (socket_flush_possible (connection))
- socket_start_no_buffering (connection);
+ socket_start_no_buffering (connection); /* REMOVE: Dead */
break;
}
/* mutex was already unlocked by "try_ready_normal_body */
@@ -3700,7 +3700,7 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
connection->state = MHD_CONNECTION_CHUNKED_BODY_READY;
/* Buffering for flushable socket was already enabled */
if (socket_flush_possible (connection))
- socket_start_no_buffering (connection);
+ socket_start_no_buffering (connection); /* REMOVE: Dead */
continue;
}
/* mutex was already unlocked by try_ready_chunked_body */
@@ -3734,9 +3734,9 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
continue;
}
if (socket_flush_possible (connection))
- socket_start_no_buffering_flush (connection);
+ socket_start_no_buffering_flush (connection); /* REMOVE: Dead */
else
- socket_start_normal_buffering (connection);
+ socket_start_normal_buffering (connection); /* REMOVE: Dead */
MHD_destroy_response (connection->response);
connection->response = NULL;
@@ -3765,7 +3765,7 @@ MHD_connection_handle_idle (struct MHD_Connection
*connection)
{
/* can try to keep-alive */
if (socket_flush_possible (connection))
- socket_start_normal_buffering (connection);
+ socket_start_normal_buffering (connection); /* REMOVE: Dead */
connection->version = NULL;
connection->state = MHD_CONNECTION_INIT;
connection->last = NULL;
--
To stop receiving notification emails like this one, please contact
address@hidden.
- [GNUnet-SVN] [libmicrohttpd] 138/154: mhd_send: fix failure to build, (continued)
- [GNUnet-SVN] [libmicrohttpd] 138/154: mhd_send: fix failure to build, gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 136/154: do it in both tests, gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 139/154: Rename senfile_adapter to MHD_send_sendfile_ and remove duplicate prototype., gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 151/154: mhd_send.c: for now, let EINVAL and EBADF fail hard., gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 152/154: connection.c: remove dead code., gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 154/154: Revert "connection.c: remove dead code.", gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 114/154: writev check, gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 144/154: connection.c: remove dead code, gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 153/154: Revert "mhd_send.c: for now, let EINVAL and EBADF fail hard.", gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 146/154: remove code, gnunet, 2019/08/19
- [GNUnet-SVN] [libmicrohttpd] 140/154: Mark function calls which could be removed as dead code.,
gnunet <=