aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-12-18 15:26:34 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-12-18 15:26:34 +0000
commit86cc996b969e9de27e00e7e7794c2381c93e9665 (patch)
treecaef0b6e0d20c1d218f289fceba43977a7616197
parent4d80dc1d5536ad26d19c69d920dcffe84d93cf07 (diff)
downloadgnunet-86cc996b969e9de27e00e7e7794c2381c93e9665.tar.gz
gnunet-86cc996b969e9de27e00e7e7794c2381c93e9665.zip
disable debugging messages
-rw-r--r--src/transport/gnunet-service-transport_neighbours.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.c b/src/transport/gnunet-service-transport_neighbours.c
index e7e84506f..3dd00015a 100644
--- a/src/transport/gnunet-service-transport_neighbours.c
+++ b/src/transport/gnunet-service-transport_neighbours.c
@@ -1338,8 +1338,8 @@ send_keepalive (struct NeighbourMapEntry *n)
1338 while (0 == nonce) 1338 while (0 == nonce)
1339 nonce = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX); 1339 nonce = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
1340 1340
1341 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1341 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1342 "Sending keep alive response to peer `%s' with nonce %u\n", 1342 "Sending keep alive to peer `%s' with nonce %u\n",
1343 GNUNET_i2s (&n->id), nonce); 1343 GNUNET_i2s (&n->id), nonce);
1344 1344
1345 m.header.size = htons (sizeof (struct SessionKeepAliveMessage)); 1345 m.header.size = htons (sizeof (struct SessionKeepAliveMessage));
@@ -1397,7 +1397,7 @@ GST_neighbours_keepalive (const struct GNUNET_PeerIdentity *neighbour,
1397 return; 1397 return;
1398 } 1398 }
1399 1399
1400 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1400 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1401 "Received keep alive request from peer `%s' with nonce %u\n", 1401 "Received keep alive request from peer `%s' with nonce %u\n",
1402 GNUNET_i2s (&n->id), ntohl (msg_in->nonce)); 1402 GNUNET_i2s (&n->id), ntohl (msg_in->nonce));
1403 1403
@@ -1470,7 +1470,7 @@ GST_neighbours_keepalive_response (const struct GNUNET_PeerIdentity *neighbour,
1470 } 1470 }
1471 else 1471 else
1472 { 1472 {
1473 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1473 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1474 "Received keep alive response from peer `%s' for session %p\n", 1474 "Received keep alive response from peer `%s' for session %p\n",
1475 GNUNET_i2s (&n->id), n->primary_address.session); 1475 GNUNET_i2s (&n->id), n->primary_address.session);
1476 1476
@@ -1479,7 +1479,7 @@ GST_neighbours_keepalive_response (const struct GNUNET_PeerIdentity *neighbour,
1479 /* Update session timeout here */ 1479 /* Update session timeout here */
1480 if (NULL != (papi = GST_plugins_find (n->primary_address.address->transport_name))) 1480 if (NULL != (papi = GST_plugins_find (n->primary_address.address->transport_name)))
1481 { 1481 {
1482 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1482 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1483 "Updating session for peer `%s' for session %p\n", 1483 "Updating session for peer `%s' for session %p\n",
1484 GNUNET_i2s (&n->id), n->primary_address.session); 1484 GNUNET_i2s (&n->id), n->primary_address.session);
1485 papi->update_session_timeout (papi->cls, &n->id, n->primary_address.session); 1485 papi->update_session_timeout (papi->cls, &n->id, n->primary_address.session);