please doxygen.

git-svn-id: file:///svn/unbound/trunk@870 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2008-01-17 08:26:15 +00:00
parent ee6e142192
commit c854c57c6f
4 changed files with 10 additions and 3 deletions

View 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.

View 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 */

View 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;

View 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. */