aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/plugin_transport_https.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_https.c b/src/transport/plugin_transport_https.c
index aa4adbf92..fc548868d 100644
--- a/src/transport/plugin_transport_https.c
+++ b/src/transport/plugin_transport_https.c
@@ -42,7 +42,7 @@
42#include <curl/curl.h> 42#include <curl/curl.h>
43 43
44#define DEBUG_HTTPS GNUNET_NO 44#define DEBUG_HTTPS GNUNET_NO
45#define VERBOSE GNUNET_YES 45#define VERBOSE GNUNET_NO
46#define DEBUG_CURL GNUNET_NO 46#define DEBUG_CURL GNUNET_NO
47#define DEBUG_CONNECTIONS GNUNET_NO 47#define DEBUG_CONNECTIONS GNUNET_NO
48#define DEBUG_SESSION_SELECTION GNUNET_NO 48#define DEBUG_SESSION_SELECTION GNUNET_NO
@@ -1310,7 +1310,9 @@ static size_t curl_send_cb(void *stream, size_t size, size_t nmemb, void *ptr)
1310 1310
1311 if ( msg->pos == msg->size) 1311 if ( msg->pos == msg->size)
1312 { 1312 {
1313#if DEBUG_HTTPS
1313 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: Message with %u bytes sent, removing message from queue \n",ps, msg->pos); 1314 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: Message with %u bytes sent, removing message from queue \n",ps, msg->pos);
1315#endif
1314 /* Calling transmit continuation */ 1316 /* Calling transmit continuation */
1315 if (NULL != msg->transmit_cont) 1317 if (NULL != msg->transmit_cont)
1316 msg->transmit_cont (msg->transmit_cont_cls,&(ps->peercontext)->identity,GNUNET_OK); 1318 msg->transmit_cont (msg->transmit_cont_cls,&(ps->peercontext)->identity,GNUNET_OK);