mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-23 23:28:18 -04:00
Allow user to specify more than ~65000 retries in dig.
This commit is contained in:
parent
0c16c8a011
commit
ddba67ddb9
1 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dig.h,v 1.58 2000/11/21 20:55:00 mws Exp $ */
|
||||
/* $Id: dig.h,v 1.59 2000/11/21 21:40:12 mws Exp $ */
|
||||
|
||||
#ifndef DIG_H
|
||||
#define DIG_H
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
#define OUTPUTBUF 32767
|
||||
#define MAXRRLIMIT 0xffffffff
|
||||
#define MAXTIMEOUT 0xffff
|
||||
#define MAXTRIES 0xffff
|
||||
#define MAXTRIES 0xffffffff
|
||||
#define MAXNDOTS 0xffff
|
||||
#define MAXPORT 0xffff
|
||||
#define MAXSERIAL 0xffffffff
|
||||
|
|
@ -125,7 +125,7 @@ struct dig_lookup {
|
|||
dig_serverlist_t my_server_list;
|
||||
dig_searchlist_t *origin;
|
||||
dig_query_t *xfr_q;
|
||||
int retries;
|
||||
isc_uint32_t retries;
|
||||
int nsfound;
|
||||
isc_uint16_t udpsize;
|
||||
isc_uint32_t ixfr_serial;
|
||||
|
|
|
|||
Loading…
Reference in a new issue