mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-31 20:09:35 -05:00
please doxygen.
git-svn-id: file:///svn/unbound/trunk@870 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
ee6e142192
commit
c854c57c6f
4 changed files with 10 additions and 3 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue