aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ats/gnunet-service-ats.c')
-rw-r--r--src/ats/gnunet-service-ats.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ats/gnunet-service-ats.c b/src/ats/gnunet-service-ats.c
index b000ae99c..a93be5466 100644
--- a/src/ats/gnunet-service-ats.c
+++ b/src/ats/gnunet-service-ats.c
@@ -109,7 +109,6 @@ client_disconnect_handler (void *cls,
109 if (NULL == client) 109 if (NULL == client)
110 return; 110 return;
111 GAS_scheduling_remove_client (client); 111 GAS_scheduling_remove_client (client);
112 GAS_performance_remove_client (client);
113 GAS_connectivity_remove_client (client); 112 GAS_connectivity_remove_client (client);
114 GAS_normalization_preference_client_disconnect (client); 113 GAS_normalization_preference_client_disconnect (client);
115 GAS_addresses_preference_client_disconnect (client); 114 GAS_addresses_preference_client_disconnect (client);
@@ -188,10 +187,10 @@ run (void *cls,
188 }; 187 };
189 GSA_server = server; 188 GSA_server = server;
190 GSA_stats = GNUNET_STATISTICS_create ("ats", cfg); 189 GSA_stats = GNUNET_STATISTICS_create ("ats", cfg);
191 GAS_reservations_init (); 190 GAS_reservations_init (server);
192 GAS_connectivity_init (); 191 GAS_connectivity_init ();
193 GAS_normalization_start (); 192 GAS_normalization_start ();
194 GAS_addresses_init (); 193 GAS_addresses_init (server);
195 if (GNUNET_OK != 194 if (GNUNET_OK !=
196 GAS_plugins_init (cfg)) 195 GAS_plugins_init (cfg))
197 { 196 {