aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/messenger_api_room.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/messenger/messenger_api_room.h')
-rw-r--r--src/messenger/messenger_api_room.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/messenger/messenger_api_room.h b/src/messenger/messenger_api_room.h
index 320312f0c..cf8ab782b 100644
--- a/src/messenger/messenger_api_room.h
+++ b/src/messenger/messenger_api_room.h
@@ -59,7 +59,7 @@ struct GNUNET_MESSENGER_Room
59/** 59/**
60 * Creates and allocates a new room for a <i>handle</i> with a given <i>key</i> for the client API. 60 * Creates and allocates a new room for a <i>handle</i> with a given <i>key</i> for the client API.
61 * 61 *
62 * @param[in/out] handle Handle 62 * @param[in,out] handle Handle
63 * @param[in] key Key of room 63 * @param[in] key Key of room
64 * @return New room 64 * @return New room
65 */ 65 */
@@ -70,7 +70,7 @@ create_room (struct GNUNET_MESSENGER_Handle *handle,
70/** 70/**
71 * Destroys a room and frees its memory fully from the client API. 71 * Destroys a room and frees its memory fully from the client API.
72 * 72 *
73 * @param[in/out] room Room 73 * @param[in,out] room Room
74 */ 74 */
75void 75void
76destroy_room (struct GNUNET_MESSENGER_Room *room); 76destroy_room (struct GNUNET_MESSENGER_Room *room);
@@ -106,8 +106,8 @@ get_room_sender (const struct GNUNET_MESSENGER_Room *room,
106 * The contact of the message's sender could be updated or even created. It may not be freed or destroyed though! 106 * The contact of the message's sender could be updated or even created. It may not be freed or destroyed though!
107 * (The contact may still be in use for old messages...) 107 * (The contact may still be in use for old messages...)
108 * 108 *
109 * @param[in/out] room Room 109 * @param[in,out] room Room
110 * @param[in/out] sender Contact of sender 110 * @param[in,out] sender Contact of sender
111 * @param[in] message Message 111 * @param[in] message Message
112 * @param[in] hash Hash of message 112 * @param[in] hash Hash of message
113 * @return Contact of sender 113 * @return Contact of sender
@@ -122,9 +122,9 @@ handle_room_message (struct GNUNET_MESSENGER_Room *room,
122 * Iterates through all members of a given <i>room</i> to forward each of them to a selected 122 * Iterates through all members of a given <i>room</i> to forward each of them to a selected
123 * <i>callback</i> with a custom closure. 123 * <i>callback</i> with a custom closure.
124 * 124 *
125 * @param[in/out] room Room 125 * @param[in,out] room Room
126 * @param[in] callback Function called for each member 126 * @param[in] callback Function called for each member
127 * @param[in/out] cls Closure 127 * @param[in,out] cls Closure
128 * @return Amount of members iterated 128 * @return Amount of members iterated
129 */ 129 */
130int 130int