summaryrefslogtreecommitdiffstats
path: root/epan/diam_dict.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:33 +0000
commit9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9 (patch)
tree2784370cda9bbf2da9114d70f05399c0b229d28c /epan/diam_dict.h
parentAdding debian version 4.2.6-1. (diff)
downloadwireshark-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/diam_dict.h')
-rw-r--r--epan/diam_dict.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/diam_dict.h b/epan/diam_dict.h
index e2111a5e..e8105eb2 100644
--- a/epan/diam_dict.h
+++ b/epan/diam_dict.h
@@ -11,7 +11,7 @@
struct _ddict_namecode_t {
char* name;
- guint code;
+ unsigned code;
struct _ddict_namecode_t* next;
};
@@ -22,7 +22,7 @@ typedef struct _ddict_namecode_t ddict_application_t;
typedef struct _ddict_vendor_t {
char* name;
char* desc;
- guint code;
+ unsigned code;
struct _ddict_vendor_t* next;
} ddict_vendor_t;
@@ -31,7 +31,7 @@ typedef struct _ddict_avp_t {
char* description;
char* vendor;
char* type;
- guint code;
+ unsigned code;
ddict_gavp_t* gavps;
ddict_enum_t* enums;
struct _ddict_avp_t* next;
@@ -46,7 +46,7 @@ typedef struct _ddict_typedefn_t {
typedef struct _ddict_cmd_t {
char* name;
char* vendor;
- guint code;
+ unsigned code;
struct _ddict_cmd_t* next;
} ddict_cmd_t;