aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core_clients.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/gnunet-service-core_clients.c')
-rw-r--r--src/core/gnunet-service-core_clients.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/core/gnunet-service-core_clients.c b/src/core/gnunet-service-core_clients.c
index 63c3b79be..eed890a8f 100644
--- a/src/core/gnunet-service-core_clients.c
+++ b/src/core/gnunet-service-core_clients.c
@@ -680,8 +680,6 @@ GSC_CLIENTS_reject_request (struct GSC_ClientActiveRequest *car)
680 * 680 *
681 * @param client client to notify 681 * @param client client to notify
682 * @param neighbour identity of the neighbour that changed status 682 * @param neighbour identity of the neighbour that changed status
683 * @param atsi performance information about neighbour
684 * @param atsi_count number of entries in 'ats' array
685 * @param tmap_old previous type map for the neighbour, NULL for disconnect 683 * @param tmap_old previous type map for the neighbour, NULL for disconnect
686 * @param tmap_new updated type map for the neighbour, NULL for disconnect 684 * @param tmap_new updated type map for the neighbour, NULL for disconnect
687 */ 685 */
@@ -689,8 +687,6 @@ void
689GSC_CLIENTS_notify_client_about_neighbour (struct GSC_Client *client, 687GSC_CLIENTS_notify_client_about_neighbour (struct GSC_Client *client,
690 const struct GNUNET_PeerIdentity 688 const struct GNUNET_PeerIdentity
691 *neighbour, 689 *neighbour,
692 const struct GNUNET_ATS_Information
693 *atsi, unsigned int atsi_count,
694 const struct GSC_TypeMap *tmap_old, 690 const struct GSC_TypeMap *tmap_old,
695 const struct GSC_TypeMap *tmap_new) 691 const struct GSC_TypeMap *tmap_new)
696{ 692{
@@ -755,23 +751,19 @@ GSC_CLIENTS_notify_client_about_neighbour (struct GSC_Client *client,
755 * or types processed by the respective peer. 751 * or types processed by the respective peer.
756 * 752 *
757 * @param neighbour identity of the neighbour that changed status 753 * @param neighbour identity of the neighbour that changed status
758 * @param atsi performance information about neighbour
759 * @param atsi_count number of entries in 'ats' array
760 * @param tmap_old previous type map for the neighbour, NULL for disconnect 754 * @param tmap_old previous type map for the neighbour, NULL for disconnect
761 * @param tmap_new updated type map for the neighbour, NULL for disconnect 755 * @param tmap_new updated type map for the neighbour, NULL for disconnect
762 */ 756 */
763void 757void
764GSC_CLIENTS_notify_clients_about_neighbour (const struct GNUNET_PeerIdentity 758GSC_CLIENTS_notify_clients_about_neighbour (const struct GNUNET_PeerIdentity
765 *neighbour, 759 *neighbour,
766 const struct GNUNET_ATS_Information
767 *atsi, unsigned int atsi_count,
768 const struct GSC_TypeMap *tmap_old, 760 const struct GSC_TypeMap *tmap_old,
769 const struct GSC_TypeMap *tmap_new) 761 const struct GSC_TypeMap *tmap_new)
770{ 762{
771 struct GSC_Client *c; 763 struct GSC_Client *c;
772 764
773 for (c = client_head; c != NULL; c = c->next) 765 for (c = client_head; c != NULL; c = c->next)
774 GSC_CLIENTS_notify_client_about_neighbour (c, neighbour, atsi, atsi_count, 766 GSC_CLIENTS_notify_client_about_neighbour (c, neighbour,
775 tmap_old, tmap_new); 767 tmap_old, tmap_new);
776} 768}
777 769