2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 05:28:00 +00:00

302. [bug] MXNAME should be large enough to hold any legal domain

name in presentation format + terminating NULL.
This commit is contained in:
Mark Andrews 2000-07-03 05:26:50 +00:00
parent 1318ddb52d
commit b6747cf19d
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
302. [bug] MXNAME should be large enough to hold any legal domain
name in presentation format + terminating NULL.
301. [bug] uninitalised pointer host:printmessage(). (RT #159) 301. [bug] uninitalised pointer host:printmessage(). (RT #159)
300. [bug] Using both <isc/net.h> and <lwres/net.h> didn't work 300. [bug] Using both <isc/net.h> and <lwres/net.h> didn't work

View File

@ -15,7 +15,7 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* $Id: dig.h,v 1.25 2000/06/23 02:56:10 mws Exp $ */ /* $Id: dig.h,v 1.26 2000/07/03 05:26:50 marka Exp $ */
#ifndef DIG_H #ifndef DIG_H
#define DIG_H #define DIG_H
@ -33,7 +33,7 @@
#include <isc/socket.h> #include <isc/socket.h>
#define MXSERV 4 #define MXSERV 4
#define MXNAME 256 #define MXNAME 1005
#define MXRD 32 #define MXRD 32
#define BUFSIZE 512 #define BUFSIZE 512
#define COMMSIZE 0xffff #define COMMSIZE 0xffff