aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_core_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-22 06:28:34 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-22 06:28:34 +0000
commitb94abb8ad0d6644e8f1a03706e0a590c0c69dd91 (patch)
tree9ea7b991f91d7c952a889d227c8ac55931ed0b45 /src/include/gnunet_core_service.h
parent60ecaf195aea1b6a62d12c60e05ade1f2308e76f (diff)
downloadgnunet-b94abb8ad0d6644e8f1a03706e0a590c0c69dd91.tar.gz
gnunet-b94abb8ad0d6644e8f1a03706e0a590c0c69dd91.zip
-doxygen fixes
Diffstat (limited to 'src/include/gnunet_core_service.h')
-rw-r--r--src/include/gnunet_core_service.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/include/gnunet_core_service.h b/src/include/gnunet_core_service.h
index 7fc77d094..19c2acbdf 100644
--- a/src/include/gnunet_core_service.h
+++ b/src/include/gnunet_core_service.h
@@ -155,7 +155,7 @@ typedef void (*GNUNET_CORE_StartupCallback) (void *cls,
155 * messages if the client does not process them fast enough (for this 155 * messages if the client does not process them fast enough (for this
156 * notification type, a bounded queue is used) 156 * notification type, a bounded queue is used)
157 * @param inbound_hdr_only set to #GNUNET_YES if @a inbound_notify will only read the 157 * @param inbound_hdr_only set to #GNUNET_YES if @a inbound_notify will only read the
158 * GNUNET_MessageHeader and hence we do not need to give it the full message; 158 * `struct GNUNET_MessageHeader` and hence we do not need to give it the full message;
159 * can be used to improve efficiency, ignored if inbound_notify is NULL 159 * can be used to improve efficiency, ignored if inbound_notify is NULL
160 * note that the core is allowed to drop notifications about inbound 160 * note that the core is allowed to drop notifications about inbound
161 * messages if the client does not process them fast enough (for this 161 * messages if the client does not process them fast enough (for this
@@ -165,7 +165,7 @@ typedef void (*GNUNET_CORE_StartupCallback) (void *cls,
165 * messages if the client does not process them fast enough (for this 165 * messages if the client does not process them fast enough (for this
166 * notification type, a bounded queue is used) 166 * notification type, a bounded queue is used)
167 * @param outbound_hdr_only set to #GNUNET_YES if @a outbound_notify will only read the 167 * @param outbound_hdr_only set to #GNUNET_YES if @a outbound_notify will only read the
168 * GNUNET_MessageHeader and hence we do not need to give it the full message 168 * `struct GNUNET_MessageHeader` and hence we do not need to give it the full message
169 * can be used to improve efficiency, ignored if outbound_notify is NULL 169 * can be used to improve efficiency, ignored if outbound_notify is NULL
170 * note that the core is allowed to drop notifications about outbound 170 * note that the core is allowed to drop notifications about outbound
171 * messages if the client does not process them fast enough (for this 171 * messages if the client does not process them fast enough (for this
@@ -280,11 +280,8 @@ GNUNET_CORE_iterate_peers (const struct GNUNET_CONFIGURATION_Handle *cfg,
280 * cirumstances (GNUNET_TESTBED uses it), normal users of the CORE API are 280 * cirumstances (GNUNET_TESTBED uses it), normal users of the CORE API are
281 * expected to track which peers are connected based on the connect/disconnect 281 * expected to track which peers are connected based on the connect/disconnect
282 * callbacks from #GNUNET_CORE_connect. This function is NOT part of the 282 * callbacks from #GNUNET_CORE_connect. This function is NOT part of the
283 * 'versioned', 'official' API. The difference between this function and the 283 * 'versioned', 'official' API. This function returns
284 * function #GNUNET_CORE_is_peer_connected is that this one returns 284 * synchronously after looking in the CORE API cache.
285 * synchronously after looking in the CORE API cache. The function
286 * #GNUNET_CORE_is_peer_connected sends a message to the CORE service and hence
287 * its response is given asynchronously.
288 * 285 *
289 * @param h the core handle 286 * @param h the core handle
290 * @param pid the identity of the peer to check if it has been connected to us 287 * @param pid the identity of the peer to check if it has been connected to us