aboutsummaryrefslogtreecommitdiff
path: root/src/exit
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/exit
parentdecf459805cdb3f6811f979df4831bc2ce9a2858 (diff)
downloadgnunet-a60b958f984d08525b636a2c7eae564ebec54ae6.tar.gz
gnunet-a60b958f984d08525b636a2c7eae564ebec54ae6.zip
-chaning multihashmap API to allow option for avoiding key allocation
Diffstat (limited to 'src/exit')
-rw-r--r--src/exit/gnunet-daemon-exit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exit/gnunet-daemon-exit.c b/src/exit/gnunet-daemon-exit.c
index 79c1f8435..4359db33c 100644
--- a/src/exit/gnunet-daemon-exit.c
+++ b/src/exit/gnunet-daemon-exit.c
@@ -3194,11 +3194,11 @@ run (void *cls, char *const *args GNUNET_UNUSED,
3194 } 3194 }
3195 exit_argv[7] = NULL; 3195 exit_argv[7] = NULL;
3196 3196
3197 udp_services = GNUNET_CONTAINER_multihashmap_create (65536); 3197 udp_services = GNUNET_CONTAINER_multihashmap_create (65536, GNUNET_NO);
3198 tcp_services = GNUNET_CONTAINER_multihashmap_create (65536); 3198 tcp_services = GNUNET_CONTAINER_multihashmap_create (65536, GNUNET_NO);
3199 GNUNET_CONFIGURATION_iterate_sections (cfg, &read_service_conf, NULL); 3199 GNUNET_CONFIGURATION_iterate_sections (cfg, &read_service_conf, NULL);
3200 3200
3201 connections_map = GNUNET_CONTAINER_multihashmap_create (65536); 3201 connections_map = GNUNET_CONTAINER_multihashmap_create (65536, GNUNET_NO);
3202 connections_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN); 3202 connections_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
3203 mesh_handle 3203 mesh_handle
3204 = GNUNET_MESH_connect (cfg, NULL, 3204 = GNUNET_MESH_connect (cfg, NULL,