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-fcct.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 'epan/dissectors/packet-fcct.h')
-rw-r--r-- | epan/dissectors/packet-fcct.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/epan/dissectors/packet-fcct.h b/epan/dissectors/packet-fcct.h index aa7c6273..8d5641fa 100644 --- a/epan/dissectors/packet-fcct.h +++ b/epan/dissectors/packet-fcct.h @@ -62,29 +62,29 @@ extern const value_string fc_ct_gstype_vals []; extern const value_string fc_ct_gsserver_vals []; extern const value_string fc_ct_rjt_code_vals []; -extern guint8 get_gs_server (guint8 type, guint8 subtype); +extern uint8_t get_gs_server (uint8_t type, uint8_t subtype); typedef struct _fc_ct_preamble { - guint32 in_id:24, + uint32_t in_id:24, revision:8; - guint8 gstype; - guint8 gssubtype; - guint8 options; - guint8 rsvd1; - guint16 opcode; - guint16 maxres_size; - guint8 rsvd2; - guint8 rjt_code; - guint8 rjt_code_det; - guint8 rjt_code_vendor; + uint8_t gstype; + uint8_t gssubtype; + uint8_t options; + uint8_t rsvd1; + uint16_t opcode; + uint16_t maxres_size; + uint8_t rsvd2; + uint8_t rjt_code; + uint8_t rjt_code_det; + uint8_t rjt_code_vendor; } fc_ct_preamble; typedef struct _fc_ct_ext_hdr { - guint32 auth_said; - guint32 tid; - guint32 req_pname[2]; - guint32 timestamp[2]; - guint32 auth_hashblk[15]; + uint32_t auth_said; + uint32_t tid; + uint32_t req_pname[2]; + uint32_t timestamp[2]; + uint32_t auth_hashblk[15]; } fc_ct_ext_hdr; #endif |