diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:33 +0000 |
commit | 9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9 (patch) | |
tree | 2784370cda9bbf2da9114d70f05399c0b229d28c /epan/dissectors/packet-afp.h | |
parent | Adding debian version 4.2.6-1. (diff) | |
download | wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.tar.xz wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.zip |
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-afp.h')
-rw-r--r-- | epan/dissectors/packet-afp.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-afp.h b/epan/dissectors/packet-afp.h index b5626a47..de6a2de4 100644 --- a/epan/dissectors/packet-afp.h +++ b/epan/dissectors/packet-afp.h @@ -101,10 +101,10 @@ extern value_string_ext afp_server_addr_type_vals_ext; * atp_asp_dsi_info.code dsi.code */ struct atp_asp_dsi_info { - guint8 reply; /* 0 query 1 reply */ - guint8 release; - guint16 tid; /* request/transaction ID */ - gint32 code; /* error code/ offset NU */ + uint8_t reply; /* 0 query 1 reply */ + uint8_t release; + uint16_t tid; /* request/transaction ID */ + int32_t code; /* error code/ offset NU */ }; /* @@ -117,10 +117,10 @@ WS_DLL_PUBLIC value_string_ext CommandCode_vals_ext; * tap for responses. */ typedef struct { - guint8 command; - guint32 frame_req, frame_res; + uint8_t command; + uint32_t frame_req, frame_res; nstime_t req_time; - guint32 spotlight_req_command; /* Need this in the reply */ + uint32_t spotlight_req_command; /* Need this in the reply */ } afp_request_val; #endif |