aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_scheduling.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-10-05 15:09:28 +0200
committerChristian Grothoff <christian@grothoff.org>2019-10-05 15:09:28 +0200
commitc4e9ba925ffd758aaa3feee2ccfc0b76f26fe207 (patch)
treecac3ce030d77b4cbe7c7dc62ed58cfe6d24f73e1 /src/ats/gnunet-service-ats_scheduling.h
parentfbb71d527c7d6babf269a8fefce1db291b9f7068 (diff)
downloadgnunet-c4e9ba925ffd758aaa3feee2ccfc0b76f26fe207.tar.gz
gnunet-c4e9ba925ffd758aaa3feee2ccfc0b76f26fe207.zip
global reindent, now with uncrustify hook enabled
Diffstat (limited to 'src/ats/gnunet-service-ats_scheduling.h')
-rw-r--r--src/ats/gnunet-service-ats_scheduling.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/ats/gnunet-service-ats_scheduling.h b/src/ats/gnunet-service-ats_scheduling.h
index b2575ca60..d68306988 100644
--- a/src/ats/gnunet-service-ats_scheduling.h
+++ b/src/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,13 @@ 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
64 uint32_t session_id, 64 GNUNET_PeerIdentity *peer,
65 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out, 65 uint32_t session_id,
66 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in); 66 struct GNUNET_BANDWIDTH_Value32NBO
67 bandwidth_out,
68 struct GNUNET_BANDWIDTH_Value32NBO
69 bandwidth_in);
67 70
68 71
69/** 72/**
@@ -73,7 +76,7 @@ GAS_scheduling_transmit_address_suggestion(const struct GNUNET_PeerIdentity *pee
73 * @param m the request message 76 * @param m the request message
74 */ 77 */
75void 78void
76GAS_handle_address_add(const struct AddressAddMessage *m); 79GAS_handle_address_add (const struct AddressAddMessage *m);
77 80
78 81
79/** 82/**
@@ -82,7 +85,7 @@ GAS_handle_address_add(const struct AddressAddMessage *m);
82 * @param m the request message 85 * @param m the request message
83 */ 86 */
84void 87void
85GAS_handle_address_update(const struct AddressUpdateMessage *m); 88GAS_handle_address_update (const struct AddressUpdateMessage *m);
86 89
87 90
88/** 91/**
@@ -91,7 +94,7 @@ GAS_handle_address_update(const struct AddressUpdateMessage *m);
91 * @param m the request message 94 * @param m the request message
92 */ 95 */
93void 96void
94GAS_handle_address_destroyed(const struct AddressDestroyedMessage *m); 97GAS_handle_address_destroyed (const struct AddressDestroyedMessage *m);
95 98
96 99
97#endif 100#endif