aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_psyc_service.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2013-08-24 06:25:10 +0000
committerGabor X Toth <*@tg-x.net>2013-08-24 06:25:10 +0000
commitdf6facef1ea4d8dd7fe836d78473aa66270d6684 (patch)
treee1a9e4585e0f549f1c9d9217e362cc2539527dd0 /src/include/gnunet_psyc_service.h
parent9602e23163e6d562197b40c361a46eead3276489 (diff)
downloadgnunet-df6facef1ea4d8dd7fe836d78473aa66270d6684.tar.gz
gnunet-df6facef1ea4d8dd7fe836d78473aa66270d6684.zip
multicast: added replay_end(), returning replay handle from join_decision(); removed admitted/effective since where not needed; social: keep_active flag instead of away
Diffstat (limited to 'src/include/gnunet_psyc_service.h')
-rw-r--r--src/include/gnunet_psyc_service.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h
index ec6028772..7caf8a40f 100644
--- a/src/include/gnunet_psyc_service.h
+++ b/src/include/gnunet_psyc_service.h
@@ -258,7 +258,6 @@ 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.
262 * @param relay_count Number of relays given. 261 * @param relay_count Number of relays given.
263 * @param relays Array of suggested peers that might be useful relays to use 262 * @param relays Array of suggested peers that might be useful relays to use
264 * when joining the multicast group (essentially a list of peers that 263 * when joining the multicast group (essentially a list of peers that
@@ -275,7 +274,6 @@ typedef int
275void 274void
276GNUNET_PSYC_join_decision (struct GNUNET_PSYC_JoinHandle *jh, 275GNUNET_PSYC_join_decision (struct GNUNET_PSYC_JoinHandle *jh,
277 int is_admitted, 276 int is_admitted,
278 uint64_t admitted_since,
279 unsigned int relay_count, 277 unsigned int relay_count,
280 const struct GNUNET_PeerIdentity *relays, 278 const struct GNUNET_PeerIdentity *relays,
281 const char *method_name, 279 const char *method_name,
@@ -625,8 +623,7 @@ GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel,
625void 623void
626GNUNET_PSYC_channel_slave_remove (struct GNUNET_PSYC_Channel *channel, 624GNUNET_PSYC_channel_slave_remove (struct GNUNET_PSYC_Channel *channel,
627 const struct GNUNET_CRYPTO_EccPublicKey *slave_key, 625 const struct GNUNET_CRYPTO_EccPublicKey *slave_key,
628 uint64_t announced_at, 626 uint64_t announced_at);
629 uint64_t effective_since);
630 627
631 628
632/** 629/**