gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r30021 - gnunet/src/mesh


From: gnunet
Subject: [GNUnet-SVN] r30021 - gnunet/src/mesh
Date: Wed, 9 Oct 2013 03:08:49 +0200

Author: bartpolot
Date: 2013-10-09 03:08:49 +0200 (Wed, 09 Oct 2013)
New Revision: 30021

Modified:
   gnunet/src/mesh/gnunet-service-mesh_connection.c
   gnunet/src/mesh/gnunet-service-mesh_connection.h
Log:
- cleanup


Modified: gnunet/src/mesh/gnunet-service-mesh_connection.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_connection.c    2013-10-09 01:06:44 UTC 
(rev 30020)
+++ gnunet/src/mesh/gnunet-service-mesh_connection.c    2013-10-09 01:08:49 UTC 
(rev 30021)
@@ -471,10 +471,10 @@
 {
   LOG (GNUNET_ERROR_TYPE_DEBUG,
               "Connection %s state was %s\n",
-              GNUNET_h2s (&c->id), GNUNET_MESH_DEBUG_CS2S (c->state));
+              GNUNET_h2s (&c->id), GMC_state2s (c->state));
   LOG (GNUNET_ERROR_TYPE_DEBUG,
               "Connection %s state is now %s\n",
-              GNUNET_h2s (&c->id), GNUNET_MESH_DEBUG_CS2S (state));
+              GNUNET_h2s (&c->id), GMC_state2s (state));
   c->state = state;
 }
 
@@ -1831,13 +1831,6 @@
   GNUNET_free (c);
 }
 
-struct MeshConnection *
-GMC_next (struct MeshConnection *c)
-{
-  return c->next;
-}
-
-
 /**
  * Get the connection ID.
  *

Modified: gnunet/src/mesh/gnunet-service-mesh_connection.h
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_connection.h    2013-10-09 01:06:44 UTC 
(rev 30020)
+++ gnunet/src/mesh/gnunet-service-mesh_connection.h    2013-10-09 01:08:49 UTC 
(rev 30021)
@@ -243,9 +243,6 @@
 void
 GMC_destroy (struct MeshConnection *c);
 
-struct MeshConnection *
-GMC_next (struct MeshConnection *c);
-
 /**
  * Get the connection ID.
  *




reply via email to

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