aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/plugin_transport_http_server.c')
-rw-r--r--src/transport/plugin_transport_http_server.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_http_server.c b/src/transport/plugin_transport_http_server.c
index fc0c9f3d4..8a7158e03 100644
--- a/src/transport/plugin_transport_http_server.c
+++ b/src/transport/plugin_transport_http_server.c
@@ -642,6 +642,12 @@ server_access_cb (void *cls, struct MHD_Connection *mhd_connection,
642 /* Check if both directions are connected */ 642 /* Check if both directions are connected */
643 if ((sc->session->server_recv == NULL) || (sc->session->server_send == NULL)) 643 if ((sc->session->server_recv == NULL) || (sc->session->server_send == NULL))
644 { 644 {
645#if VERBOSE_SERVER
646 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
647 "Server: Delayed read from `%s' `%s' since not both semi-connections are connected\n",
648 GNUNET_i2s (&s->target),
649 http_plugin_address_to_string (NULL, s->addr, s->addrlen));
650#endif
645 return MHD_YES; 651 return MHD_YES;
646 } 652 }
647 653