From: Wouter Wijngaards Date: Thu, 17 Jan 2008 08:26:15 +0000 (+0000) Subject: please doxygen. X-Git-Tag: release-0.9~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c854c57c6f71fef9b2ddc230510daa29cee1880f;p=thirdparty%2Funbound.git please doxygen. git-svn-id: file:///svn/unbound/trunk@870 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 5cc98459e..726c1f203 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 17 January 2008: Wouter - fixup configure in case -lldns is installed. + - fixup a couple of doxygen warnings, about enum variables. 16 January 2008: Wouter - incoming queries to the server with TC bit on are replied FORMERR. diff --git a/services/outside_network.h b/services/outside_network.h index 5a1e22067..3eca8fe2a 100644 --- a/services/outside_network.h +++ b/services/outside_network.h @@ -225,7 +225,9 @@ struct serviced_query { serviced_query_TCP_EDNS, /** TCP without EDNS sent */ serviced_query_TCP - } status; + } + /** variable with current status */ + status; /** true if serviced_query is scheduled for deletion already */ int to_be_deleted; /** number of UDP retries */ diff --git a/testcode/replay.h b/testcode/replay.h index dcf67edd1..1f0058574 100644 --- a/testcode/replay.h +++ b/testcode/replay.h @@ -155,7 +155,9 @@ struct replay_moment { repevt_back_query, /** an error happens to outbound query */ repevt_error - } evt_type; + } + /** variable with what is to happen this moment */ + evt_type; /** The sent packet must match this. Incoming events, the data. */ struct entry* match; diff --git a/util/netevent.h b/util/netevent.h index 3a4d706b6..e6417366e 100644 --- a/util/netevent.h +++ b/util/netevent.h @@ -154,7 +154,9 @@ struct comm_point { comm_tcp, /** AF_UNIX socket - for internal commands. */ comm_local - } type; + } + /** variable with type of socket, UDP,TCP-accept,TCP,pipe */ + type; /* ---------- Behaviour ----------- */ /** if set the connection is NOT closed on delete. */