aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/gnunet-service-transport_neighbours.h')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.h b/src/transport/gnunet-service-transport_neighbours.h
index 26b3a11b8..9c64f79ec 100644
--- a/src/transport/gnunet-service-transport_neighbours.h
+++ b/src/transport/gnunet-service-transport_neighbours.h
@@ -152,6 +152,8 @@ GST_neighbours_iterate (GST_NeighbourIterator cb,
152 * @param sender_address address of the other peer, NULL if other peer 152 * @param sender_address address of the other peer, NULL if other peer
153 * connected to us 153 * connected to us
154 * @param sender_address_len number of bytes in sender_address 154 * @param sender_address_len number of bytes in sender_address
155 * @param ats performance data
156 * @param ats_count number of entries in ats (excluding 0-termination)
155 * @return GNUNET_OK if the message was well-formed, GNUNET_SYSERR if not 157 * @return GNUNET_OK if the message was well-formed, GNUNET_SYSERR if not
156 */ 158 */
157int 159int
@@ -159,7 +161,9 @@ GST_neighbours_handle_pong (const struct GNUNET_PeerIdentity *sender,
159 const struct GNUNET_MessageHeader *hdr, 161 const struct GNUNET_MessageHeader *hdr,
160 const char *plugin_name, 162 const char *plugin_name,
161 const void *sender_address, 163 const void *sender_address,
162 size_t sender_address_len); 164 size_t sender_address_len,
165 const struct GNUNET_TRANSPORT_ATS_Information *ats,
166 uint32_t ats_count);
163 167
164 168
165/** 169/**
@@ -171,6 +175,8 @@ GST_neighbours_handle_pong (const struct GNUNET_PeerIdentity *sender,
171 * @param sender_address address of the other peer, NULL if other peer 175 * @param sender_address address of the other peer, NULL if other peer
172 * connected to us 176 * connected to us
173 * @param sender_address_len number of bytes in sender_address 177 * @param sender_address_len number of bytes in sender_address
178 * @param ats performance data
179 * @param ats_count number of entries in ats (excluding 0-termination)
174 * @return GNUNET_OK if the message was well-formed, GNUNET_SYSERR if not 180 * @return GNUNET_OK if the message was well-formed, GNUNET_SYSERR if not
175 */ 181 */
176int 182int
@@ -178,7 +184,9 @@ GST_neighbours_handle_connect (const struct GNUNET_PeerIdentity *sender,
178 const struct GNUNET_MessageHeader *hdr, 184 const struct GNUNET_MessageHeader *hdr,
179 const char *plugin_name, 185 const char *plugin_name,
180 const void *sender_address, 186 const void *sender_address,
181 size_t sender_address_len); 187 size_t sender_address_len,
188 const struct GNUNET_TRANSPORT_ATS_Information *ats,
189 uint32_t ats_count);
182 190
183 191
184/** 192/**