gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r17986 - gnunet/src/mesh
Date: Fri, 4 Nov 2011 14:32:56 +0100

Author: bartpolot
Date: 2011-11-04 14:32:56 +0100 (Fri, 04 Nov 2011)
New Revision: 17986

Modified:
   gnunet/src/mesh/gnunet-service-mesh.c
Log:
Renamed functions

Modified: gnunet/src/mesh/gnunet-service-mesh.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh.c       2011-11-04 13:32:45 UTC (rev 
17985)
+++ gnunet/src/mesh/gnunet-service-mesh.c       2011-11-04 13:32:56 UTC (rev 
17986)
@@ -1442,7 +1442,7 @@
  * TODO: optimize (see below)
  */
 static void
-path_remove_from_peer (struct MeshPeerInfo *peer,
+peer_info_remove_path (struct MeshPeerInfo *peer,
                        GNUNET_PEER_Id p1,
                        GNUNET_PEER_Id p2)
 {
@@ -1524,9 +1524,9 @@
  * @param trusted Do we trust that this path is real?
  */
 void
-path_add_to_peer (struct MeshPeerInfo *peer_info,
-                  struct MeshPeerPath *path,
-                  int trusted)
+peer_info_add_path (struct MeshPeerInfo *peer_info,
+                    struct MeshPeerPath *path,
+                    int trusted)
 {
   struct MeshPeerPath *aux;
   unsigned int l;
@@ -1618,12 +1618,12 @@
  * @param trusted Do we trust that this path is real?
  */
 static void
-path_add_to_origin (struct MeshPeerInfo *peer_info,
-                    struct MeshPeerPath *path,
-                    int trusted)
+peer_info_add_path_to_origin (struct MeshPeerInfo *peer_info,
+                              struct MeshPeerPath *path,
+                              int trusted)
 {
   path_invert(path);
-  path_add_to_peer (peer_info, path, trusted);
+  peer_info_add_path (peer_info, path, trusted);
 }
 
 
@@ -2631,7 +2631,7 @@
 
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                 "MESH:   It's for us!\n");
-    path_add_to_origin (orig_peer_info, path, GNUNET_NO);
+    peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
     if (NULL == t->peers)
       t->peers = GNUNET_CONTAINER_multihashmap_create(4);
     GNUNET_break (GNUNET_OK == GNUNET_CONTAINER_multihashmap_put (
@@ -2667,9 +2667,9 @@
     path2 = path_duplicate(path);
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                 "MESH:   Retransmitting.\n");
-    path_add_to_peer(dest_peer_info, path2, GNUNET_NO);
+    peer_info_add_path(dest_peer_info, path2, GNUNET_NO);
     path2 = path_duplicate(path);
-    path_add_to_origin(orig_peer_info, path2, GNUNET_NO);
+    peer_info_add_path_to_origin(orig_peer_info, path2, GNUNET_NO);
     send_create_path(dest_peer_info, path, t);
   }
   return GNUNET_OK;
@@ -3298,7 +3298,7 @@
 
   p = path_build_from_dht (get_path, get_path_length,
                            put_path, put_path_length);
-  path_add_to_peer (path_info->peer, p, GNUNET_NO);
+  peer_info_add_path (path_info->peer, p, GNUNET_NO);
   for (i = 0; i < path_info->peer->ntunnels; i++)
   {
     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
@@ -3352,7 +3352,7 @@
 
   p = path_build_from_dht (get_path, get_path_length,
                            put_path, put_path_length);
-  path_add_to_peer (peer_info, p, GNUNET_NO);
+  peer_info_add_path (peer_info, p, GNUNET_NO);
   tunnel_add_peer(t, peer_info);
   peer_info_connect (peer_info, t);
 }
@@ -4261,7 +4261,7 @@
   path->peers[1] = peer_info->id;
   GNUNET_PEER_change_rc(myid, 1);
   GNUNET_PEER_change_rc(peer_info->id, 1);
-  path_add_to_peer (peer_info, path, GNUNET_YES);
+  peer_info_add_path (peer_info, path, GNUNET_YES);
   return;
 }
 
@@ -4291,7 +4291,7 @@
     /* TODO: notify that the transmission failed */
     peer_info_cancel_transmission(pi, i);
   }
-  path_remove_from_peer (pi, pi->id, myid);
+  peer_info_remove_path (pi, pi->id, myid);
 #if MESH_DEBUG_CONNECTION
   if (myid == pi->id)
   {
@@ -4480,7 +4480,7 @@
   p = path_new (1);
   p->peers[0] = myid;
   GNUNET_PEER_change_rc (myid, 1);
-  path_add_to_peer(peer, p, GNUNET_YES);
+  peer_info_add_path(peer, p, GNUNET_YES);
 
   /* Scheduled the task to clean up when shutdown is called */
   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,




reply via email to

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