aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-23 17:31:20 +0000
committerChristian Grothoff <christian@grothoff.org>2016-06-23 17:31:20 +0000
commite440229c4d9c0c51e72e84e562b98c47d6da437a (patch)
treef3ca2ae5e44b39db39ee8f68f017d5795f4c5fce
parent9a3d2cb8ea446ae1291286b94a7784676ea134cb (diff)
downloadgnunet-e440229c4d9c0c51e72e84e562b98c47d6da437a.tar.gz
gnunet-e440229c4d9c0c51e72e84e562b98c47d6da437a.zip
convert perf API to new MQ API
-rw-r--r--src/include/gnunet_ats_service.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_ats_service.h b/src/include/gnunet_ats_service.h
index 5023dc041..41e1a1a90 100644
--- a/src/include/gnunet_ats_service.h
+++ b/src/include/gnunet_ats_service.h
@@ -526,7 +526,7 @@ GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
526/** 526/**
527 * Get information about addresses known to the ATS subsystem. 527 * Get information about addresses known to the ATS subsystem.
528 * 528 *
529 * @param handle the performance handle to use 529 * @param ph the performance handle to use
530 * @param peer peer idm can be NULL for all peers 530 * @param peer peer idm can be NULL for all peers
531 * @param all #GNUNET_YES to get information about all addresses or #GNUNET_NO to 531 * @param all #GNUNET_YES to get information about all addresses or #GNUNET_NO to
532 * get only address currently used 532 * get only address currently used
@@ -536,7 +536,7 @@ GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
536 * @return handle to abort the operation 536 * @return handle to abort the operation
537 */ 537 */
538struct GNUNET_ATS_AddressListHandle * 538struct GNUNET_ATS_AddressListHandle *
539GNUNET_ATS_performance_list_addresses (struct GNUNET_ATS_PerformanceHandle *handle, 539GNUNET_ATS_performance_list_addresses (struct GNUNET_ATS_PerformanceHandle *ph,
540 const struct GNUNET_PeerIdentity *peer, 540 const struct GNUNET_PeerIdentity *peer,
541 int all, 541 int all,
542 GNUNET_ATS_AddressInformationCallback infocb, 542 GNUNET_ATS_AddressInformationCallback infocb,
@@ -546,10 +546,10 @@ GNUNET_ATS_performance_list_addresses (struct GNUNET_ATS_PerformanceHandle *hand
546/** 546/**
547 * Cancel a pending address listing operation 547 * Cancel a pending address listing operation
548 * 548 *
549 * @param handle the `struct GNUNET_ATS_AddressListHandle` handle to cancel 549 * @param alh the `struct GNUNET_ATS_AddressListHandle` handle to cancel
550 */ 550 */
551void 551void
552GNUNET_ATS_performance_list_addresses_cancel (struct GNUNET_ATS_AddressListHandle *handle); 552GNUNET_ATS_performance_list_addresses_cancel (struct GNUNET_ATS_AddressListHandle *alh);
553 553
554 554
555/** 555/**