print active/inactive information
[oweals/gnunet.git] / src / include / gnunet_psyc_service.h
index 4f4c99c1f9bd8844c3287333401d2a0fd8ba1389..4806767fbb7db7a0b79dff92691c307b446e8e99 100644 (file)
@@ -307,8 +307,10 @@ struct GNUNET_PSYC_JoinHandle;
 /**
  * Method called from PSYC upon receiving part of a message.
  *
- * @param cls Closure.
- * @param msg Message part, one of the following types:
+ * @param cls  Closure.
+ * @param message_id  Sequence number of the message.
+ * @param flags  OR'ed GNUNET_PSYC_MessageFlags
+ * @param msg  Message part, one of the following types:
  * - GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_HEADER
  * - GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD
  * - GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER
@@ -469,7 +471,7 @@ typedef int
  *         Only needed during the first call to this callback at the beginning
  *         of the modifier.  In case of subsequent calls asking for value
  *         continuations @a oper is set to #NULL.
- * @param[out] value_size  Where to write the full size of the value.
+ * @param[out] full_value_size  Where to write the full size of the value.
  *         Only needed during the first call to this callback at the beginning
  *         of the modifier.  In case of subsequent calls asking for value
  *         continuations @a value_size is set to #NULL.
@@ -487,7 +489,7 @@ typedef int
                                        uint16_t *data_size,
                                        void *data,
                                        uint8_t *oper,
-                                       uint32_t *value_size);
+                                       uint32_t *full_value_size);
 
 /**
  * Flags for transmitting messages to a channel by the master.