aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-10 15:22:11 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-10 15:22:11 +0000
commit9deab19cc53c6c1324af2193cef9686875a39c16 (patch)
tree276eb67805c501f4e080a2a43f61d00b4071744d /src
parent6fecffef1941be50ea40dbb634521fa368358601 (diff)
downloadgnunet-9deab19cc53c6c1324af2193cef9686875a39c16.tar.gz
gnunet-9deab19cc53c6c1324af2193cef9686875a39c16.zip
-formatting, doxygen
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_gns_service.h2
-rw-r--r--src/include/gnunet_namestore_service.h14
2 files changed, 8 insertions, 8 deletions
diff --git a/src/include/gnunet_gns_service.h b/src/include/gnunet_gns_service.h
index 677957214..7f2bd790d 100644
--- a/src/include/gnunet_gns_service.h
+++ b/src/include/gnunet_gns_service.h
@@ -104,7 +104,7 @@ typedef void (*GNUNET_GNS_LookupResultProcessor) (void *cls,
104 * @param proc_cls closure for processor 104 * @param proc_cls closure for processor
105 * @return handle to the queued request 105 * @return handle to the queued request
106 */ 106 */
107struct GNUNET_GNS_LookupRequest* 107struct GNUNET_GNS_LookupRequest *
108GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle, 108GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle,
109 const char *name, 109 const char *name,
110 const struct GNUNET_CRYPTO_EccPublicKey *zone, 110 const struct GNUNET_CRYPTO_EccPublicKey *zone,
diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h
index ef7d516af..4cad3ae62 100644
--- a/src/include/gnunet_namestore_service.h
+++ b/src/include/gnunet_namestore_service.h
@@ -122,9 +122,9 @@ GNUNET_NAMESTORE_disconnect (struct GNUNET_NAMESTORE_Handle *h);
122 * operation. 122 * operation.
123 * 123 *
124 * @param cls closure 124 * @param cls closure
125 * @param success GNUNET_SYSERR on failure (including timeout/queue drop/failure to validate) 125 * @param success #GNUNET_SYSERR on failure (including timeout/queue drop/failure to validate)
126 * GNUNET_NO if content was already there or not found 126 * #GNUNET_NO if content was already there or not found
127 * GNUNET_YES (or other positive value) on success 127 * #GNUNET_YES (or other positive value) on success
128 * @param emsg NULL on success, otherwise an error message 128 * @param emsg NULL on success, otherwise an error message
129 */ 129 */
130typedef void (*GNUNET_NAMESTORE_ContinuationWithStatus) (void *cls, 130typedef void (*GNUNET_NAMESTORE_ContinuationWithStatus) (void *cls,
@@ -176,7 +176,7 @@ enum GNUNET_NAMESTORE_RecordFlags
176 * pass the '--private' option when removing a record from 176 * pass the '--private' option when removing a record from
177 * the namestore, hence we don't require this particular option 177 * the namestore, hence we don't require this particular option
178 * to match upon removal). See also 178 * to match upon removal). See also
179 * 'GNUNET_NAMESTORE_records_cmp'. 179 * #GNUNET_NAMESTORE_records_cmp.
180 */ 180 */
181#define GNUNET_NAMESTORE_RF_RCMP_FLAGS (GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION) 181#define GNUNET_NAMESTORE_RF_RCMP_FLAGS (GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION)
182}; 182};
@@ -314,7 +314,7 @@ typedef void (*GNUNET_NAMESTORE_BlockProcessor) (void *cls,
314 * @param derived_hash hash of zone key combined with name to lookup 314 * @param derived_hash hash of zone key combined with name to lookup
315 * @param proc function to call on the matching block, or with 315 * @param proc function to call on the matching block, or with
316 * NULL if there is no matching block 316 * NULL if there is no matching block
317 * @param proc_cls closure for proc 317 * @param proc_cls closure for @a proc
318 * @return a handle that can be used to cancel 318 * @return a handle that can be used to cancel
319 */ 319 */
320struct GNUNET_NAMESTORE_QueueEntry * 320struct GNUNET_NAMESTORE_QueueEntry *
@@ -348,7 +348,7 @@ typedef void (*GNUNET_NAMESTORE_RecordMonitor) (void *cls,
348 * @param value_zone public key of the target zone (value), never NULL 348 * @param value_zone public key of the target zone (value), never NULL
349 * @param proc function to call on the matching records, or with 349 * @param proc function to call on the matching records, or with
350 * NULL (rd_count == 0) if there are no matching records 350 * NULL (rd_count == 0) if there are no matching records
351 * @param proc_cls closure for proc 351 * @param proc_cls closure for @a proc
352 * @return a handle that can be used to 352 * @return a handle that can be used to
353 * cancel 353 * cancel
354 */ 354 */
@@ -456,7 +456,7 @@ typedef void (*GNUNET_NAMESTORE_RecordsSynchronizedCallback)(void *cls);
456 * @param zone zone to monitor 456 * @param zone zone to monitor
457 * @param monitor function to call on zone changes 457 * @param monitor function to call on zone changes
458 * @param sync_cb function called when we're in sync with the namestore 458 * @param sync_cb function called when we're in sync with the namestore
459 * @param cls closure for @a monitor' and @a sync_cb 459 * @param cls closure for @a monitor and @a sync_cb
460 * @return handle to stop monitoring 460 * @return handle to stop monitoring
461 */ 461 */
462struct GNUNET_NAMESTORE_ZoneMonitor * 462struct GNUNET_NAMESTORE_ZoneMonitor *