aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_ats_service.h5
-rw-r--r--src/include/gnunet_transport_plugin.h2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/include/gnunet_ats_service.h b/src/include/gnunet_ats_service.h
index 932446400..0268391cd 100644
--- a/src/include/gnunet_ats_service.h
+++ b/src/include/gnunet_ats_service.h
@@ -730,7 +730,10 @@ GNUNET_ATS_address_in_use (struct GNUNET_ATS_SchedulingHandle *sh,
730 730
731 731
732/** 732/**
733 * A session got destroyed, stop including it as a valid address. 733 * An address got destroyed, stop including it as a valid address.
734 *
735 * If a session is given, only the session will be removed, if no session is
736 * given the full address will be deleted.
734 * 737 *
735 * @param sh handle 738 * @param sh handle
736 * @param address the address 739 * @param address the address
diff --git a/src/include/gnunet_transport_plugin.h b/src/include/gnunet_transport_plugin.h
index 675980549..308a3700d 100644
--- a/src/include/gnunet_transport_plugin.h
+++ b/src/include/gnunet_transport_plugin.h
@@ -78,7 +78,7 @@ struct SessionHeader
78 */ 78 */
79typedef void 79typedef void
80(*GNUNET_TRANSPORT_SessionEnd) (void *cls, 80(*GNUNET_TRANSPORT_SessionEnd) (void *cls,
81 const struct GNUNET_PeerIdentity *peer, 81 const struct GNUNET_HELLO_Address *address,
82 struct Session *session); 82 struct Session *session);
83 83
84/** 84/**