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-sebek.c | |
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-sebek.c')
-rw-r--r-- | epan/dissectors/packet-sebek.c | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/epan/dissectors/packet-sebek.c b/epan/dissectors/packet-sebek.c index 6fc1018f..8543963f 100644 --- a/epan/dissectors/packet-sebek.c +++ b/epan/dissectors/packet-sebek.c @@ -72,30 +72,30 @@ void proto_reg_handoff_sebek(void); static dissector_handle_t sebek_handle; -static int proto_sebek = -1; - -static int hf_sebek_magic = -1; -static int hf_sebek_version = -1; -static int hf_sebek_type = -1; -static int hf_sebek_counter = -1; -static int hf_sebek_time = -1; -static int hf_sebek_pid = -1; -static int hf_sebek_uid = -1; -static int hf_sebek_fd = -1; -static int hf_sebek_cmd = -1; -static int hf_sebek_len = -1; -static int hf_sebek_data = -1; -static int hf_sebek_ppid = -1; -static int hf_sebek_inode = -1; -static int hf_sebek_socket_src_ip=-1; -static int hf_sebek_socket_src_port=-1; -static int hf_sebek_socket_dst_ip=-1; -static int hf_sebek_socket_dst_port=-1; -static int hf_sebek_socket_call=-1; -static int hf_sebek_socket_proto=-1; - - -static gint ett_sebek = -1; +static int proto_sebek; + +static int hf_sebek_magic; +static int hf_sebek_version; +static int hf_sebek_type; +static int hf_sebek_counter; +static int hf_sebek_time; +static int hf_sebek_pid; +static int hf_sebek_uid; +static int hf_sebek_fd; +static int hf_sebek_cmd; +static int hf_sebek_len; +static int hf_sebek_data; +static int hf_sebek_ppid; +static int hf_sebek_inode; +static int hf_sebek_socket_src_ip; +static int hf_sebek_socket_src_port; +static int hf_sebek_socket_dst_ip; +static int hf_sebek_socket_dst_port; +static int hf_sebek_socket_call; +static int hf_sebek_socket_proto; + + +static int ett_sebek; /* dissect_sebek - dissects sebek packet data * tvb - tvbuff for packet data (IN) @@ -286,10 +286,10 @@ proto_register_sebek(void) NULL, 0, NULL, HFILL }}, { &hf_sebek_ppid, { "Parent Process ID", "sebek.ppid", FT_UINT32, BASE_DEC, - NULL, 0, "Process ID", HFILL }}, + NULL, 0, NULL, HFILL }}, { &hf_sebek_inode, { "Inode ID", "sebek.inode", FT_UINT32, BASE_DEC, - NULL, 0, "Process ID", HFILL }}, + NULL, 0, NULL, HFILL }}, { &hf_sebek_data, { "Data", "sebek.data", FT_STRING, BASE_NONE, NULL, 0, NULL, HFILL }}, @@ -312,7 +312,7 @@ proto_register_sebek(void) "Socket.ip_proto", "sebek.socket.ip_proto", FT_UINT8, BASE_DEC, NULL, 0, NULL, HFILL }} }; - static gint *ett[] = { + static int *ett[] = { &ett_sebek }; |