gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r15136 - gnunet/src/mesh
Date: Tue, 3 May 2011 14:11:42 +0200

Author: bartpolot
Date: 2011-05-03 14:11:42 +0200 (Tue, 03 May 2011)
New Revision: 15136

Modified:
   gnunet/src/mesh/gnunet-service-mesh.c
Log:
Fixed compiling error


Modified: gnunet/src/mesh/gnunet-service-mesh.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh.c       2011-05-03 10:05:53 UTC (rev 
15135)
+++ gnunet/src/mesh/gnunet-service-mesh.c       2011-05-03 12:11:42 UTC (rev 
15136)
@@ -500,7 +500,7 @@
  */
 size_t feed_data_to_core (void *cls, size_t size, void *buf) {
     size_t              size_used;
-    PeerInfo            *peer_info;
+    struct PeerInfo     *peer_info;
 
     if(0 == size && NULL == buf) {
         // FIXME retry? cancel?
@@ -616,13 +616,13 @@
  * @param data pointer to the result data
  */
 void dht_get_response_handler(void *cls,
-                                struct GNUNET_TIME_Absolute exp,
-                                const GNUNET_HashCode * key,
-                                const struct GNUNET_PeerIdentity * const 
*get_path,
-                                const struct GNUNET_PeerIdentity * const 
*put_path,
-                                enum GNUNET_BLOCK_Type type,
-                                size_t size,
-                                const void *data)
+                            struct GNUNET_TIME_Absolute exp,
+                            const GNUNET_HashCode * key,
+                            const struct GNUNET_PeerIdentity * const *get_path,
+                            const struct GNUNET_PeerIdentity * const *put_path,
+                            enum GNUNET_BLOCK_Type type,
+                            size_t size,
+                            const void *data)
 {
     struct PeerInfo             *peer_info;
     struct MESH_tunnel          *t;
@@ -680,7 +680,9 @@
         if (c->handle == client) {
             GNUNET_CONTAINER_DLL_remove (clients_head, clients_tail, c);
             while (NULL != (t = c->tunnels_head)) {
-                GNUNET_CONTAINER_DLL_remove (c->tunnels_head, c->tunnels_tail, 
t);
+                GNUNET_CONTAINER_DLL_remove (c->tunnels_head,
+                                             c->tunnels_tail,
+                                             t);
                 /* TODO free paths and other tunnel dynamic structures */
                 GNUNET_free (t);
             }
@@ -1340,7 +1342,7 @@
 
/******************************************************************************/
 
 /**
- * Process mesh requests. FIXME NON FUNCTIONAL, SKELETON
+ * Process mesh requests.
  *
  * @param cls closure
  * @param server the initialized server




reply via email to

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