aboutsummaryrefslogtreecommitdiff
path: root/src/seti/gnunet-service-seti.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/seti/gnunet-service-seti.c')
-rw-r--r--src/seti/gnunet-service-seti.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/seti/gnunet-service-seti.c b/src/seti/gnunet-service-seti.c
index 618d53128..af478233b 100644
--- a/src/seti/gnunet-service-seti.c
+++ b/src/seti/gnunet-service-seti.c
@@ -2200,6 +2200,9 @@ handle_client_evaluate (void *cls,
2200 UINT32_MAX); 2200 UINT32_MAX);
2201 op->peer = msg->target_peer; 2201 op->peer = msg->target_peer;
2202 op->return_intersection = htonl (msg->return_intersection); 2202 op->return_intersection = htonl (msg->return_intersection);
2203 fprintf (stderr,
2204 "Return intersection for evaluate is %d\n",
2205 op->return_intersection);
2203 op->client_request_id = ntohl (msg->request_id); 2206 op->client_request_id = ntohl (msg->request_id);
2204 context = GNUNET_MQ_extract_nested_mh (msg); 2207 context = GNUNET_MQ_extract_nested_mh (msg);
2205 2208
@@ -2364,6 +2367,9 @@ handle_client_accept (void *cls,
2364 listener = op->listener; 2367 listener = op->listener;
2365 op->listener = NULL; 2368 op->listener = NULL;
2366 op->return_intersection = htonl (msg->return_intersection); 2369 op->return_intersection = htonl (msg->return_intersection);
2370 fprintf (stderr,
2371 "Return intersection for accept is %d\n",
2372 op->return_intersection);
2367 GNUNET_CONTAINER_DLL_remove (listener->op_head, 2373 GNUNET_CONTAINER_DLL_remove (listener->op_head,
2368 listener->op_tail, 2374 listener->op_tail,
2369 op); 2375 op);