gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r35311 - gnunet/src/transport
Date: Sat, 28 Feb 2015 17:04:02 +0100

Author: grothoff
Date: 2015-02-28 17:04:01 +0100 (Sat, 28 Feb 2015)
New Revision: 35311

Modified:
   gnunet/src/transport/gnunet-service-transport_neighbours.c
Log:
-shorten stats labels

Modified: gnunet/src/transport/gnunet-service-transport_neighbours.c
===================================================================
--- gnunet/src/transport/gnunet-service-transport_neighbours.c  2015-02-28 
16:00:44 UTC (rev 35310)
+++ gnunet/src/transport/gnunet-service-transport_neighbours.c  2015-02-28 
16:04:01 UTC (rev 35311)
@@ -1514,7 +1514,7 @@
   if (NULL == (n = lookup_neighbour (neighbour)))
   {
     GNUNET_STATISTICS_update (GST_stats,
-                              gettext_noop ("# KEEPALIVE_RESPONSE messages 
discarded (not connected)"),
+                              gettext_noop ("# KEEPALIVE_RESPONSEs discarded 
(not connected)"),
                               1,
                               GNUNET_NO);
     return;
@@ -1523,7 +1523,7 @@
        (GNUNET_YES != n->expect_latency_response) )
   {
     GNUNET_STATISTICS_update (GST_stats,
-                              gettext_noop ("# KEEPALIVE_RESPONSE messages 
discarded (not expected)"),
+                              gettext_noop ("# KEEPALIVE_RESPONSEs discarded 
(not expected)"),
                               1,
                               GNUNET_NO);
     return;
@@ -1531,7 +1531,7 @@
   if (NULL == n->primary_address.address)
   {
     GNUNET_STATISTICS_update (GST_stats,
-                              gettext_noop ("# KEEPALIVE_RESPONSE messages 
discarded (address changed)"),
+                              gettext_noop ("# KEEPALIVE_RESPONSEs discarded 
(address changed)"),
                               1,
                               GNUNET_NO);
     return;
@@ -1540,18 +1540,18 @@
   {
     if (0 == n->primary_address.keep_alive_nonce)
       GNUNET_STATISTICS_update (GST_stats,
-                                gettext_noop ("# KEEPALIVE_RESPONSE messages 
discarded (no nonce)"),
+                                gettext_noop ("# KEEPALIVE_RESPONSEs discarded 
(no nonce)"),
                                 1,
                                 GNUNET_NO);
     else
       GNUNET_STATISTICS_update (GST_stats,
-                                gettext_noop ("# KEEPALIVE_RESPONSE messages 
discarded (wrong nonce)"),
+                                gettext_noop ("# KEEPALIVE_RESPONSEs discarded 
(bad nonce)"),
                                 1,
                                 GNUNET_NO);
     return;
   }
   GNUNET_STATISTICS_update (GST_stats,
-                            gettext_noop ("# KEEPALIVE_RESPONSE messages 
received in good order"),
+                            gettext_noop ("# KEEPALIVE_RESPONSEs received 
(OK)"),
                             1,
                             GNUNET_NO);
 




reply via email to

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