aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-10 19:04:16 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-10 19:04:16 +0000
commit53910cd4567b81a49adbaa7fe0567d8a18d2e7b3 (patch)
tree355498ac645556acaa5ec5b14aff9bbeb0fbc850 /src
parentf7dd691efeb48df9777a903e58ce4a3916c80845 (diff)
downloadgnunet-53910cd4567b81a49adbaa7fe0567d8a18d2e7b3.tar.gz
gnunet-53910cd4567b81a49adbaa7fe0567d8a18d2e7b3.zip
-doxygen fixes
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_dnsparser_lib.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_dnsparser_lib.h b/src/include/gnunet_dnsparser_lib.h
index 69915d986..fb0ab1149 100644
--- a/src/include/gnunet_dnsparser_lib.h
+++ b/src/include/gnunet_dnsparser_lib.h
@@ -187,7 +187,7 @@ struct GNUNET_DNSPARSER_SoaRecord
187 * The domainname of the name server that was the 187 * The domainname of the name server that was the
188 * original or primary source of data for this zone. 188 * original or primary source of data for this zone.
189 * In UTF-8 format. The library will convert from and to DNS-IDNA 189 * In UTF-8 format. The library will convert from and to DNS-IDNA
190 * as necessary. Use 'GNUNET_DNSPARSER_check_label' to test if an 190 * as necessary. Use #GNUNET_DNSPARSER_check_label to test if an
191 * individual label is well-formed. If a given name is not well-formed, 191 * individual label is well-formed. If a given name is not well-formed,
192 * creating the DNS packet will fail. 192 * creating the DNS packet will fail.
193 */ 193 */
@@ -386,8 +386,8 @@ struct GNUNET_DNSPARSER_Packet
386 * This can fail if the ASCII-conversion becomes longer than 63 characters. 386 * This can fail if the ASCII-conversion becomes longer than 63 characters.
387 * 387 *
388 * @param label label to check (UTF-8 string) 388 * @param label label to check (UTF-8 string)
389 * @return GNUNET_OK if the label can be converted to IDNA, 389 * @return #GNUNET_OK if the label can be converted to IDNA,
390 * GNUNET_SYSERR if the label is not valid for DNS names 390 * #GNUNET_SYSERR if the label is not valid for DNS names
391 */ 391 */
392int 392int
393GNUNET_DNSPARSER_check_label (const char *label); 393GNUNET_DNSPARSER_check_label (const char *label);
@@ -399,8 +399,8 @@ GNUNET_DNSPARSER_check_label (const char *label);
399 * the entire name exceeds 253 characters. 399 * the entire name exceeds 253 characters.
400 * 400 *
401 * @param name name to check (UTF-8 string) 401 * @param name name to check (UTF-8 string)
402 * @return GNUNET_OK if the label can be converted to IDNA, 402 * @return #GNUNET_OK if the label can be converted to IDNA,
403 * GNUNET_SYSERR if the label is not valid for DNS names 403 * #GNUNET_SYSERR if the label is not valid for DNS names
404 */ 404 */
405int 405int
406GNUNET_DNSPARSER_check_name (const char *name); 406GNUNET_DNSPARSER_check_name (const char *name);
@@ -411,7 +411,7 @@ GNUNET_DNSPARSER_check_name (const char *name);
411 * processing and manipulation. 411 * processing and manipulation.
412 * 412 *
413 * @param udp_payload wire-format of the DNS packet 413 * @param udp_payload wire-format of the DNS packet
414 * @param udp_payload_length number of bytes in udp_payload 414 * @param udp_payload_length number of bytes in @a udp_payload
415 * @return NULL on error, otherwise the parsed packet 415 * @return NULL on error, otherwise the parsed packet
416 */ 416 */
417struct GNUNET_DNSPARSER_Packet * 417struct GNUNET_DNSPARSER_Packet *