-get rid of channel hierarchy for PSYC level, will be kept in user interface
authorChristian Grothoff <christian@grothoff.org>
Tue, 11 Jun 2013 09:58:05 +0000 (09:58 +0000)
committerChristian Grothoff <christian@grothoff.org>
Tue, 11 Jun 2013 09:58:05 +0000 (09:58 +0000)
src/include/gnunet_psyc_service.h

index 22b27e409606baabe39c1a6a6dd0176d61b12811..c4211f962e9ec361ef42a33a4d589f87dc511b41 100644 (file)
@@ -140,7 +140,6 @@ struct GNUNET_PSYC_Channel;
  * events.
  *
  * @param cfg configuration to use (to connect to PSYC service)
- * @param parent parent channel, NULL for top-level channels
  * @param name name of the channel, only important if this is a subchannel
  * @param method_count number of methods in 'methods' array
  * @param methods functions to invoke on messages received from members,
@@ -159,7 +158,6 @@ struct GNUNET_PSYC_Channel;
  */
 struct GNUNET_PSYC_Channel *
 GNUNET_PSYC_channel_start (const struct GNUNET_CONFIGURATION_Handle *cfg, 
-                          struct GNUNET_PSYC_Channel *parent,
                           const char *name,
                           unsigned int method_count,
                           const struct GNUNET_PSYC_Method *methods,
@@ -261,8 +259,7 @@ struct GNUNET_PSYC_ChannelTransmitHandle;
 
 
 /**
- * Send a message to call a method to all members in the PSYC channel
- * (and all parent channels if this is a subchannel).
+ * Send a message to call a method to all members in the PSYC channel.
  *
  * @param channel handle to the PSYC multicast group
  * @param increment_group_generation GNUNET_YES if we need to increment
@@ -290,8 +287,7 @@ GNUNET_PSYC_channel_notify_transmit_ready_cancel (struct GNUNET_PSYC_ChannelTran
 
 
 /**
- * End a PSYC channel.  Note that subchannels MUST be ended before
- * their parents.
+ * End a PSYC channel.
  *
  * @param channel PSYC channel to terminate
  */