aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_multicast_service.h2
-rw-r--r--src/include/gnunet_psyc_service.h2
-rw-r--r--src/include/gnunet_social_service.h2
3 files changed, 6 insertions, 0 deletions
diff --git a/src/include/gnunet_multicast_service.h b/src/include/gnunet_multicast_service.h
index f1c4813a4..6ce9ce42c 100644
--- a/src/include/gnunet_multicast_service.h
+++ b/src/include/gnunet_multicast_service.h
@@ -277,6 +277,7 @@ struct GNUNET_MULTICAST_JoinHandle;
277 * @param jh Join request handle. 277 * @param jh Join request handle.
278 * @param is_admitted #GNUNET_YES if joining is approved, 278 * @param is_admitted #GNUNET_YES if joining is approved,
279 * #GNUNET_NO if it is disapproved 279 * #GNUNET_NO if it is disapproved
280 * @param admitted_since Message ID the member is admitted since.
280 * @param relay_count Number of relays given. 281 * @param relay_count Number of relays given.
281 * @param relays Array of suggested peers that might be useful relays to use 282 * @param relays Array of suggested peers that might be useful relays to use
282 * when joining the multicast group (essentially a list of peers that 283 * when joining the multicast group (essentially a list of peers that
@@ -293,6 +294,7 @@ struct GNUNET_MULTICAST_JoinHandle;
293void 294void
294GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh, 295GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh,
295 int is_admitted, 296 int is_admitted,
297 uint64_t admitted_since,
296 unsigned int relay_count, 298 unsigned int relay_count,
297 const struct GNUNET_PeerIdentity *relays, 299 const struct GNUNET_PeerIdentity *relays,
298 const struct GNUNET_MessageHeader *join_response); 300 const struct GNUNET_MessageHeader *join_response);
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h
index 14a8b6e09..ec6028772 100644
--- a/src/include/gnunet_psyc_service.h
+++ b/src/include/gnunet_psyc_service.h
@@ -258,6 +258,7 @@ typedef int
258 * @param jh Join request handle. 258 * @param jh Join request handle.
259 * @param is_admitted #GNUNET_YES if joining is approved, 259 * @param is_admitted #GNUNET_YES if joining is approved,
260 * #GNUNET_NO if it is disapproved. 260 * #GNUNET_NO if it is disapproved.
261 * @param admitted_since Message ID the member is admitted since.
261 * @param relay_count Number of relays given. 262 * @param relay_count Number of relays given.
262 * @param relays Array of suggested peers that might be useful relays to use 263 * @param relays Array of suggested peers that might be useful relays to use
263 * when joining the multicast group (essentially a list of peers that 264 * when joining the multicast group (essentially a list of peers that
@@ -274,6 +275,7 @@ typedef int
274void 275void
275GNUNET_PSYC_join_decision (struct GNUNET_PSYC_JoinHandle *jh, 276GNUNET_PSYC_join_decision (struct GNUNET_PSYC_JoinHandle *jh,
276 int is_admitted, 277 int is_admitted,
278 uint64_t admitted_since,
277 unsigned int relay_count, 279 unsigned int relay_count,
278 const struct GNUNET_PeerIdentity *relays, 280 const struct GNUNET_PeerIdentity *relays,
279 const char *method_name, 281 const char *method_name,
diff --git a/src/include/gnunet_social_service.h b/src/include/gnunet_social_service.h
index fd20536a4..1728d391c 100644
--- a/src/include/gnunet_social_service.h
+++ b/src/include/gnunet_social_service.h
@@ -73,6 +73,7 @@ struct GNUNET_SOCIAL_Slicer;
73 * to a @e method. 73 * to a @e method.
74 * 74 *
75 * @param cls Closure. 75 * @param cls Closure.
76 * @param nym The sender of the message. NULL for the ego's own messages to the home.
76 * @param full_method_name Original method name from PSYC (may be more 77 * @param full_method_name Original method name from PSYC (may be more
77 * specific than the registered method name due to try-and-slice matching). 78 * specific than the registered method name due to try-and-slice matching).
78 79
@@ -88,6 +89,7 @@ struct GNUNET_SOCIAL_Slicer;
88 * @param flags Message flags indicating fragmentation status. 89 * @param flags Message flags indicating fragmentation status.
89 */ 90 */
90typedef int (*GNUNET_SOCIAL_Method)(void *cls, 91typedef int (*GNUNET_SOCIAL_Method)(void *cls,
92 struct GNUNET_SOCIAL_Nym *nym,
91 const char *full_method_name, 93 const char *full_method_name,
92 uint64_t message_id, 94 uint64_t message_id,
93 size_t modifier_count, 95 size_t modifier_count,