gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r19280 - gnunet/src/mesh
Date: Fri, 20 Jan 2012 13:49:55 +0100

Author: bartpolot
Date: 2012-01-20 13:49:55 +0100 (Fri, 20 Jan 2012)
New Revision: 19280

Modified:
   gnunet/src/mesh/gnunet-service-mesh.c
Log:
Fixed bug with remote tunnel traffic reception

Modified: gnunet/src/mesh/gnunet-service-mesh.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh.c       2012-01-20 12:48:28 UTC (rev 
19279)
+++ gnunet/src/mesh/gnunet-service-mesh.c       2012-01-20 12:49:55 UTC (rev 
19280)
@@ -861,15 +861,10 @@
       // FIXME proper client differentiation mechanism required
       if (htons (msg->type) == GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN)
         *tid = htonl (t->local_tid);
-      else if(c == t->client)
-        *tid = htonl (t->local_tid);
       else if(c == t->client_dest)
         *tid = htonl (t->local_tid_dest);
       else
-      {
-        GNUNET_break (0);
-        continue;
-      }
+        *tid = htonl (t->local_tid);
       count++;
       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      sending\n");
       GNUNET_SERVER_notification_context_unicast (nc, c->handle,




reply via email to

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