aboutsummaryrefslogtreecommitdiff
path: root/src/psycstore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-18 14:59:27 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-18 14:59:27 +0000
commitc654ca8072bc5768bd01c6b0d6db303b0d4e5025 (patch)
tree1d2929c0e15efe6835fa2e98cb8070a4646ae346 /src/psycstore
parent02eef607379528f1a28c8593dd98e233fcbefd69 (diff)
downloadgnunet-c654ca8072bc5768bd01c6b0d6db303b0d4e5025.tar.gz
gnunet-c654ca8072bc5768bd01c6b0d6db303b0d4e5025.zip
-doxygen fixes
Diffstat (limited to 'src/psycstore')
-rw-r--r--src/psycstore/psycstore_api.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/psycstore/psycstore_api.c b/src/psycstore/psycstore_api.c
index 02f29ecb1..207a91e58 100644
--- a/src/psycstore/psycstore_api.c
+++ b/src/psycstore/psycstore_api.c
@@ -948,8 +948,8 @@ GNUNET_PSYCSTORE_message_get_fragment (struct GNUNET_PSYCSTORE_Handle *h,
948 * 948 *
949 * @param h Handle for the PSYCstore. 949 * @param h Handle for the PSYCstore.
950 * @param channel_key Public key that identifies the channel. 950 * @param channel_key Public key that identifies the channel.
951 * @param mccb Callback to call with the result. 951 * @param ccb Callback to call with the result.
952 * @param mccb_cls Closure for the callback. 952 * @param ccb_cls Closure for the @a ccb callback.
953 * 953 *
954 * @return Handle that can be used to cancel the operation. 954 * @return Handle that can be used to cancel the operation.
955 */ 955 */
@@ -957,14 +957,14 @@ struct GNUNET_PSYCSTORE_OperationHandle *
957GNUNET_PSYCSTORE_counters_get (struct GNUNET_PSYCSTORE_Handle *h, 957GNUNET_PSYCSTORE_counters_get (struct GNUNET_PSYCSTORE_Handle *h,
958 struct GNUNET_CRYPTO_EddsaPublicKey *channel_key, 958 struct GNUNET_CRYPTO_EddsaPublicKey *channel_key,
959 GNUNET_PSYCSTORE_CountersCallback ccb, 959 GNUNET_PSYCSTORE_CountersCallback ccb,
960 void *mccb_cls) 960 void *ccb_cls)
961{ 961{
962 struct OperationRequest *req; 962 struct OperationRequest *req;
963 struct GNUNET_PSYCSTORE_OperationHandle *op 963 struct GNUNET_PSYCSTORE_OperationHandle *op
964 = GNUNET_malloc (sizeof (*op) + sizeof (*req)); 964 = GNUNET_malloc (sizeof (*op) + sizeof (*req));
965 op->h = h; 965 op->h = h;
966 op->data_cb = ccb; 966 op->data_cb = ccb;
967 op->cls = mccb_cls; 967 op->cls = ccb_cls;
968 968
969 req = (struct OperationRequest *) &op[1]; 969 req = (struct OperationRequest *) &op[1];
970 op->msg = (struct GNUNET_MessageHeader *) req; 970 op->msg = (struct GNUNET_MessageHeader *) req;
@@ -995,7 +995,7 @@ GNUNET_PSYCSTORE_counters_get (struct GNUNET_PSYCSTORE_Handle *h,
995 * @param modifier_count Number of elements in the @a modifiers array. 995 * @param modifier_count Number of elements in the @a modifiers array.
996 * @param modifiers List of modifiers to apply. 996 * @param modifiers List of modifiers to apply.
997 * @param rcb Callback to call with the result of the operation. 997 * @param rcb Callback to call with the result of the operation.
998 * @param rcb_cls Closure for the callback. 998 * @param rcb_cls Closure for the @a rcb callback.
999 * 999 *
1000 * @return Handle that can be used to cancel the operation. 1000 * @return Handle that can be used to cancel the operation.
1001 */ 1001 */