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 /doc/packet-PROTOABBREV.c | |
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 'doc/packet-PROTOABBREV.c')
-rw-r--r-- | doc/packet-PROTOABBREV.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/packet-PROTOABBREV.c b/doc/packet-PROTOABBREV.c index 6a2ce716..ee06f727 100644 --- a/doc/packet-PROTOABBREV.c +++ b/doc/packet-PROTOABBREV.c @@ -53,15 +53,15 @@ void proto_reg_handoff_PROTOABBREV(void); void proto_register_PROTOABBREV(void); /* Initialize the protocol and registered fields */ -static int proto_PROTOABBREV = -1; -static int hf_FIELDABBREV = -1; -static expert_field ei_PROTOABBREV_EXPERTABBREV = EI_INIT; +static int proto_PROTOABBREV; +static int hf_FIELDABBREV; +static expert_field ei_PROTOABBREV_EXPERTABBREV; static dissector_handle_t PROTOABBREV_handle; static dissector_handle_t PROTOABBREV_tls_handle; /* Global sample preference ("controls" display of numbers) */ -static bool pref_hex = false; +static bool pref_hex; /* Global sample port preference - real port preferences should generally * default to "" (for a range) or 0 (for a single uint) unless there is an * IANA-registered (or equivalent) port for your protocol. */ @@ -72,7 +72,7 @@ static unsigned tls_port_pref = PROTOABBREV_TLS_PORT; static range_t *tcp_port_range = PROTOABBREV_TCP_PORTS; /* Initialize the subtree pointers */ -static int ett_PROTOABBREV = -1; +static int ett_PROTOABBREV; /* A sample #define of the minimum length (in bytes) of the protocol data. * If data is received with fewer than this many bytes it is rejected by |