/*************************************************************************** recursive.h - recursive queries ------------------- begin : za dec 28 2002 copyright : (C) 2002 by Meilof email : meilof@users.sourceforge.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __POSADIS_RECURSIVE_H #define __POSADIS_RECURSIVE_H #include #include "zones.h" #include "resolver.h" enum _sysquery_result { srvfail, answer, cname, noanswer }; _sysquery_result sysquery(pending_query *q, domainname qname, uint16_t qtype, int &patience); #endif /* __POSADIS_RECURSIVE_H */