mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 17:30:22 -04:00
Adjust message buffer sizes in test code
This commit is contained in:
parent
a069513234
commit
cbfcdbc199
2 changed files with 2 additions and 2 deletions
|
|
@ -286,7 +286,7 @@ process_message(isc_buffer_t *source) {
|
|||
}
|
||||
|
||||
if (dorender) {
|
||||
unsigned char b2[64 * 1024];
|
||||
unsigned char b2[65535];
|
||||
isc_buffer_t buffer;
|
||||
dns_compress_t cctx;
|
||||
|
||||
|
|
|
|||
|
|
@ -250,7 +250,7 @@ attach_query_msg_to_client(ns_client_t *client, const char *qnamestr,
|
|||
dns_rdatatype_t qtype, unsigned int qflags) {
|
||||
dns_rdataset_t *qrdataset = NULL;
|
||||
dns_message_t *message = NULL;
|
||||
unsigned char query[65536];
|
||||
unsigned char query[65535];
|
||||
dns_name_t *qname = NULL;
|
||||
isc_buffer_t querybuf;
|
||||
dns_compress_t cctx;
|
||||
|
|
|
|||
Loading…
Reference in a new issue