mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
addr.
git-svn-id: file:///svn/unbound/trunk@449 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
ba1bda607b
commit
84a1152109
2 changed files with 10 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
24 July 2007: Wouter
|
||||
- Example section in config manual.
|
||||
- Addr stored for range and moment in replay.
|
||||
|
||||
20 July 2007: Wouter
|
||||
- Check CNAME chain before returning cache entry with CNAMEs.
|
||||
|
|
|
|||
|
|
@ -158,6 +158,11 @@ struct replay_moment {
|
|||
/** The sent packet must match this. Incoming events, the data. */
|
||||
struct entry* match;
|
||||
|
||||
/** address that must be matched, or packet remote host address. */
|
||||
struct sockaddr_storage addr;
|
||||
/** length of addr, if 0, then any address will do */
|
||||
socklen_t addrlen;
|
||||
|
||||
/** what pending query should timeout or is answered. or
|
||||
* NULL for last sent query.
|
||||
* Unused at this time.
|
||||
|
|
@ -173,6 +178,10 @@ struct replay_range {
|
|||
int start_step;
|
||||
/** end step of time range. */
|
||||
int end_step;
|
||||
/** address of where this range is served. */
|
||||
struct sockaddr_storage addr;
|
||||
/** length of addr, if 0, then any address will do */
|
||||
socklen_t addrlen;
|
||||
|
||||
/** Matching list */
|
||||
struct entry* match;
|
||||
|
|
|
|||
Loading…
Reference in a new issue