]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
please doxygen.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 17 Jan 2008 08:26:15 +0000 (08:26 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 17 Jan 2008 08:26:15 +0000 (08:26 +0000)
git-svn-id: file:///svn/unbound/trunk@870 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
services/outside_network.h
testcode/replay.h
util/netevent.h

index 5cc98459ebc366c19f26dca266ec6afa3b4acb47..726c1f203b8bf5e54d54adce53594b9a9eac8111 100644 (file)
@@ -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.
index 5a1e22067b06dd9f0402ed7ed02fda36cfb602e0..3eca8fe2a216bb2f5eb6a7ed6eef41932bf00212 100644 (file)
@@ -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 */
index dcf67edd1a9ceab6b43bf76870a35ac75bb2fac9..1f00585745f31f7bfb33f680ecb4573181f330a1 100644 (file)
@@ -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;
index 3a4d706b621536efdb2369ceb44623d7727053d2..e6417366e6b7c8122253703e573b6509ca20b8df 100644 (file)
@@ -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. */