]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
doxygen comments fixup
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 9 Dec 2020 13:17:02 +0000 (14:17 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 9 Dec 2020 13:17:02 +0000 (14:17 +0100)
services/listen_dnsport.c
services/listen_dnsport.h
util/netevent.h

index 9e3ad8b79274f35050b6a534d8ec9c9e81e8baaa..1943f51104a5c58f46a867fb1d63850fc4c5c218 100644 (file)
@@ -1016,6 +1016,7 @@ make_sock_port(int stype, const char* ifname, const char* port,
  * @param list: list head. changed.
  * @param s: fd.
  * @param ftype: if fd is UDP.
+ * @param ub_sock: socket with address.
  * @return false on failure. list in unchanged then.
  */
 static int
index 692391ed2c0583dffda228a3bedb789036da43bd..5d5f156c1736110ef6b13ed6ee5f4e1b9b375d3e 100644 (file)
@@ -439,7 +439,7 @@ int http2_submit_dns_response(void* v);
 char* set_ip_dscp(int socket, int addrfamily, int ds);
 
 /** for debug and profiling purposes only
- * @param unbound_socket: the structure containing created socket info we want to print or log for
+ * @param ub_sock: the structure containing created socket info we want to print or log for
  */
 void verbose_print_unbound_socket(struct unbound_socket* ub_sock);
 
index c48359ec40cb5c56aa9d6a4f9f040d069d83df69..62e47d228b79dea9596328dbcb2853152a993e96 100644 (file)
@@ -496,7 +496,7 @@ struct ub_event_base* comm_base_internal(struct comm_base* b);
  * @param buffer: shared buffer by UDP sockets from this thread.
  * @param callback: callback function pointer.
  * @param callback_arg: will be passed to your callback function.
- * @param unbound_socket: and opened socket properties will be passed to your callback function.
+ * @param socket: and opened socket properties will be passed to your callback function.
  * @return: returns the allocated communication point. NULL on error.
  * Sets timeout to NULL. Turns off TCP options.
  */
@@ -513,7 +513,7 @@ struct comm_point* comm_point_create_udp(struct comm_base* base,
  * @param buffer: shared buffer by UDP sockets from this thread.
  * @param callback: callback function pointer.
  * @param callback_arg: will be passed to your callback function.
- * @param unbound_socket: and opened socket properties will be passed to your callback function.
+ * @param socket: and opened socket properties will be passed to your callback function.
  * @return: returns the allocated communication point. NULL on error.
  * Sets timeout to NULL. Turns off TCP options.
  */
@@ -542,7 +542,7 @@ struct comm_point* comm_point_create_udp_ancil(struct comm_base* base,
  *     to select handler type to use.
  * @param callback: callback function pointer for TCP handlers.
  * @param callback_arg: will be passed to your callback function.
- * @param unbound_socket: and opened socket properties will be passed to your callback function.
+ * @param socket: and opened socket properties will be passed to your callback function.
  * @return: returns the TCP listener commpoint. You can find the
  *     TCP handlers in the array inside the listener commpoint.
  *     returns NULL on error.