Adjust message buffer sizes in test code

This commit is contained in:
Mark Andrews 2023-11-16 11:22:02 +11:00
parent a069513234
commit cbfcdbc199
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;