mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-31 10:49:27 -05:00
subqueries
git-svn-id: file:///svn/unbound/trunk@309 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
d388acddaa
commit
1c90125ab2
1 changed files with 7 additions and 0 deletions
|
|
@ -144,6 +144,13 @@ struct module_qstate {
|
|||
void* minfo[MAX_MODULE];
|
||||
/** environment for this query */
|
||||
struct module_env* module_env;
|
||||
|
||||
/** parent query, only nonNULL for subqueries */
|
||||
struct module_qstate* parent;
|
||||
/** pointer to first subquery below this one; makes list with next */
|
||||
struct module_qstate* subquery_first;
|
||||
/** pointer to next sibling subquery (not above or below this one) */
|
||||
struct module_qstate* subquery_next;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue