aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/messenger_api_contact.h
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-09-07 20:44:52 +0100
committerWillow Liquorice <willow@howhill.com>2022-10-03 00:44:34 +0100
commitdd797c2c6c01520fa73b1fd335ccd42df86b1b4d (patch)
tree1f508fa523fa7c3400fbd4f95a344d7f44ce37c1 /src/messenger/messenger_api_contact.h
parent1d0bbddfefaefb6e3f5cd240e56462a6bef2fa09 (diff)
downloadgnunet-dd797c2c6c01520fa73b1fd335ccd42df86b1b4d.tar.gz
gnunet-dd797c2c6c01520fa73b1fd335ccd42df86b1b4d.zip
-DOC: Documentation cleanup pass through MESSENGER subsystem
Diffstat (limited to 'src/messenger/messenger_api_contact.h')
-rw-r--r--src/messenger/messenger_api_contact.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/messenger/messenger_api_contact.h b/src/messenger/messenger_api_contact.h
index b5410f998..6619d8fa2 100644
--- a/src/messenger/messenger_api_contact.h
+++ b/src/messenger/messenger_api_contact.h
@@ -50,7 +50,7 @@ create_contact (const struct GNUNET_IDENTITY_PublicKey *key);
50/** 50/**
51 * Destroys a contact and frees its memory fully. 51 * Destroys a contact and frees its memory fully.
52 * 52 *
53 * @param[in/out] contact Contact 53 * @param[in,out] contact Contact
54 */ 54 */
55void 55void
56destroy_contact (struct GNUNET_MESSENGER_Contact *contact); 56destroy_contact (struct GNUNET_MESSENGER_Contact *contact);
@@ -67,7 +67,7 @@ get_contact_name (const struct GNUNET_MESSENGER_Contact *contact);
67/** 67/**
68 * Changes the current name of a given <i>contact</i> by copying it from the parameter <i>name</i>. 68 * Changes the current name of a given <i>contact</i> by copying it from the parameter <i>name</i>.
69 * 69 *
70 * @param[in/out] contact Contact 70 * @param[in,out] contact Contact
71 * @param[in] name Name 71 * @param[in] name Name
72 */ 72 */
73void 73void
@@ -86,7 +86,7 @@ get_contact_key (const struct GNUNET_MESSENGER_Contact *contact);
86/** 86/**
87 * Increases the reference counter of a given <i>contact</i> which is zero as default. 87 * Increases the reference counter of a given <i>contact</i> which is zero as default.
88 * 88 *
89 * @param[in/out] contact Contact 89 * @param[in,out] contact Contact
90 */ 90 */
91void 91void
92increase_contact_rc (struct GNUNET_MESSENGER_Contact *contact); 92increase_contact_rc (struct GNUNET_MESSENGER_Contact *contact);
@@ -95,7 +95,7 @@ increase_contact_rc (struct GNUNET_MESSENGER_Contact *contact);
95 * Decreases the reference counter if possible (can not underflow!) of a given <i>contact</i> 95 * Decreases the reference counter if possible (can not underflow!) of a given <i>contact</i>
96 * and returns #GNUNET_YES if the counter is equal to zero, otherwise #GNUNET_NO. 96 * and returns #GNUNET_YES if the counter is equal to zero, otherwise #GNUNET_NO.
97 * 97 *
98 * @param[in/out] contact Contact 98 * @param[in,out] contact Contact
99 * @return #GNUNET_YES or #GNUNET_NO depending on the reference counter 99 * @return #GNUNET_YES or #GNUNET_NO depending on the reference counter
100 */ 100 */
101int 101int
@@ -106,7 +106,7 @@ decrease_contact_rc (struct GNUNET_MESSENGER_Contact *contact);
106 * 106 *
107 * @param[in] key Key of room 107 * @param[in] key Key of room
108 * @param[in] id Member id 108 * @param[in] id Member id
109 * @param[out] hash Member context 109 * @param[out] context Member context
110 */ 110 */
111void 111void
112get_context_from_member (const struct GNUNET_HashCode *key, 112get_context_from_member (const struct GNUNET_HashCode *key,