diff options
author | wachs <wachs@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-12-04 15:09:39 +0000 |
---|---|---|
committer | wachs <wachs@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-12-04 15:09:39 +0000 |
commit | 919b089ec460ef3a5628d641c0700f8f28c3a56a (patch) | |
tree | 17cd40eea83299b8091714c1f82c8a5190ec30cd | |
parent | fe1ae5a3adb83ed6d0c01ea51da6a6e0f31953ae (diff) |
docu
git-svn-id: https://gnunet.org/svn/gnunet@25233 140774ce-b5e7-0310-ab8b-a85725594a96
-rw-r--r-- | src/ats/gnunet-service-ats_addresses.c | 3 | ||||
-rw-r--r-- | src/ats/gnunet-service-ats_addresses_simplistic.c | 44 | ||||
-rw-r--r-- | src/ats/gnunet-service-ats_addresses_simplistic.h | 35 |
3 files changed, 60 insertions, 22 deletions
diff --git a/src/ats/gnunet-service-ats_addresses.c b/src/ats/gnunet-service-ats_addresses.c index d77d0d6a41..f2ad8979a7 100644 --- a/src/ats/gnunet-service-ats_addresses.c +++ b/src/ats/gnunet-service-ats_addresses.c @@ -946,9 +946,6 @@ GAS_addresses_handle_backoff_reset (const struct GNUNET_PeerIdentity *peer) } - -// FIXME: this function should likely end up in the LP-subsystem and -// not with 'addresses' in the future... void GAS_addresses_change_preference (const struct GNUNET_PeerIdentity *peer, enum GNUNET_ATS_PreferenceKind kind, diff --git a/src/ats/gnunet-service-ats_addresses_simplistic.c b/src/ats/gnunet-service-ats_addresses_simplistic.c index 23eb97f8e1..62d9961171 100644 --- a/src/ats/gnunet-service-ats_addresses_simplistic.c +++ b/src/ats/gnunet-service-ats_addresses_simplistic.c @@ -19,8 +19,8 @@ */ /** - * @file ats/gnunet-service-ats_addresses_simplistic.c - * @brief ats mlp problem solver + * @file ats/gnunet-service-ats_addresses_simplistic.h + * @brief ats simplistic ressource assignment * @author Matthias Wachs * @author Christian Grothoff */ @@ -29,17 +29,22 @@ #include "gnunet-service-ats_addresses.h" #include "gnunet_statistics_service.h" + +/** + * A handle for the simplistic solver + */ struct GAS_SIMPLISTIC_Handle { }; + /** * Init the simplistic problem solving component * * @param cfg configuration handle * @param stats the GNUNET_STATISTICS handle - * @return struct GAS_SIMPLISTIC_Handle * on success, NULL on fail + * @return handle for the solver on success, NULL on fail */ void * GAS_simplistic_init (const struct GNUNET_CONFIGURATION_Handle *cfg, @@ -49,22 +54,25 @@ GAS_simplistic_init (const struct GNUNET_CONFIGURATION_Handle *cfg, return solver; } + /** * Shutdown the simplistic problem solving component + * + * @param solver the respective handle to shutdown */ void GAS_simplistic_done (void *solver) { + GNUNET_assert (solver != NULL); GNUNET_free (solver); } /** - * Updates a single address + * Updates a single address in the solve * * @param solver the solver Handle - * @param addresses the address hashmap - * the address has to be already removed from the hashmap - * @param address the address to update + * @param addresses the address hashmap containing all addresses + * @param address the update address */ void GAS_simplistic_address_update (void *solver, struct GNUNET_CONTAINER_MultiHashMap * addresses, struct ATS_Address *address) @@ -72,6 +80,14 @@ GAS_simplistic_address_update (void *solver, struct GNUNET_CONTAINER_MultiHashMa } + +/** + * Remove an address from the solver + * + * @param solver the solver handle + * @param addresses the address hashmap containing all addresses + * @param address the address to remove + */ void GAS_simplistic_address_delete (void *solver, struct GNUNET_CONTAINER_MultiHashMap * addresses, struct ATS_Address *address) { @@ -79,19 +95,27 @@ GAS_simplistic_address_delete (void *solver, struct GNUNET_CONTAINER_MultiHashMa } +/** + * Get the prefered address for a specific peer + * + * @param solver the solver handle + * @param addresses the address hashmap containing all addresses + * @param peer the identity of the peer + */ struct ATS_PreferedAddress * GAS_simplistic_get_preferred_address (void *solver, struct GNUNET_CONTAINER_MultiHashMap * addresses, const struct GNUNET_PeerIdentity *peer) { - + return NULL; } + /** - * Changes the preferences for a peer in the problem + * Changes the preferences for a peer in the problem * * @param solver the solver handle - * @param peer the peer + * @param peer the peer to change the preference for * @param kind the kind to change the preference * @param score the score */ diff --git a/src/ats/gnunet-service-ats_addresses_simplistic.h b/src/ats/gnunet-service-ats_addresses_simplistic.h index 55a8d947cd..a718b63b8d 100644 --- a/src/ats/gnunet-service-ats_addresses_simplistic.h +++ b/src/ats/gnunet-service-ats_addresses_simplistic.h @@ -20,7 +20,7 @@ /** * @file ats/gnunet-service-ats_addresses_simplistic.h - * @brief ats mlp problem solver + * @brief ats simplistic ressource assignment * @author Matthias Wachs * @author Christian Grothoff */ @@ -28,14 +28,13 @@ #include "gnunet_statistics_service.h" #include "gnunet-service-ats_addresses.h" -struct GAS_SIMPLISTIC_Handle; /** * Init the simplistic problem solving component * * @param cfg configuration handle * @param stats the GNUNET_STATISTICS handle - * @return struct GAS_SIMPLISTIC_Handle * on success, NULL on fail + * @return handle for the solver on success, NULL on fail */ void * GAS_simplistic_init (const struct GNUNET_CONFIGURATION_Handle *cfg, @@ -43,35 +42,53 @@ GAS_simplistic_init (const struct GNUNET_CONFIGURATION_Handle *cfg, /** * Shutdown the simplistic problem solving component + * + * @param solver the respective handle to shutdown */ void GAS_simplistic_done (void * solver); /** - * Updates a single address + * Updates a single address in the solve * * @param solver the solver Handle - * @param addresses the address hashmap - * the address has to be already removed from the hashmap - * @param address the address to update + * @param addresses the address hashmap containing all addresses + * @param address the update address */ void GAS_simplistic_address_update (void *solver, struct GNUNET_CONTAINER_MultiHashMap * addresses, struct ATS_Address *address); + +/** + * Remove an address from the solver + * + * @param solver the solver handle + * @param addresses the address hashmap containing all addresses + * @param address the address to remove + */ void GAS_simplistic_address_delete (void *solver, struct GNUNET_CONTAINER_MultiHashMap * addresses, struct ATS_Address *address); + +/** + * Get the prefered address for a specific peer + * + * @param solver the solver handle + * @param addresses the address hashmap containing all addresses + * @param peer the identity of the peer + */ struct ATS_PreferedAddress * GAS_simplistic_get_preferred_address (void *solver, struct GNUNET_CONTAINER_MultiHashMap * addresses, const struct GNUNET_PeerIdentity *peer); + /** - * Changes the preferences for a peer in the problem + * Changes the preferences for a peer in the problem * * @param solver the solver handle - * @param peer the peer + * @param peer the peer to change the preference for * @param kind the kind to change the preference * @param score the score */ |