diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
commit | a86c5f7cae7ec9a3398300555a0b644689d946a1 (patch) | |
tree | 39fe4b107c71174fd1e8a8ceb9a4d2aa14116248 /epan/dissectors/packet-ipx.h | |
parent | Releasing progress-linux version 4.2.6-1~progress7.99u1. (diff) | |
download | wireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.tar.xz wireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.zip |
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | epan/dissectors/packet-ipx.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/epan/dissectors/packet-ipx.h b/epan/dissectors/packet-ipx.h index 2bf3d291..f4d90b32 100644 --- a/epan/dissectors/packet-ipx.h +++ b/epan/dissectors/packet-ipx.h @@ -25,10 +25,10 @@ #define IPX_NODE_LEN 6 -typedef guint32 IPXNet; -typedef guint16 IPXPort; -typedef guint8 IPXNode[IPX_NODE_LEN]; -typedef const guint8 CIPXNode[IPX_NODE_LEN]; +typedef uint32_t IPXNet; +typedef uint16_t IPXPort; +typedef uint8_t IPXNode[IPX_NODE_LEN]; +typedef const uint8_t CIPXNode[IPX_NODE_LEN]; #define IPX_USER_PTYPE (0x00) #define IPX_RIP_PTYPE (0x01) @@ -46,8 +46,8 @@ typedef const guint8 CIPXNode[IPX_NODE_LEN]; struct sap_query { - guint16 query_type; /* net order */ - guint16 server_type; /* net order */ + uint16_t query_type; /* net order */ + uint16_t server_type; /* net order */ }; #define IPX_RIP_REQUEST (0x1) @@ -55,14 +55,14 @@ struct sap_query typedef struct _ipx_rt_def { - guint32 network ; - guint16 hops ; - guint16 ticks ; + uint32_t network ; + uint16_t hops ; + uint16_t ticks ; } ipx_rt_def_t; struct ipx_rip_packet { - guint16 operation ; + uint16_t operation ; ipx_rt_def_t rt[1] ; }; @@ -140,8 +140,8 @@ extern value_string_ext novell_server_vals_ext; * the SPX header that might be useful to the subdissector. */ typedef struct { - gboolean eom; /* end-of-message flag in SPX header */ - guint8 datastream_type; /* datastream type from SPX header */ + bool eom; /* end-of-message flag in SPX header */ + uint8_t datastream_type; /* datastream type from SPX header */ } spx_info; @@ -150,10 +150,10 @@ typedef struct { tap listeners needs */ typedef struct _ipxhdr_t { - guint16 ipx_ssocket; - guint16 ipx_dsocket; - guint16 ipx_length; - guint8 ipx_type; + uint16_t ipx_ssocket; + uint16_t ipx_dsocket; + uint16_t ipx_length; + uint8_t ipx_type; address ipx_src; address ipx_dst; } ipxhdr_t; |