aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_reservations.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ats/gnunet-service-ats_reservations.h')
-rw-r--r--src/ats/gnunet-service-ats_reservations.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/ats/gnunet-service-ats_reservations.h b/src/ats/gnunet-service-ats_reservations.h
index 5ddec9bd6..b22e809bb 100644
--- a/src/ats/gnunet-service-ats_reservations.h
+++ b/src/ats/gnunet-service-ats_reservations.h
@@ -60,10 +60,25 @@ GAS_reservations_reserve (const struct GNUNET_PeerIdentity *peer,
60 60
61 61
62/** 62/**
63 * Handle 'reservation request' messages from clients.
64 *
65 * @param cls unused, NULL
66 * @param client client that sent the request
67 * @param message the request message
68 */
69void
70GAS_handle_reservation_request (void *cls,
71 struct GNUNET_SERVER_Client *client,
72 const struct GNUNET_MessageHeader *message);
73
74
75/**
63 * Initialize reservations subsystem. 76 * Initialize reservations subsystem.
77 *
78 * @param server handle to our server
64 */ 79 */
65void 80void
66GAS_reservations_init (void); 81GAS_reservations_init (struct GNUNET_SERVER_Handle *server);
67 82
68 83
69/** 84/**