From 748cbd5009e7882d74f4e45467885ec9dde55cac Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Fri, 30 Jul 2010 12:37:33 +0000 Subject: --- src/transport/plugin_transport_https.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/transport/plugin_transport_https.c b/src/transport/plugin_transport_https.c index 6f9fcc814..11a9c9fe8 100644 --- a/src/transport/plugin_transport_https.c +++ b/src/transport/plugin_transport_https.c @@ -43,7 +43,7 @@ #define DEBUG_HTTPS GNUNET_YES #define VERBOSE GNUNET_YES -#define DEBUG_CURL GNUNET_NO +#define DEBUG_CURL GNUNET_YES #define DEBUG_CONNECTIONS GNUNET_YES #define DEBUG_SESSION_SELECTION GNUNET_YES @@ -2615,19 +2615,19 @@ libgnunet_plugin_transport_https_init (void *cls) if (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK) { #if DEBUG_HTTPS - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv4 bound to %s with port %u\n",(plugin->bind_hostname!=NULL) ? plugin->bind_hostname : "every address",port); + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting HTTPS Server with IPv4 bound to %s with port %u\n",(plugin->bind_hostname!=NULL) ? plugin->bind_hostname : "every address",port); #endif } else if ((plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK) && (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)) { #if DEBUG_HTTPS - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv6 bound to %s with port %u\n",(plugin->bind_hostname!=NULL) ? plugin->bind_hostname : "every address", port); + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting HTTPS Server with IPv6 bound to %s with port %u\n",(plugin->bind_hostname!=NULL) ? plugin->bind_hostname : "every address", port); #endif } else if ((plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK) && (plugin->http_server_task_v4 == GNUNET_SCHEDULER_NO_TASK)) { #if DEBUG_HTTPS - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv4 and IPv6 bound to %s with port %u\n",(plugin->bind_hostname!=NULL) ? plugin->bind_hostname : "every address", port); + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting HTTPS Server with IPv4 and IPv6 bound to %s with port %u\n",(plugin->bind_hostname!=NULL) ? plugin->bind_hostname : "every address", port); #endif } else -- cgit v1.2.3