mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
use isc_uint16_t, not u_int16_t
This commit is contained in:
parent
8324aeb090
commit
332d9b3837
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue