doxygen
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses_simplistic.c
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_addresses_simplistic.c
23  * @brief ats mlp problem solver
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet-service-ats_addresses.h"
30 #include "gnunet_statistics_service.h"
31 #include "glpk.h"
32
33 struct GAS_SIMPLISTIC_Handle
34 {
35
36 };
37
38 /**
39  * Init the simplistic problem solving component
40  *
41  * @param cfg configuration handle
42  * @param stats the GNUNET_STATISTICS handle
43  * @return struct GAS_SIMPLISTIC_Handle * on success, NULL on fail
44  */
45 struct GAS_SIMPLISTIC_Handle *
46 GAS_simplistic_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
47                      const struct GNUNET_STATISTICS_Handle *stats)
48 {
49   struct GAS_SIMPLISTIC_Handle *solver = GNUNET_malloc (sizeof (struct GAS_SIMPLISTIC_Handle));
50   return solver;
51 }
52
53 /**
54  * Shutdown the simplistic problem solving component
55  */
56 void
57 GAS_simplistic_done (struct GAS_SIMPLISTIC_Handle *solver)
58 {
59   GNUNET_free (solver);
60 }
61
62 /**
63  * Updates a single address
64  *
65  * @param solver the solver Handle
66  * @param addresses the address hashmap
67  *        the address has to be already removed from the hashmap
68  * @param address the address to update
69  */
70 void
71 GAS_simplistic_address_update (struct GAS_SIMPLISTIC_Handle *solver, struct GNUNET_CONTAINER_MultiHashMap * addresses, struct ATS_Address *address)
72 {
73
74 }
75
76 /**
77  * Changes the preferences for a peer in the  problem
78  *
79  * @param solver the solver handle
80  * @param peer the peer
81  * @param kind the kind to change the preference
82  * @param score the score
83  */
84 void
85 GAS_simplistic_address_change_preference (struct GAS_SIMPLISTIC_Handle *solver,
86                                    const struct GNUNET_PeerIdentity *peer,
87                                    enum GNUNET_ATS_PreferenceKind kind,
88                                    float score)
89 {
90
91 }
92
93 /* end of gnunet-service-ats_addresses_simplistic.c */