guix-env: some update.
[oweals/gnunet.git] / src / ats / gnunet-service-ats_scheduling.h
index 273126fffa2f5a8de3ebc747e9ece5b20d877bcb..26cb2c73afa55f90a7791c8ad7e8995416d1e078 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C) 2011 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2011 GNUnet e.V.
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -14,8 +14,8 @@
 
      You should have received a copy of the GNU General Public License
      along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
 */
 
 /**
  * Register a new scheduling client.
  *
  * @param client handle of the new client
+ * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
  */
-void
-GAS_scheduling_add_client (struct GNUNET_SERVER_Client *client);
+int
+GAS_scheduling_add_client (struct GNUNET_SERVICE_Client *client);
 
 
 /**
@@ -46,7 +47,7 @@ GAS_scheduling_add_client (struct GNUNET_SERVER_Client *client);
  * @param client handle of the (now dead) client
  */
 void
-GAS_scheduling_remove_client (struct GNUNET_SERVER_Client *client);
+GAS_scheduling_remove_client (struct GNUNET_SERVICE_Client *client);
 
 
 /**
@@ -54,81 +55,43 @@ GAS_scheduling_remove_client (struct GNUNET_SERVER_Client *client);
  * clients.
  *
  * @param peer peer for which this is an address suggestion
- * @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 session_client which client gave us this session_id?
- * @param session_id session ID to use for the given client (other clients will see 0)
- * @param atsi performance data for the address
- * @param atsi_count number of performance records in 'ats'
+ * @param session_id session ID to use
  * @param bandwidth_out assigned outbound bandwidth
  * @param bandwidth_in assigned inbound bandwidth
  */
 void
 GAS_scheduling_transmit_address_suggestion (const struct GNUNET_PeerIdentity *peer,
-                                           const char *plugin_name,
-                                           const void *plugin_addr, size_t plugin_addr_len,
-                                           struct GNUNET_SERVER_Client *session_client,
-                                           uint32_t session_id,
-                                           const struct GNUNET_TRANSPORT_ATS_Information *atsi,
-                                           uint32_t atsi_count,                                
-                                           struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
-                                           struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
+                                            uint32_t session_id,
+                                            struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
+                                            struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
 
 
 /**
- * Handle 'request address' messages from clients.
+ * Handle 'address add' messages from clients.
  *
- * @param cls unused, NULL
  * @param client client that sent the request
- * @param message the request message
+ * @param m the request message
  */
 void
-GAS_handle_request_address (void *cls, struct GNUNET_SERVER_Client *client,
-                           const struct GNUNET_MessageHeader *message);
-
+GAS_handle_address_add (const struct AddressAddMessage *m);
 
 
 /**
  * Handle 'address update' messages from clients.
  *
- * @param cls unused, NULL
- * @param client client that sent the request
- * @param message the request message
+ * @param m the request message
  */
 void
-GAS_handle_address_update (void *cls, struct GNUNET_SERVER_Client *client,
-                          const struct GNUNET_MessageHeader *message);
+GAS_handle_address_update (const struct AddressUpdateMessage *m);
 
 
 /**
  * Handle 'address destroyed' messages from clients.
  *
- * @param cls unused, NULL
- * @param client client that sent the request
- * @param message the request message
- */
-void
-GAS_handle_address_destroyed (void *cls, struct GNUNET_SERVER_Client *client,
-                             const struct GNUNET_MessageHeader *message);
-
-
-/**
- * Initialize scheduling subsystem.
- *
- * @param server handle to our server
- * @param cfg configuration to use
- */
-void
-GAS_scheduling_init (struct GNUNET_SERVER_Handle *server,
-                    const struct GNUNET_CONFIGURATION_Handle *cfg);
-
-
-/**
- * Shutdown scheduling subsystem.
+ * @param m the request message
  */
 void
-GAS_scheduling_done (void);
+GAS_handle_address_destroyed (const struct AddressDestroyedMessage *m);
 
 
 #endif