aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_validation.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-02-02 22:59:24 +0000
committerChristian Grothoff <christian@grothoff.org>2015-02-02 22:59:24 +0000
commitffd9516faaaa7d2a9595039d10a759bb07988b77 (patch)
treed494309d403532f898310f83fb6e75347777b0e2 /src/transport/gnunet-service-transport_validation.h
parent17aa8594c3970f4921146fa5ec3a8e81926e30f6 (diff)
downloadgnunet-ffd9516faaaa7d2a9595039d10a759bb07988b77.tar.gz
gnunet-ffd9516faaaa7d2a9595039d10a759bb07988b77.zip
GST_validation_set_address_use does not need the session
Diffstat (limited to 'src/transport/gnunet-service-transport_validation.h')
-rw-r--r--src/transport/gnunet-service-transport_validation.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/transport/gnunet-service-transport_validation.h b/src/transport/gnunet-service-transport_validation.h
index ce5c427a1..337b47123 100644
--- a/src/transport/gnunet-service-transport_validation.h
+++ b/src/transport/gnunet-service-transport_validation.h
@@ -52,14 +52,12 @@ GST_validation_stop (void);
52 * Based on this, the validation module will measure latency for the 52 * Based on this, the validation module will measure latency for the
53 * address more or less often. 53 * address more or less often.
54 * 54 *
55 * @param address the address 55 * @param address the address that we are now using (or not)
56 * @param session the session
57 * @param in_use #GNUNET_YES if we are now using the address for a connection, 56 * @param in_use #GNUNET_YES if we are now using the address for a connection,
58 * #GNUNET_NO if we are no longer using the address for a connection 57 * #GNUNET_NO if we are no longer using the address for a connection
59 */ 58 */
60void 59void
61GST_validation_set_address_use (const struct GNUNET_HELLO_Address *address, 60GST_validation_set_address_use (const struct GNUNET_HELLO_Address *address,
62 struct Session *session,
63 int in_use); 61 int in_use);
64 62
65 63