subqueries

git-svn-id: file:///svn/unbound/trunk@309 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2007-05-10 13:28:32 +00:00
parent d388acddaa
commit 1c90125ab2

View file

@ -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;
};
/**