aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_identity_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-07-17 21:46:36 +0000
committerChristian Grothoff <christian@grothoff.org>2013-07-17 21:46:36 +0000
commitfc420d620e874f4dcba2ba37c544407019076930 (patch)
treefa47bdb9bcc5b5c2882d1a8e1f30c5e653628b6f /src/include/gnunet_identity_service.h
parentc373637ec60d7e2b808a1c57d4e96ea17d444358 (diff)
downloadgnunet-fc420d620e874f4dcba2ba37c544407019076930.tar.gz
gnunet-fc420d620e874f4dcba2ba37c544407019076930.zip
-removing obsolte stream message types
Diffstat (limited to 'src/include/gnunet_identity_service.h')
-rw-r--r--src/include/gnunet_identity_service.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_identity_service.h b/src/include/gnunet_identity_service.h
index 2edd3bfdf..1d67c568c 100644
--- a/src/include/gnunet_identity_service.h
+++ b/src/include/gnunet_identity_service.h
@@ -192,15 +192,15 @@ GNUNET_IDENTITY_disconnect (struct GNUNET_IDENTITY_Handle *h);
192 * 192 *
193 * @param id identity service to use 193 * @param id identity service to use
194 * @param identifier desired identifier 194 * @param identifier desired identifier
195 * @param cb function to call with the result (will only be called once) 195 * @param cont function to call with the result (will only be called once)
196 * @param cb_cls closure for cb 196 * @param cont_cls closure for cont
197 * @return handle to abort the operation 197 * @return handle to abort the operation
198 */ 198 */
199struct GNUNET_IDENTITY_Operation * 199struct GNUNET_IDENTITY_Operation *
200GNUNET_IDENTITY_create (struct GNUNET_IDENTITY_Handle *id, 200GNUNET_IDENTITY_create (struct GNUNET_IDENTITY_Handle *id,
201 const char *identifier, 201 const char *identifier,
202 GNUNET_IDENTITY_Callback cb, 202 GNUNET_IDENTITY_Continuation cont,
203 void *cb_cls); 203 void *cont_cls);
204 204
205 205
206/** 206/**