aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2010-07-30 12:37:33 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2010-07-30 12:37:33 +0000
commit748cbd5009e7882d74f4e45467885ec9dde55cac (patch)
tree23bc3ed0ce0b94d1d4c556d963ad35ad32edb540 /src
parent8a36b7889e3ff4b9b62d2863c90ab6481be83f65 (diff)
downloadgnunet-748cbd5009e7882d74f4e45467885ec9dde55cac.tar.gz
gnunet-748cbd5009e7882d74f4e45467885ec9dde55cac.zip
Diffstat (limited to 'src')
-rw-r--r--src/transport/plugin_transport_https.c8
1 files changed, 4 insertions, 4 deletions
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 @@
43 43
44#define DEBUG_HTTPS GNUNET_YES 44#define DEBUG_HTTPS GNUNET_YES
45#define VERBOSE GNUNET_YES 45#define VERBOSE GNUNET_YES
46#define DEBUG_CURL GNUNET_NO 46#define DEBUG_CURL GNUNET_YES
47#define DEBUG_CONNECTIONS GNUNET_YES 47#define DEBUG_CONNECTIONS GNUNET_YES
48#define DEBUG_SESSION_SELECTION GNUNET_YES 48#define DEBUG_SESSION_SELECTION GNUNET_YES
49 49
@@ -2615,19 +2615,19 @@ libgnunet_plugin_transport_https_init (void *cls)
2615 if (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK) 2615 if (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)
2616 { 2616 {
2617#if DEBUG_HTTPS 2617#if DEBUG_HTTPS
2618 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); 2618 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);
2619#endif 2619#endif
2620 } 2620 }
2621 else if ((plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK) && (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)) 2621 else if ((plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK) && (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK))
2622 { 2622 {
2623#if DEBUG_HTTPS 2623#if DEBUG_HTTPS
2624 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); 2624 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);
2625#endif 2625#endif
2626 } 2626 }
2627 else if ((plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK) && (plugin->http_server_task_v4 == GNUNET_SCHEDULER_NO_TASK)) 2627 else if ((plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK) && (plugin->http_server_task_v4 == GNUNET_SCHEDULER_NO_TASK))
2628 { 2628 {
2629#if DEBUG_HTTPS 2629#if DEBUG_HTTPS
2630 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); 2630 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);
2631#endif 2631#endif
2632 } 2632 }
2633 else 2633 else