aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-05 08:18:52 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-05 08:18:52 +0000
commit6b0266fa3464b54f37ec1e1f2ac0725b318b0027 (patch)
tree5c9243cb0b8d59872c70ee28fdf7284b4b7b4f8f /src/transport/gnunet-service-transport_neighbours.h
parent857cb6a5341bc27cf1997fc48c2df173c4380fd2 (diff)
downloadgnunet-6b0266fa3464b54f37ec1e1f2ac0725b318b0027.tar.gz
gnunet-6b0266fa3464b54f37ec1e1f2ac0725b318b0027.zip
more client code
Diffstat (limited to 'src/transport/gnunet-service-transport_neighbours.h')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.h b/src/transport/gnunet-service-transport_neighbours.h
index 5473a80db..27e7d20a9 100644
--- a/src/transport/gnunet-service-transport_neighbours.h
+++ b/src/transport/gnunet-service-transport_neighbours.h
@@ -124,9 +124,13 @@ GST_neighbours_force_disconnect (const struct GNUNET_PeerIdentity *target);
124 * 124 *
125 * @param cls closure 125 * @param cls closure
126 * @param neighbour identity of the neighbour 126 * @param neighbour identity of the neighbour
127 * @param ats performance data
128 * @param ats_count number of entries in ats (excluding 0-termination)
127 */ 129 */
128typedef void (*GST_NeighbourIterator)(void *cls, 130typedef void (*GST_NeighbourIterator)(void *cls,
129 const struct GNUNET_PeerIdentity *neighbour); 131 const struct GNUNET_PeerIdentity *neighbour,
132 const struct GNUNET_TRANSPORT_ATS_Information *ats,
133 uint32_t ats_count);
130 134
131 135
132/** 136/**