aboutsummaryrefslogtreecommitdiff
path: root/src/set/test_set_api.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-06-19 10:48:54 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-06-19 10:48:54 +0000
commita900b29ddaa9ea46c731b054b5e3ef3e725b95a8 (patch)
tree52e1a9697b0abf4618cd5684359ec5f0a040898a /src/set/test_set_api.c
parent17353bc0a47c89bda205f23e7995377c9bfe7769 (diff)
downloadgnunet-a900b29ddaa9ea46c731b054b5e3ef3e725b95a8.tar.gz
gnunet-a900b29ddaa9ea46c731b054b5e3ef3e725b95a8.zip
- opaque mq structs
- mq for mesh - faster hashing for IBFs - mesh replaces stream in set - new set profiler (work in progress)
Diffstat (limited to 'src/set/test_set_api.c')
-rw-r--r--src/set/test_set_api.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/set/test_set_api.c b/src/set/test_set_api.c
index f773cebdf..db82b83b4 100644
--- a/src/set/test_set_api.c
+++ b/src/set/test_set_api.c
@@ -95,7 +95,7 @@ listen_cb (void *cls,
95 GNUNET_SET_listen_cancel (listen_handle); 95 GNUNET_SET_listen_cancel (listen_handle);
96 96
97 oh = GNUNET_SET_accept (request, GNUNET_SET_RESULT_ADDED, result_cb_set2, NULL); 97 oh = GNUNET_SET_accept (request, GNUNET_SET_RESULT_ADDED, result_cb_set2, NULL);
98 GNUNET_SET_conclude (oh, set2); 98 GNUNET_SET_commit (oh, set2);
99} 99}
100 100
101 101
@@ -111,10 +111,10 @@ start (void *cls)
111 111
112 listen_handle = GNUNET_SET_listen (config, GNUNET_SET_OPERATION_UNION, 112 listen_handle = GNUNET_SET_listen (config, GNUNET_SET_OPERATION_UNION,
113 &app_id, listen_cb, NULL); 113 &app_id, listen_cb, NULL);
114 oh = GNUNET_SET_evaluate (&local_id, &app_id, NULL, 42, 114 oh = GNUNET_SET_prepare (&local_id, &app_id, NULL, 42,
115 GNUNET_SET_RESULT_ADDED, 115 GNUNET_SET_RESULT_ADDED,
116 result_cb_set1, NULL); 116 result_cb_set1, NULL);
117 GNUNET_SET_conclude (oh, set1); 117 GNUNET_SET_commit (oh, set1);
118} 118}
119 119
120 120