gnunet

Main GNUnet Logic
Log | Files | Refs | Submodules | README | LICENSE

commit 71470338de5201291b8ea217f98e519b760a74a4
parent 373661bd9a40828681f6f9d8f3f1484c2db5b567
Author: Bart Polot <bart@net.in.tum.de>
Date:   Mon, 10 Mar 2014 09:52:45 +0000

- use an array of 256 hashes on connection info

Diffstat:
Msrc/mesh/gnunet-service-mesh_local.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesh/gnunet-service-mesh_local.c b/src/mesh/gnunet-service-mesh_local.c @@ -727,7 +727,7 @@ static void iter_connection (void *cls, struct MeshConnection *c) { struct GNUNET_MESH_LocalInfoTunnel *msg = cls; - struct GNUNET_HashCode *h = (struct GNUNET_HashCode *) &msg[1]; + struct GNUNET_MeshHash *h = (struct GNUNET_MeshHash *) &msg[1]; h[msg->connections] = *(GMC_get_id (c)); msg->connections++;