Rename u_intXX_t to uintXX_t

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17447 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-05-05 10:52:01 +00:00
parent aa476ab965
commit 652da91adb
13 changed files with 49 additions and 48 deletions

View File

@@ -59,17 +59,17 @@ enum rx_header_flag {
};
struct rx_header {
u_int32_t epoch;
u_int32_t connid; /* And channel ID */
u_int32_t callid;
u_int32_t seqno;
u_int32_t serialno;
uint32_t epoch;
uint32_t connid; /* And channel ID */
uint32_t callid;
uint32_t seqno;
uint32_t serialno;
u_char type;
u_char flags;
u_char status;
u_char secindex;
u_int16_t reserved; /* ??? verifier? */
u_int16_t serviceid;
uint16_t reserved; /* ??? verifier? */
uint16_t serviceid;
/* This should be the other way around according to everything but */
/* tcpdump */
};