summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-camel.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:53 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:53 +0000
commita86c5f7cae7ec9a3398300555a0b644689d946a1 (patch)
tree39fe4b107c71174fd1e8a8ceb9a4d2aa14116248 /epan/dissectors/packet-camel.h
parentReleasing progress-linux version 4.2.6-1~progress7.99u1. (diff)
downloadwireshark-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-camel.h')
-rw-r--r--epan/dissectors/packet-camel.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/epan/dissectors/packet-camel.h b/epan/dissectors/packet-camel.h
index ab27894d..8331bb68 100644
--- a/epan/dissectors/packet-camel.h
+++ b/epan/dissectors/packet-camel.h
@@ -1,7 +1,7 @@
/* Do not modify this file. Changes will be overwritten. */
/* Generated automatically by the ASN.1 to Wireshark dissector compiler */
/* packet-camel.h */
-/* asn2wrs.py -b -L -p camel -c ./camel.cnf -s ./packet-camel-template -D . -O ../.. CAP-object-identifiers.asn CAP-classes.asn CAP-datatypes.asn CAP-errorcodes.asn CAP-errortypes.asn CAP-operationcodes.asn CAP-GPRS-ReferenceNumber.asn CAP-gsmSCF-gsmSRF-ops-args.asn CAP-gsmSSF-gsmSCF-ops-args.asn CAP-gprsSSF-gsmSCF-ops-args.asn CAP-SMS-ops-args.asn CAP-U-ABORT-Data.asn CamelV2diff.asn ../ros/Remote-Operations-Information-Objects.asn ../ros/Remote-Operations-Generic-ROS-PDUs.asn */
+/* asn2wrs.py -b -q -L -p camel -c ./camel.cnf -s ./packet-camel-template -D . -O ../.. CAP-object-identifiers.asn CAP-classes.asn CAP-datatypes.asn CAP-errorcodes.asn CAP-errortypes.asn CAP-operationcodes.asn CAP-GPRS-ReferenceNumber.asn CAP-gsmSCF-gsmSRF-ops-args.asn CAP-gsmSSF-gsmSCF-ops-args.asn CAP-gprsSSF-gsmSCF-ops-args.asn CAP-SMS-ops-args.asn CAP-U-ABORT-Data.asn CamelV2diff.asn ../ros/Remote-Operations-Information-Objects.asn ../ros/Remote-Operations-Generic-ROS-PDUs.asn */
/* packet-camel-template.h
* Routines for Camel
@@ -62,10 +62,10 @@ WS_DLL_PUBLIC const value_string camelSRTtype_naming[];
the frames numbers are stored in this structure */
struct camelsrt_category_t {
- guint32 req_num; /**< frame number request seen */
- guint32 rsp_num; /**< frame number response seen */
+ uint32_t req_num; /**< frame number request seen */
+ uint32_t rsp_num; /**< frame number response seen */
nstime_t req_time; /**< arrival time of request */
- gboolean responded; /**< true, if request has been responded */
+ bool responded; /**< true, if request has been responded */
};
/** List of stored parameters for a Camel dialogue
@@ -74,7 +74,7 @@ struct camelsrt_category_t {
The right dialogue will be identified with the arrival time of the InitialDP */
struct camelsrt_call_t {
- guint32 session_id; /**< Identify the session, with an internal number */
+ uint32_t session_id; /**< Identify the session, with an internal number */
struct tcaphash_context_t * tcap_context;
struct camelsrt_category_t category[NB_CAMELSRT_CATEGORY];
};
@@ -84,7 +84,7 @@ struct camelsrt_call_t {
of the TC_BEGIN containing the InitialDP */
struct camelsrt_call_info_key_t {
- guint32 SessionIdKey;
+ uint32_t SessionIdKey;
};
/** Info for a couple of messages (or category)
@@ -93,9 +93,9 @@ struct camelsrt_call_info_key_t {
we can deduce the Delta Time between Request/response */
struct camelsrt_msginfo_t {
- gboolean request_available;
- gboolean is_duplicate;
- gboolean is_delta_time;
+ bool request_available;
+ bool is_duplicate;
+ bool is_delta_time;
nstime_t req_time;
nstime_t delta_time;
};
@@ -103,10 +103,10 @@ struct camelsrt_msginfo_t {
/** List of infos to store for the analyse */
struct camelsrt_info_t {
- guint32 tcap_session_id;
+ uint32_t tcap_session_id;
void * tcap_context;
- guint8 opcode; /**< operation code of message received */
- guint8 bool_msginfo[NB_CAMELSRT_CATEGORY]; /**< category for the received message */
+ uint8_t opcode; /**< operation code of message received */
+ uint8_t bool_msginfo[NB_CAMELSRT_CATEGORY]; /**< category for the received message */
struct camelsrt_msginfo_t msginfo[NB_CAMELSRT_CATEGORY];
};
@@ -127,6 +127,6 @@ void camelsrt_call_matching(tvbuff_t *tvb,
proto_tree *tree,
struct camelsrt_info_t * p_camel_info);
-WS_DLL_PUBLIC gboolean gcamel_StatSRT;
+WS_DLL_PUBLIC bool gcamel_StatSRT;
#endif /* PACKET_camel_H */