summaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_scheduling.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ats/gnunet-service-ats_scheduling.h')
-rw-r--r--src/ats/gnunet-service-ats_scheduling.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ats/gnunet-service-ats_scheduling.h b/src/ats/gnunet-service-ats_scheduling.h
index 30cceb97b..b2575ca60 100644
--- a/src/ats/gnunet-service-ats_scheduling.h
+++ b/src/ats/gnunet-service-ats_scheduling.h
@@ -11,12 +11,12 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20 20
21/** 21/**
22 * @file ats/gnunet-service-ats_scheduling.h 22 * @file ats/gnunet-service-ats_scheduling.h
@@ -37,7 +37,7 @@
37 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error 37 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
38 */ 38 */
39int 39int
40GAS_scheduling_add_client (struct GNUNET_SERVICE_Client *client); 40GAS_scheduling_add_client(struct GNUNET_SERVICE_Client *client);
41 41
42 42
43/** 43/**
@@ -47,7 +47,7 @@ GAS_scheduling_add_client (struct GNUNET_SERVICE_Client *client);
47 * @param client handle of the (now dead) client 47 * @param client handle of the (now dead) client
48 */ 48 */
49void 49void
50GAS_scheduling_remove_client (struct GNUNET_SERVICE_Client *client); 50GAS_scheduling_remove_client(struct GNUNET_SERVICE_Client *client);
51 51
52 52
53/** 53/**
@@ -60,10 +60,10 @@ GAS_scheduling_remove_client (struct GNUNET_SERVICE_Client *client);
60 * @param bandwidth_in assigned inbound bandwidth 60 * @param bandwidth_in assigned inbound bandwidth
61 */ 61 */
62void 62void
63GAS_scheduling_transmit_address_suggestion (const struct GNUNET_PeerIdentity *peer, 63GAS_scheduling_transmit_address_suggestion(const struct GNUNET_PeerIdentity *peer,
64 uint32_t session_id, 64 uint32_t session_id,
65 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out, 65 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
66 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in); 66 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
67 67
68 68
69/** 69/**
@@ -73,7 +73,7 @@ GAS_scheduling_transmit_address_suggestion (const struct GNUNET_PeerIdentity *pe
73 * @param m the request message 73 * @param m the request message
74 */ 74 */
75void 75void
76GAS_handle_address_add (const struct AddressAddMessage *m); 76GAS_handle_address_add(const struct AddressAddMessage *m);
77 77
78 78
79/** 79/**
@@ -82,7 +82,7 @@ GAS_handle_address_add (const struct AddressAddMessage *m);
82 * @param m the request message 82 * @param m the request message
83 */ 83 */
84void 84void
85GAS_handle_address_update (const struct AddressUpdateMessage *m); 85GAS_handle_address_update(const struct AddressUpdateMessage *m);
86 86
87 87
88/** 88/**
@@ -91,7 +91,7 @@ GAS_handle_address_update (const struct AddressUpdateMessage *m);
91 * @param m the request message 91 * @param m the request message
92 */ 92 */
93void 93void
94GAS_handle_address_destroyed (const struct AddressDestroyedMessage *m); 94GAS_handle_address_destroyed(const struct AddressDestroyedMessage *m);
95 95
96 96
97#endif 97#endif