From: W.C.A. Wijngaards Date: Wed, 9 Dec 2020 13:17:02 +0000 (+0100) Subject: doxygen comments fixup X-Git-Tag: release-1.13.2rc1~254^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51e431ada14237ca9c404883c9e8b41c2f91796e;p=thirdparty%2Funbound.git doxygen comments fixup --- diff --git a/services/listen_dnsport.c b/services/listen_dnsport.c index 9e3ad8b79..1943f5110 100644 --- a/services/listen_dnsport.c +++ b/services/listen_dnsport.c @@ -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 diff --git a/services/listen_dnsport.h b/services/listen_dnsport.h index 692391ed2..5d5f156c1 100644 --- a/services/listen_dnsport.h +++ b/services/listen_dnsport.h @@ -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); diff --git a/util/netevent.h b/util/netevent.h index c48359ec4..62e47d228 100644 --- a/util/netevent.h +++ b/util/netevent.h @@ -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.