aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dns/dnsstub.c1
-rw-r--r--src/gns/gnunet-dns2gns.c5
-rw-r--r--src/include/gns_protocol.h2
-rw-r--r--src/include/gnunet_dnsstub_lib.h3
4 files changed, 7 insertions, 4 deletions
diff --git a/src/dns/dnsstub.c b/src/dns/dnsstub.c
index 2cb62447c..0c3bf0ef3 100644
--- a/src/dns/dnsstub.c
+++ b/src/dns/dnsstub.c
@@ -193,6 +193,7 @@ read_response (void *cls,
193 * Get a socket of the specified address family to send out a 193 * Get a socket of the specified address family to send out a
194 * UDP DNS request to the Internet. 194 * UDP DNS request to the Internet.
195 * 195 *
196 * @param ctx the DNSSTUB context
196 * @param af desired address family 197 * @param af desired address family
197 * @return NULL on error (given AF not "supported") 198 * @return NULL on error (given AF not "supported")
198 */ 199 */
diff --git a/src/gns/gnunet-dns2gns.c b/src/gns/gnunet-dns2gns.c
index 5676471b8..7d44ceacb 100644
--- a/src/gns/gnunet-dns2gns.c
+++ b/src/gns/gnunet-dns2gns.c
@@ -224,8 +224,9 @@ do_timeout (void *cls,
224 * lookup 224 * lookup
225 * 225 *
226 * @param cls closure 226 * @param cls closure
227 * @param rd_count number of records 227 * @param rs the request socket
228 * @param rd the records in reply 228 * @param dns the DNS udp payload
229 * @param r size of the DNS payload
229 */ 230 */
230static void 231static void
231dns_result_processor (void *cls, 232dns_result_processor (void *cls,
diff --git a/src/include/gns_protocol.h b/src/include/gns_protocol.h
index b5e6f33e1..ad80f85ff 100644
--- a/src/include/gns_protocol.h
+++ b/src/include/gns_protocol.h
@@ -19,7 +19,7 @@
19 */ 19 */
20 20
21/** 21/**
22 * @file gns/gns_records.h 22 * @file gns/gns_protocol.h
23 * @brief Resource Record definitions 23 * @brief Resource Record definitions
24 * @author Martin Schanzenbach 24 * @author Martin Schanzenbach
25 */ 25 */
diff --git a/src/include/gnunet_dnsstub_lib.h b/src/include/gnunet_dnsstub_lib.h
index ffe82dbbe..3c4206f99 100644
--- a/src/include/gnunet_dnsstub_lib.h
+++ b/src/include/gnunet_dnsstub_lib.h
@@ -77,7 +77,8 @@ typedef void (*GNUNET_DNSSTUB_ResultCallback)(void *cls,
77 * Perform DNS resolution using given address. 77 * Perform DNS resolution using given address.
78 * 78 *
79 * @param ctx stub resolver to use 79 * @param ctx stub resolver to use
80 * @param af address family to use 80 * @param sa the socket address
81 * @param sa_len the socket length
81 * @param request DNS request to transmit 82 * @param request DNS request to transmit
82 * @param request_len number of bytes in msg 83 * @param request_len number of bytes in msg
83 * @param rc function to call with result 84 * @param rc function to call with result