gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r19808 - gnunet/src/transport


From: gnunet
Subject: [GNUnet-SVN] r19808 - gnunet/src/transport
Date: Tue, 14 Feb 2012 15:28:54 +0100

Author: wachs
Date: 2012-02-14 15:28:54 +0100 (Tue, 14 Feb 2012)
New Revision: 19808

Modified:
   gnunet/src/transport/plugin_transport_udp.c
   gnunet/src/transport/transport-testing.c
Log:
- improved logging 


Modified: gnunet/src/transport/plugin_transport_udp.c
===================================================================
--- gnunet/src/transport/plugin_transport_udp.c 2012-02-14 13:32:48 UTC (rev 
19807)
+++ gnunet/src/transport/plugin_transport_udp.c 2012-02-14 14:28:54 UTC (rev 
19808)
@@ -1641,7 +1641,7 @@
     plugin->sockv6 = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_DGRAM, 0);
     if (NULL == plugin->sockv6)
     {
-      GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Disabling IPv6 since it is not 
supported on this system!");
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Disabling IPv6 since it is not 
supported on this system!\n");
       plugin->enable_ipv6 = GNUNET_NO;
     }
     else

Modified: gnunet/src/transport/transport-testing.c
===================================================================
--- gnunet/src/transport/transport-testing.c    2012-02-14 13:32:48 UTC (rev 
19807)
+++ gnunet/src/transport/transport-testing.c    2012-02-14 14:28:54 UTC (rev 
19808)
@@ -104,7 +104,6 @@
   if (p->nc != NULL)
     p->nc (p->cb_cls, peer, ats, ats_count);
 
-#if VERBOSE
   char *p2_s;
 
   if (p2 != NULL)
@@ -115,9 +114,7 @@
                    "Peers %s connected to peer %u (`%s')\n", p2_s, p->no,
                    GNUNET_i2s (&p->id));
   GNUNET_free (p2_s);
-#endif
 
-
   /* Find ConnectingContext */
   struct ConnectingContext *cc = find_connecting_context (p->tth, p, p2);
 
@@ -192,26 +189,15 @@
   GNUNET_assert (GNUNET_OK ==
                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
                                       message, &p->id));
-#if VERBOSE
-  size_t size =
-      GNUNET_HELLO_size ((const struct GNUNET_HELLO_Message *) message);
-#endif
   GNUNET_free_non_null (p->hello);
   p->hello = (struct GNUNET_HELLO_Message *) GNUNET_copy_message (message);
 
-#if VERBOSE
-  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
-                   "New HELLO for peer %u (`%s') with size %u\n", p->no,
-                   GNUNET_i2s (&p->id), size);
-#endif
-
   if (p->start_cb != NULL)
   {
-#if VERBOSE
     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
                      "Peer %u (`%s') successfully started\n", p->no,
                      GNUNET_i2s (&p->id));
-#endif
+
     p->start_cb (p, p->cb_cls);
     p->start_cb = NULL;
   }
@@ -347,7 +333,6 @@
   GNUNET_assert (p->ghh != NULL);
 
   GNUNET_CONTAINER_DLL_insert (tth->p_head, tth->p_tail, p);
-
   return p;
 }
 
@@ -513,6 +498,10 @@
 
   GNUNET_CONTAINER_DLL_remove (tth->p_head, tth->p_tail, p);
 
+  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
+                   "Peer %u (`%s') stopped \n", p->no,
+                   GNUNET_i2s (&p->id));
+
   GNUNET_free (p);
   p = NULL;
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]