gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r16413 - gnunet/src/mesh
Date: Sat, 6 Aug 2011 22:21:44 +0200

Author: bartpolot
Date: 2011-08-06 22:21:44 +0200 (Sat, 06 Aug 2011)
New Revision: 16413

Modified:
   gnunet/src/mesh/gnunet-service-mesh.c
   gnunet/src/mesh/test_mesh.conf
Log:
Greetings from Philadelphia. Also, fixes.


Modified: gnunet/src/mesh/gnunet-service-mesh.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh.c       2011-08-06 19:39:49 UTC (rev 
16412)
+++ gnunet/src/mesh/gnunet-service-mesh.c       2011-08-06 20:21:44 UTC (rev 
16413)
@@ -54,7 +54,16 @@
 #include "mesh_protocol.h"
 #include "gnunet_dht_service.h"
 
+#define MESH_DEBUG              0
 
+#if MESH_DEBUG
+static void
+mesh_debug (const char *s)
+{
+    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s", s);
+}
+#endif
+
 #define CORE_QUEUE_SIZE         10
 #define LOCAL_QUEUE_SIZE        100
 #define REFRESH_PATH_TIME       GNUNET_TIME_relative_multiply(\
@@ -1098,7 +1107,7 @@
     struct MeshPeerInfo                 *orig_peer_info;
     struct MeshTunnel                   *t;
 
-
+    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Received a MESH path create msg\n");
     size = ntohs(message->size);
     if (size < sizeof(struct GNUNET_MESH_ManipulatePath)) {
         GNUNET_log(GNUNET_ERROR_TYPE_WARNING,
@@ -1125,11 +1134,10 @@
     t = retrieve_tunnel(pi, tid);
 
     if (NULL == t) {
+        GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Creating tunnel\n");
         t = GNUNET_malloc(sizeof(struct MeshTunnel));
         t->id.oid = GNUNET_PEER_intern(pi);
         t->id.tid = tid;
-        t->local_tid = 0;
-        t->client = NULL;
         t->peers = GNUNET_CONTAINER_multihashmap_create(32);
 
         GNUNET_CRYPTO_hash(&t->id, sizeof(struct MESH_TunnelID), &hash);
@@ -1139,8 +1147,7 @@
                             t,
                             GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
         {
-            GNUNET_log(GNUNET_ERROR_TYPE_WARNING,
-                   "create path: could not store tunnel in hashmap\n");
+            GNUNET_break(0);
             return GNUNET_OK;
         }
 
@@ -2324,6 +2331,27 @@
                 "Core init\n");
     core_handle = server;
     myid = GNUNET_PEER_intern(identity);
+    /* TODO
+     * - Repeat every X seconds to avoid churn induced failures,
+     * increase replication and diversify routes.
+     * - Set data expiration in function of X
+     * - Adapt X to churn
+     */
+    GNUNET_DHT_put(dht_handle,                                  /* DHT handle 
*/
+                   &identity->hashPubKey,                       /* Key to use 
*/
+                   10U,                                  /* Replication level 
*/
+                   GNUNET_DHT_RO_RECORD_ROUTE,                 /* DHT options 
*/
+                   GNUNET_BLOCK_TYPE_ANY,                       /* Block type 
*/
+                   0,                                     /* Size of the data 
*/
+                   NULL,                                       /* Data itself 
*/
+                   GNUNET_TIME_absolute_get_forever(),     /* Data expiration 
*/
+                   GNUNET_TIME_UNIT_FOREVER_REL,                /* Retry time 
*/
+#if MESH_DEBUG
+
+#else
+                   NULL,                                      /* Continuation 
*/
+                   NULL);                             /* Continuation closure 
*/
+#endif
     return;
 }
 
@@ -2460,8 +2488,14 @@
     }
     dht_handle = GNUNET_DHT_connect(c, 64);
     if (dht_handle == NULL) {
+        GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
+                   "Error connecting to DHT.\
+                   Running without DHT has a severe\
+                   impact in MESH capabilities.\n\
+                   Plase check your configuretion and enable DHT.\n");
         GNUNET_break(0);
     }
+
     next_tid = 0;
 
     tunnels = GNUNET_CONTAINER_multihashmap_create(32);
@@ -2476,7 +2510,7 @@
                                   &shutdown_task, NULL);
 
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "end if run()\n");
+                "end of run()\n");
 }
 
 /**

Modified: gnunet/src/mesh/test_mesh.conf
===================================================================
--- gnunet/src/mesh/test_mesh.conf      2011-08-06 19:39:49 UTC (rev 16412)
+++ gnunet/src/mesh/test_mesh.conf      2011-08-06 20:21:44 UTC (rev 16413)
@@ -5,7 +5,7 @@
 AUTOSTART = NO
 
 [mesh]
-DEBUG = NO
+DEBUG = YES
 AUTOSTART = YES
 ACCEPT_FROM = 127.0.0.1;
 HOSTNAME = localhost
@@ -61,9 +61,5 @@
 [dns]
 AUTOSTART = NO
 
-
-
 [nse]
 AUTOSTART = NO
-
-




reply via email to

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