aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api_monitor_plugins.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-11-23 20:12:32 +0000
committerChristian Grothoff <christian@grothoff.org>2014-11-23 20:12:32 +0000
commitd60c79921cb80f2173d800785ec5d39f6cdbca8c (patch)
tree0aec29c3348c2daf8babd979963b1212e6fabcfb /src/transport/transport_api_monitor_plugins.c
parente5d9d0d24bc32dcebcd5d2f86ca5cca579bc5dbb (diff)
downloadgnunet-d60c79921cb80f2173d800785ec5d39f6cdbca8c.tar.gz
gnunet-d60c79921cb80f2173d800785ec5d39f6cdbca8c.zip
-fix misc monitoring issues
Diffstat (limited to 'src/transport/transport_api_monitor_plugins.c')
-rw-r--r--src/transport/transport_api_monitor_plugins.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/transport/transport_api_monitor_plugins.c b/src/transport/transport_api_monitor_plugins.c
index 1bbb4c102..d14323ec6 100644
--- a/src/transport/transport_api_monitor_plugins.c
+++ b/src/transport/transport_api_monitor_plugins.c
@@ -291,6 +291,7 @@ response_processor (void *cls,
291 struct GNUNET_HELLO_Address addr; 291 struct GNUNET_HELLO_Address addr;
292 struct SearchContext rv; 292 struct SearchContext rv;
293 293
294 fprintf (stderr, "R\n");
294 if (NULL == msg) 295 if (NULL == msg)
295 { 296 {
296 reconnect_plugin_ctx (pm); 297 reconnect_plugin_ctx (pm);
@@ -304,6 +305,10 @@ response_processor (void *cls,
304 NULL, 305 NULL,
305 NULL, 306 NULL,
306 NULL); 307 NULL);
308 GNUNET_CLIENT_receive (pm->client,
309 &response_processor,
310 pm,
311 GNUNET_TIME_UNIT_FOREVER_REL);
307 return; 312 return;
308 } 313 }
309 314
@@ -383,6 +388,10 @@ response_processor (void *cls,
383 ps)); 388 ps));
384 GNUNET_free (ps); 389 GNUNET_free (ps);
385 } 390 }
391 GNUNET_CLIENT_receive (pm->client,
392 &response_processor,
393 pm,
394 GNUNET_TIME_UNIT_FOREVER_REL);
386} 395}
387 396
388 397