aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_common.h4
-rw-r--r--src/include/gnunet_disk_lib.h4
-rw-r--r--src/include/gnunet_dns_service.h2
-rw-r--r--src/include/gnunet_dnsparser_lib.h2
-rw-r--r--src/include/gnunet_tun_lib.h8
5 files changed, 11 insertions, 9 deletions
diff --git a/src/include/gnunet_common.h b/src/include/gnunet_common.h
index 7c587a782..04847ee5b 100644
--- a/src/include/gnunet_common.h
+++ b/src/include/gnunet_common.h
@@ -507,7 +507,7 @@ GNUNET_htonll (uint64_t n);
507 * @return the same value in host byte order 507 * @return the same value in host byte order
508 */ 508 */
509double 509double
510GNUNET_hton_double (double in); 510GNUNET_hton_double (double d);
511 511
512/** 512/**
513 * Convert double to host-byte-order 513 * Convert double to host-byte-order
@@ -515,7 +515,7 @@ GNUNET_hton_double (double in);
515 * @return the same value in host byte order 515 * @return the same value in host byte order
516 */ 516 */
517double 517double
518GNUNET_ntoh_double (double in); 518GNUNET_ntoh_double (double d);
519 519
520/* ************************* allocation functions ****************** */ 520/* ************************* allocation functions ****************** */
521 521
diff --git a/src/include/gnunet_disk_lib.h b/src/include/gnunet_disk_lib.h
index 46dd7c4c4..25f972b5b 100644
--- a/src/include/gnunet_disk_lib.h
+++ b/src/include/gnunet_disk_lib.h
@@ -389,7 +389,9 @@ GNUNET_DISK_file_handle_size (struct GNUNET_DISK_FileHandle *fh,
389 389
390/** 390/**
391 * Creates an interprocess channel 391 * Creates an interprocess channel
392 * @param blocking creates an asynchronous pipe if set to GNUNET_NO 392 *
393 * @param blocking_read creates an asynchronous pipe for reading if set to GNUNET_NO
394 * @param blocking_write creates an asynchronous pipe for writing if set to GNUNET_NO
393 * @param inherit_read 1 to make read handle inheritable, 0 otherwise (NT only) 395 * @param inherit_read 1 to make read handle inheritable, 0 otherwise (NT only)
394 * @param inherit_write 1 to make write handle inheritable, 0 otherwise (NT only) 396 * @param inherit_write 1 to make write handle inheritable, 0 otherwise (NT only)
395 * @return handle to the new pipe, NULL on error 397 * @return handle to the new pipe, NULL on error
diff --git a/src/include/gnunet_dns_service.h b/src/include/gnunet_dns_service.h
index 3517a4609..a822b06ae 100644
--- a/src/include/gnunet_dns_service.h
+++ b/src/include/gnunet_dns_service.h
@@ -19,7 +19,7 @@
19 */ 19 */
20 20
21/** 21/**
22 * @file include/gnunet_dns_service-new.h 22 * @file include/gnunet_dns_service.h
23 * @brief API to access the DNS service. 23 * @brief API to access the DNS service.
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/include/gnunet_dnsparser_lib.h b/src/include/gnunet_dnsparser_lib.h
index a1fb920a7..0c310ba00 100644
--- a/src/include/gnunet_dnsparser_lib.h
+++ b/src/include/gnunet_dnsparser_lib.h
@@ -19,7 +19,7 @@
19 */ 19 */
20 20
21/** 21/**
22 * @file include/gnunet_dnsparse_lib.h 22 * @file include/gnunet_dnsparser_lib.h
23 * @brief API for helper library to parse DNS packets. 23 * @brief API for helper library to parse DNS packets.
24 * @author Philipp Toelke 24 * @author Philipp Toelke
25 * @author Christian Grothoff 25 * @author Christian Grothoff
diff --git a/src/include/gnunet_tun_lib.h b/src/include/gnunet_tun_lib.h
index 9cc58e85c..b02c6c02e 100644
--- a/src/include/gnunet_tun_lib.h
+++ b/src/include/gnunet_tun_lib.h
@@ -241,7 +241,7 @@ GNUNET_TUN_initialize_ipv6_header (struct GNUNET_TUN_IPv6Header *ip,
241/** 241/**
242 * Calculate IPv4 TCP checksum. 242 * Calculate IPv4 TCP checksum.
243 * 243 *
244 * @param ipv4 header fully initialized 244 * @param ip ipv4 header fully initialized
245 * @param tcp TCP header (initialized except for CRC) 245 * @param tcp TCP header (initialized except for CRC)
246 * @param payload the TCP payload 246 * @param payload the TCP payload
247 * @param payload_length number of bytes of TCP payload 247 * @param payload_length number of bytes of TCP payload
@@ -255,7 +255,7 @@ GNUNET_TUN_calculate_tcp4_checksum (const struct GNUNET_TUN_IPv4Header *ip,
255/** 255/**
256 * Calculate IPv6 TCP checksum. 256 * Calculate IPv6 TCP checksum.
257 * 257 *
258 * @param ipv6 header fully initialized 258 * @param ip ipv6 header fully initialized
259 * @param tcp TCP header (initialized except for CRC) 259 * @param tcp TCP header (initialized except for CRC)
260 * @param payload the TCP payload 260 * @param payload the TCP payload
261 * @param payload_length number of bytes of TCP payload 261 * @param payload_length number of bytes of TCP payload
@@ -269,7 +269,7 @@ GNUNET_TUN_calculate_tcp6_checksum (const struct GNUNET_TUN_IPv6Header *ip,
269/** 269/**
270 * Calculate IPv4 UDP checksum. 270 * Calculate IPv4 UDP checksum.
271 * 271 *
272 * @param ipv4 header fully initialized 272 * @param ip ipv4 header fully initialized
273 * @param udp UDP header (initialized except for CRC) 273 * @param udp UDP header (initialized except for CRC)
274 * @param payload the UDP payload 274 * @param payload the UDP payload
275 * @param payload_length number of bytes of UDP payload 275 * @param payload_length number of bytes of UDP payload
@@ -284,7 +284,7 @@ GNUNET_TUN_calculate_udp4_checksum (const struct GNUNET_TUN_IPv4Header *ip,
284/** 284/**
285 * Calculate IPv6 UDP checksum. 285 * Calculate IPv6 UDP checksum.
286 * 286 *
287 * @param ipv6 header fully initialized 287 * @param ip ipv6 header fully initialized
288 * @param udp UDP header (initialized except for CRC) 288 * @param udp UDP header (initialized except for CRC)
289 * @param payload the UDP payload 289 * @param payload the UDP payload
290 * @param payload_length number of bytes of UDP payload 290 * @param payload_length number of bytes of UDP payload