diff options
author | Gabor X Toth <*@tg-x.net> | 2013-08-24 06:25:10 +0000 |
---|---|---|
committer | Gabor X Toth <*@tg-x.net> | 2013-08-24 06:25:10 +0000 |
commit | df6facef1ea4d8dd7fe836d78473aa66270d6684 (patch) | |
tree | e1a9e4585e0f549f1c9d9217e362cc2539527dd0 /src/include/gnunet_psyc_service.h | |
parent | 9602e23163e6d562197b40c361a46eead3276489 (diff) |
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.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h index ec6028772c..7caf8a40f2 100644 --- a/src/include/gnunet_psyc_service.h +++ b/src/include/gnunet_psyc_service.h @@ -258,7 +258,6 @@ typedef int * @param jh Join request handle. * @param is_admitted #GNUNET_YES if joining is approved, * #GNUNET_NO if it is disapproved. - * @param admitted_since Message ID the member is admitted since. * @param relay_count Number of relays given. * @param relays Array of suggested peers that might be useful relays to use * when joining the multicast group (essentially a list of peers that @@ -275,7 +274,6 @@ typedef int void GNUNET_PSYC_join_decision (struct GNUNET_PSYC_JoinHandle *jh, int is_admitted, - uint64_t admitted_since, unsigned int relay_count, const struct GNUNET_PeerIdentity *relays, const char *method_name, @@ -625,8 +623,7 @@ GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel, void GNUNET_PSYC_channel_slave_remove (struct GNUNET_PSYC_Channel *channel, const struct GNUNET_CRYPTO_EccPublicKey *slave_key, - uint64_t announced_at, - uint64_t effective_since); + uint64_t announced_at); /** |