- Please doxygen so it passes.

git-svn-id: file:///svn/unbound/trunk@4813 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2018-07-31 08:10:20 +00:00
parent 900cd200a2
commit cc538f4f9f
4 changed files with 5 additions and 2 deletions

View file

@ -16,6 +16,7 @@
- From Wouter: make depend, the dependencies in the patches did not - From Wouter: make depend, the dependencies in the patches did not
apply cleanly. Also remade yacc and lex. apply cleanly. Also remade yacc and lex.
- Fix mesh.c incompatible pointer pass. - Fix mesh.c incompatible pointer pass.
- Please doxygen so it passes.
30 July 2018: Wouter 30 July 2018: Wouter
- Fix #4136: insufficiency from mismatch of FLEX capability between - Fix #4136: insufficiency from mismatch of FLEX capability between

View file

@ -137,6 +137,7 @@ void listening_ports_free(struct listen_port* list);
* @param bufsize: size of datagram buffer. * @param bufsize: size of datagram buffer.
* @param tcp_accept_count: max number of simultaneous TCP connections * @param tcp_accept_count: max number of simultaneous TCP connections
* from clients. * from clients.
* @param tcp_idle_timeout: idle timeout for TCP connections in msec.
* @param sslctx: nonNULL if ssl context. * @param sslctx: nonNULL if ssl context.
* @param dtenv: nonNULL if dnstap enabled. * @param dtenv: nonNULL if dnstap enabled.
* @param cb: callback function when a request arrives. It is passed * @param cb: callback function when a request arrives. It is passed

View file

@ -99,11 +99,11 @@ struct config_file {
int tcp_mss; int tcp_mss;
/** maximum segment size of tcp socket for outgoing queries */ /** maximum segment size of tcp socket for outgoing queries */
int outgoing_tcp_mss; int outgoing_tcp_mss;
/** tcp idle timeout */ /** tcp idle timeout, in msec */
int tcp_idle_timeout; int tcp_idle_timeout;
/** do edns tcp keepalive */ /** do edns tcp keepalive */
int do_tcp_keepalive; int do_tcp_keepalive;
/** tcp keepalive timeout */ /** tcp keepalive timeout, in msec */
int tcp_keepalive_timeout; int tcp_keepalive_timeout;
/** private key file for dnstcp-ssl service (enabled if not NULL) */ /** private key file for dnstcp-ssl service (enabled if not NULL) */

View file

@ -54,6 +54,7 @@ struct regional;
* @param edns_in: initialised edns information with received edns. * @param edns_in: initialised edns information with received edns.
* @param cfg: configuration. * @param cfg: configuration.
* @param c: comm channel. * @param c: comm channel.
* @param region: the region to allocate the edns options in.
*/ */
int apply_edns_options(struct edns_data* edns_out, struct edns_data* edns_in, int apply_edns_options(struct edns_data* edns_out, struct edns_data* edns_in,
struct config_file* cfg, struct comm_point* c, struct regional* region); struct config_file* cfg, struct comm_point* c, struct regional* region);