- correct port
[oweals/gnunet.git] / src / transport / gnunet-service-transport_validation.h
index a3692e3cf596cafc1be66c409bae0fdd6ce69ef5..9b1063be3740d3d05f432c3f1387ada27300e8eb 100644 (file)
@@ -51,24 +51,21 @@ GST_validation_stop (void);
  * Based on this, the validation module will measure latency for the
  * address more or less often.
  *
- * @param sender peer FIXME: redundant!
  * @param address the address
  * @param session session
  * @param in_use GNUNET_YES if we are now using the address for a connection,
  *               GNUNET_NO if we are no longer using the address for a connection
  */
 void
-GST_validation_set_address_use (const struct GNUNET_PeerIdentity *sender,
-                               const struct GNUNET_HELLO_Address *address,
-                               struct Session *session,
-                               int in_use);
+GST_validation_set_address_use (const struct GNUNET_HELLO_Address *address,
+                                struct Session *session, int in_use);
 
 
 /**
  * Query validation about the latest observed latency on a given
  * address.
  *
- * @param sender peer 
+ * @param sender peer
  * @param address the address
  * @param session session
  * @return observed latency of the address, FOREVER if the address was
@@ -76,8 +73,8 @@ GST_validation_set_address_use (const struct GNUNET_PeerIdentity *sender,
  */
 struct GNUNET_TIME_Relative
 GST_validation_get_address_latency (const struct GNUNET_PeerIdentity *sender,
-                                   const struct GNUNET_HELLO_Address *address,
-                                   struct Session *session);
+                                    const struct GNUNET_HELLO_Address *address,
+                                    struct Session *session);
 
 
 /**
@@ -91,8 +88,8 @@ GST_validation_get_address_latency (const struct GNUNET_PeerIdentity *sender,
 void
 GST_validation_handle_ping (const struct GNUNET_PeerIdentity *sender,
                             const struct GNUNET_MessageHeader *hdr,
-                            const struct GNUNET_HELLO_Address *sender_address, 
-                           struct Session *session);
+                            const struct GNUNET_HELLO_Address *sender_address,
+                            struct Session *session);
 
 
 /**
@@ -138,7 +135,8 @@ typedef void (*GST_ValidationAddressCallback) (void *cls,
                                                valid_until,
                                                struct GNUNET_TIME_Absolute
                                                validation_block,
-                                               const struct GNUNET_HELLO_Address *address);
+                                               const struct GNUNET_HELLO_Address
+                                               * address);
 
 
 /**