From fbc5f3876a2ed52f18e2a2810e3cdda497cc99ea Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 22 Nov 2018 22:46:43 +0100 Subject: add design sketch for new ATS API --- src/include/gnunet_ats_application_service.h | 99 ++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 src/include/gnunet_ats_application_service.h (limited to 'src/include/gnunet_ats_application_service.h') diff --git a/src/include/gnunet_ats_application_service.h b/src/include/gnunet_ats_application_service.h new file mode 100644 index 000000000..af92d5639 --- /dev/null +++ b/src/include/gnunet_ats_application_service.h @@ -0,0 +1,99 @@ +/* + This file is part of GNUnet. + Copyright (C) 2010-2015, 2018 GNUnet e.V. + + GNUnet is free software: you can redistribute it and/or modify it + under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, + or (at your option) any later version. + + GNUnet is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + */ +/** + * @file + * Bandwidth allocation API for applications to interact with + * + * @author Christian Grothoff + * @author Matthias Wachs + * + * @defgroup ats ATS service + * Bandwidth allocation + * + * @see [Documentation](https://gnunet.org/ats-subsystem) + * + * @{ + */ +#ifndef GNUNET_ATS_APPLICATION_SERVICE_H +#define GNUNET_ATS_APPLICATION_SERVICE_H + +#include "gnunet_constants.h" +#include "gnunet_util_lib.h" + +/** + * Handle to the ATS subsystem for making suggestions about + * connections the peer would like to have. + */ +struct GNUNET_ATS_ConnectivityHandle; + + +/** + * Initialize the ATS connectivity suggestion client handle. + * + * @param cfg configuration to use + * @return ats connectivity handle, NULL on error + */ +struct GNUNET_ATS_ConnectivityHandle * +GNUNET_ATS_connectivity_init (const struct GNUNET_CONFIGURATION_Handle *cfg); + + +/** + * Shutdown ATS connectivity suggestion client. + * + * @param ch handle to destroy + */ +void +GNUNET_ATS_connectivity_done (struct GNUNET_ATS_ConnectivityHandle *ch); + + +/** + * Handle for address suggestion requests. + */ +struct GNUNET_ATS_ConnectivitySuggestHandle; + + +/** + * An application would like to communicate with a peer. ATS should + * allocate bandwith using a suitable address for requiremetns @a pk + * to transport. + * + * @param ch handle + * @param peer identity of the peer we need an address for + * @param pk what kind of connectivity will the application require (can be + * #GNUNET_MQ_PREFERENCE_NONE, we will still try to connect) + * @param bw desired bandwith, can be zero (we will still try to connect) + * @return suggestion handle, NULL if request is already pending + */ +struct GNUNET_ATS_ConnectivitySuggestHandle * +GNUNET_ATS_connectivity_suggest (struct GNUNET_ATS_ConnectivityHandle *ch, + const struct GNUNET_PeerIdentity *peer, + enum GNUNET_MQ_PreferenceKind pk, + struct GNUNET_BANDWIDTH_Value32NBO bw); + + +/** + * We no longer care about communicating with a peer. + * + * @param sh handle + */ +void +GNUNET_ATS_connectivity_suggest_cancel (struct GNUNET_ATS_ConnectivitySuggestHandle *sh); + +/** @} */ /* end of group */ + +/* end of file gnunet_ats_application_service.h */ -- cgit v1.2.3