aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/gnunet-service-messenger_ego_store.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/messenger/gnunet-service-messenger_ego_store.h')
-rw-r--r--src/messenger/gnunet-service-messenger_ego_store.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/messenger/gnunet-service-messenger_ego_store.h b/src/messenger/gnunet-service-messenger_ego_store.h
index a08310aa3..dbe6c05b9 100644
--- a/src/messenger/gnunet-service-messenger_ego_store.h
+++ b/src/messenger/gnunet-service-messenger_ego_store.h
@@ -96,7 +96,7 @@ init_ego_store (struct GNUNET_MESSENGER_EgoStore *store,
96/** 96/**
97 * Clears an EGO-store, wipes its content and deallocates its memory. 97 * Clears an EGO-store, wipes its content and deallocates its memory.
98 * 98 *
99 * @param[in/out] store EGO-store 99 * @param[in,out] store EGO-store
100 */ 100 */
101void 101void
102clear_ego_store (struct GNUNET_MESSENGER_EgoStore *store); 102clear_ego_store (struct GNUNET_MESSENGER_EgoStore *store);
@@ -105,7 +105,7 @@ clear_ego_store (struct GNUNET_MESSENGER_EgoStore *store);
105 * Creates a new EGO which will be registered to a <i>store</i> under 105 * Creates a new EGO which will be registered to a <i>store</i> under
106 * a specific <i>identifier</i>. 106 * a specific <i>identifier</i>.
107 * 107 *
108 * @param[in/out] store EGO-store 108 * @param[in,out] store EGO-store
109 * @param[in] identifier Identifier string 109 * @param[in] identifier Identifier string
110 */ 110 */
111void 111void
@@ -116,9 +116,9 @@ create_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
116 * Binds an EGO which was registered to a <i>store</i> under 116 * Binds an EGO which was registered to a <i>store</i> under
117 * a specific <i>identifier</i> to a given <i>handle</i> 117 * a specific <i>identifier</i> to a given <i>handle</i>
118 * 118 *
119 * @param[in/out] store EGO-store 119 * @param[in,out] store EGO-store
120 * @param[in] identifier Identifier string 120 * @param[in] identifier Identifier string
121 * @param[in/out] handle Handle 121 * @param[in,out] handle Handle
122 */ 122 */
123void 123void
124bind_store_ego (struct GNUNET_MESSENGER_EgoStore *store, 124bind_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
@@ -129,9 +129,9 @@ bind_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
129 * Binds an EGO which was registered to a <i>store</i> under 129 * Binds an EGO which was registered to a <i>store</i> under
130 * a specific <i>identifier</i> to a given <i>handle</i> 130 * a specific <i>identifier</i> to a given <i>handle</i>
131 * 131 *
132 * @param[in/out] store EGO-store 132 * @param[in,out] store EGO-store
133 * @param[in] identifier Identifier string 133 * @param[in] identifier Identifier string
134 * @param[in/out] handle Handle 134 * @param[in,out] handle Handle
135 */ 135 */
136void 136void
137unbind_store_ego (struct GNUNET_MESSENGER_EgoStore *store, 137unbind_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
@@ -142,7 +142,7 @@ unbind_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
142 * Lookups an EGO which was registered to a <i>store</i> under 142 * Lookups an EGO which was registered to a <i>store</i> under
143 * a specific <i>identifier</i>. 143 * a specific <i>identifier</i>.
144 * 144 *
145 * @param[in/out] store EGO-store 145 * @param[in,out] store EGO-store
146 * @param[in] identifier Identifier string 146 * @param[in] identifier Identifier string
147 * @param[in] lookup Lookup callback (non-NULL) 147 * @param[in] lookup Lookup callback (non-NULL)
148 * @param[in] cls Closure 148 * @param[in] cls Closure
@@ -157,7 +157,7 @@ lookup_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
157 * Updates the registration of an EGO to a <i>store</i> under 157 * Updates the registration of an EGO to a <i>store</i> under
158 * a specific <i>identifier</i> with a new <i>key</i>. 158 * a specific <i>identifier</i> with a new <i>key</i>.
159 * 159 *
160 * @param[in/out] store EGO-store 160 * @param[in,out] store EGO-store
161 * @param[in] identifier Identifier string 161 * @param[in] identifier Identifier string
162 * @param[in] key Private EGO key 162 * @param[in] key Private EGO key
163 * @return Updated EGO 163 * @return Updated EGO
@@ -171,7 +171,7 @@ update_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
171 * Deletes the registration of an EGO in a <i>store</i> under 171 * Deletes the registration of an EGO in a <i>store</i> under
172 * a specific <i>identifier</i>. 172 * a specific <i>identifier</i>.
173 * 173 *
174 * @param[in/out] store EGO-store 174 * @param[in,out] store EGO-store
175 * @param[in] identifier Identifier string 175 * @param[in] identifier Identifier string
176 */ 176 */
177void 177void
@@ -183,7 +183,7 @@ delete_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
183 * a different one under a specific <i>new_identifier</i> replacing 183 * a different one under a specific <i>new_identifier</i> replacing
184 * its old one. 184 * its old one.
185 * 185 *
186 * @param[in/out] store EGO-store 186 * @param[in,out] store EGO-store
187 * @param[in] old_identifier Old identifier string 187 * @param[in] old_identifier Old identifier string
188 * @param[in] new_identifier New identifier string 188 * @param[in] new_identifier New identifier string
189 */ 189 */
@@ -196,7 +196,7 @@ rename_store_ego (struct GNUNET_MESSENGER_EgoStore *store,
196 * Replaces the registered EGO in a <i>store</i> under a specific 196 * Replaces the registered EGO in a <i>store</i> under a specific
197 * <i>identifier</i> with a newly created one. 197 * <i>identifier</i> with a newly created one.
198 * 198 *
199 * @param[in/out] store EGO-store 199 * @param[in,out] store EGO-store
200 * @param[in] identifier Identifier string 200 * @param[in] identifier Identifier string
201 */ 201 */
202void 202void