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 /wsutil/exported_pdu_tlvs.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 'wsutil/exported_pdu_tlvs.h')
-rw-r--r-- | wsutil/exported_pdu_tlvs.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/wsutil/exported_pdu_tlvs.h b/wsutil/exported_pdu_tlvs.h index 4850be8e..2799b8a7 100644 --- a/wsutil/exported_pdu_tlvs.h +++ b/wsutil/exported_pdu_tlvs.h @@ -175,11 +175,22 @@ #define EXP_PDU_TAG_P2P_DIRECTION 35 /**< The packet direction (P2P_DIR_SENT, P2P_DIR_RECV). */ -#define EXP_PDU_TAG_COL_INFO_TEXT 36 /**< UTF-8 text string to put in COL_INFO, useful when puting meta data into the packet list. +#define EXP_PDU_TAG_COL_INFO_TEXT 36 /**< UTF-8 text string to put in COL_INFO, useful when putting meta data into the packet list. */ #define EXP_PDU_TAG_USER_DATA_PDU 37 /**< Raw user data PDU which can be dissected as any protocol. */ +/* 3GPP identity types for EXP_PDU_TAG_3GPP_ID */ +#define EXP_PDU_3GPP_ID_CGI 0 /**< 56-bit 2G/3G Cell Global Identifier (MNC big-endian encoding) */ +#define EXP_PDU_3GPP_ID_ECGI 1 /**< 52-bit 4G E-UTRAN Cell Global Identifier (MNC big-endian encoding) */ +#define EXP_PDU_3GPP_ID_NCGI 2 /**< 60-bit NR Cell Global Identifier (MNC big-endian encoding) */ + +/**< Stores a 3GPP identifier. + The value begins with a 1-byte identity type (EXP_PDU_3GPP_ID_*), + followed by the identity itself. +*/ +#define EXP_PDU_TAG_3GPP_ID 38 + #define EXP_PDU_TAG_IPV4_LEN 4 #define EXP_PDU_TAG_IPV6_LEN 16 |