use isc_uint16_t, not u_int16_t

This commit is contained in:
Bob Halley 1999-07-13 19:42:25 +00:00
parent 8324aeb090
commit 332d9b3837

View file

@ -2,11 +2,12 @@
#define DNS_TCPMSG_H
#include <isc/buffer.h>
#include <isc/int.h>
typedef struct {
/* private (don't touch!) */
unsigned int magic;
u_int16_t size;
isc_uint16_t size;
isc_buffer_t buffer;
unsigned int maxsize;
isc_mem_t *mctx;