aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core_neighbours.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-10-07 18:19:32 +0000
committerChristian Grothoff <christian@grothoff.org>2012-10-07 18:19:32 +0000
commita60b958f984d08525b636a2c7eae564ebec54ae6 (patch)
tree6dcbbf91d734834f804b2fd9ab790244e2d60e6c /src/core/gnunet-service-core_neighbours.c
parentdecf459805cdb3f6811f979df4831bc2ce9a2858 (diff)
downloadgnunet-a60b958f984d08525b636a2c7eae564ebec54ae6.tar.gz
gnunet-a60b958f984d08525b636a2c7eae564ebec54ae6.zip
-chaning multihashmap API to allow option for avoiding key allocation
Diffstat (limited to 'src/core/gnunet-service-core_neighbours.c')
-rw-r--r--src/core/gnunet-service-core_neighbours.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gnunet-service-core_neighbours.c b/src/core/gnunet-service-core_neighbours.c
index 3b1357425..aa77fe47e 100644
--- a/src/core/gnunet-service-core_neighbours.c
+++ b/src/core/gnunet-service-core_neighbours.c
@@ -464,7 +464,7 @@ GSC_NEIGHBOURS_transmit (const struct GNUNET_PeerIdentity *target,
464int 464int
465GSC_NEIGHBOURS_init () 465GSC_NEIGHBOURS_init ()
466{ 466{
467 neighbours = GNUNET_CONTAINER_multihashmap_create (128); 467 neighbours = GNUNET_CONTAINER_multihashmap_create (128, GNUNET_NO);
468 transport = 468 transport =
469 GNUNET_TRANSPORT_connect (GSC_cfg, &GSC_my_identity, NULL, 469 GNUNET_TRANSPORT_connect (GSC_cfg, &GSC_my_identity, NULL,
470 &handle_transport_receive, 470 &handle_transport_receive,