aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_scheduling.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-13 20:48:27 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-13 20:48:27 +0000
commit8a8968521fba2e248c37c7b817fa970c5c5097e2 (patch)
tree9120747780c742eb6b4f8d853f88962ef541c351 /src/ats/gnunet-service-ats_scheduling.h
parent2a726953f6afa9208188ddd39a922f4ad48bb1e4 (diff)
downloadgnunet-8a8968521fba2e248c37c7b817fa970c5c5097e2.tar.gz
gnunet-8a8968521fba2e248c37c7b817fa970c5c5097e2.zip
merging
Diffstat (limited to 'src/ats/gnunet-service-ats_scheduling.h')
-rw-r--r--src/ats/gnunet-service-ats_scheduling.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/ats/gnunet-service-ats_scheduling.h b/src/ats/gnunet-service-ats_scheduling.h
new file mode 100644
index 000000000..5c8f77ed8
--- /dev/null
+++ b/src/ats/gnunet-service-ats_scheduling.h
@@ -0,0 +1,55 @@
1/*
2 This file is part of GNUnet.
3 (C) 2011 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21/**
22 * @file ats/gnunet-service-ats_scheduling.h
23 * @brief ats service, interaction with 'scheduling' API
24 * @author Matthias Wachs
25 */
26#ifndef GNUNET_SERVICE_ATS_SCHEDULING_H
27#define GNUNET_SERVICE_ATS_SCHEDULING_H
28
29#include "gnunet_util_lib.h"
30
31void
32GAS_add_scheduling_client (struct GNUNET_SERVER_Client *client);
33
34
35void
36GAS_remove_scheduling_client (struct GNUNET_SERVER_Client *client);
37
38
39void
40GAS_handle_request_address (void *cls, struct GNUNET_SERVER_Client *client,
41 const struct GNUNET_MessageHeader *message);
42
43
44void
45GAS_handle_address_update (void *cls, struct GNUNET_SERVER_Client *client,
46 const struct GNUNET_MessageHeader *message);
47
48
49void
50GAS_handle_address_destroyed (void *cls, struct GNUNET_SERVER_Client *client,
51 const struct GNUNET_MessageHeader *message);
52
53
54#endif
55/* end of gnunet-service-ats_scheduling.h */