diff options
author | wachs <wachs@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-11-21 10:51:21 +0000 |
---|---|---|
committer | wachs <wachs@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-11-21 10:51:21 +0000 |
commit | bcad98d8ea49af132176d78d519d6f83aa90c963 (patch) | |
tree | bd5b14652723847fb25ee1d23394c8e03fd8c6f6 | |
parent | c5f0f697a3029cd22d6181f897d5b6e06d01a00b (diff) |
dogygen
git-svn-id: https://gnunet.org/svn/gnunet@25083 140774ce-b5e7-0310-ab8b-a85725594a96
-rw-r--r-- | src/ats/ats_api_performance.c | 2 | ||||
-rw-r--r-- | src/ats/gnunet-service-ats_performance.c | 2 | ||||
-rw-r--r-- | src/ats/gnunet-service-ats_performance.h | 1 | ||||
-rw-r--r-- | src/include/gnunet_ats_service.h | 2 |
4 files changed, 5 insertions, 2 deletions
diff --git a/src/ats/ats_api_performance.c b/src/ats/ats_api_performance.c index 566b0cce35..4e09123c50 100644 --- a/src/ats/ats_api_performance.c +++ b/src/ats/ats_api_performance.c @@ -747,7 +747,7 @@ GNUNET_ATS_reserve_bandwidth_cancel (struct GNUNET_ATS_ReservationContext *rc) /** * Get information about addresses known to the ATS subsystem. * - * @param cfg configuration to use + * @param handle the performance handle to use * @param peer peer idm can be NULL for all peers * @param all GNUNET_YES to get information about all addresses or GNUNET_NO to * get only address currently used diff --git a/src/ats/gnunet-service-ats_performance.c b/src/ats/gnunet-service-ats_performance.c index 446024b32f..893d8e1253 100644 --- a/src/ats/gnunet-service-ats_performance.c +++ b/src/ats/gnunet-service-ats_performance.c @@ -138,6 +138,7 @@ GAS_performance_remove_client (struct GNUNET_SERVER_Client *client) * @param plugin_name 0-termintated string specifying the transport plugin * @param plugin_addr binary address for the plugin to use * @param plugin_addr_len number of bytes in plugin_addr + * @param active is this address active * @param atsi performance data for the address * @param atsi_count number of performance records in 'ats' * @param bandwidth_out assigned outbound bandwidth @@ -202,6 +203,7 @@ GAS_performance_notify_client (struct PerformanceClient *pc, * @param plugin_name 0-termintated string specifying the transport plugin * @param plugin_addr binary address for the plugin to use * @param plugin_addr_len number of bytes in plugin_addr + * @param active is this address active * @param atsi performance data for the address * @param atsi_count number of performance records in 'ats' * @param bandwidth_out assigned outbound bandwidth diff --git a/src/ats/gnunet-service-ats_performance.h b/src/ats/gnunet-service-ats_performance.h index 4a8f843d0b..f237c71acb 100644 --- a/src/ats/gnunet-service-ats_performance.h +++ b/src/ats/gnunet-service-ats_performance.h @@ -60,6 +60,7 @@ GAS_performance_remove_client (struct GNUNET_SERVER_Client *client); * @param plugin_name 0-termintated string specifying the transport plugin * @param plugin_addr binary address for the plugin to use * @param plugin_addr_len number of bytes in plugin_addr + * @param active is this address active * @param atsi performance data for the address * @param atsi_count number of performance records in 'ats' * @param bandwidth_out assigned outbound bandwidth diff --git a/src/include/gnunet_ats_service.h b/src/include/gnunet_ats_service.h index a8f742cba9..65893fec19 100644 --- a/src/include/gnunet_ats_service.h +++ b/src/include/gnunet_ats_service.h @@ -713,7 +713,7 @@ GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg, /** * Get information about addresses known to the ATS subsystem. * - * @param cfg configuration to use + * @param handle the performance handle to use * @param peer peer idm can be NULL for all peers * @param all GNUNET_YES to get information about all addresses or GNUNET_NO to * get only address currently used |