diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
commit | e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch) | |
tree | 68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/dissectors/asn1/h460/CALL-PRIORITY.asn | |
parent | Initial commit. (diff) | |
download | wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip |
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/asn1/h460/CALL-PRIORITY.asn')
-rw-r--r-- | epan/dissectors/asn1/h460/CALL-PRIORITY.asn | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/epan/dissectors/asn1/h460/CALL-PRIORITY.asn b/epan/dissectors/asn1/h460/CALL-PRIORITY.asn new file mode 100644 index 00000000..e8301459 --- /dev/null +++ b/epan/dissectors/asn1/h460/CALL-PRIORITY.asn @@ -0,0 +1,55 @@ +-- CALL-PRIORITY.asn +-- +-- Taken from ITU ASN.1 database +-- http://www.itu.int/ITU-T/asn1/database/itu-t/h/h460.4/2007/CALL-PRIORITY.asn +-- + +-- Module CALL-PRIORITY (H.460.4:01/2007) +CALL-PRIORITY {itu-t(0) recommendation(0) h(8) 460 4 version(1)} DEFINITIONS +AUTOMATIC TAGS ::= +BEGIN + +IMPORTS ClearToken, CryptoToken + FROM H235-SECURITY-MESSAGES; + +CallPriorityInfo ::= SEQUENCE -- root for Call Priority related asn.1 + { + priorityValue + CHOICE {emergencyAuthorized NULL, + emergencyPublic NULL, + high NULL, + normal NULL, + ...}, + priorityExtension INTEGER(0..255) OPTIONAL, + tokens SEQUENCE OF ClearToken OPTIONAL, + cryptoTokens SEQUENCE OF CryptoToken OPTIONAL, + rejectReason + CHOICE {priorityUnavailable NULL, + priorityUnauthorized NULL, + priorityValueUnknown NULL, + ...} OPTIONAL, -- Only used in CallPriorityConfirm + ... +} + +CountryInternationalNetworkCallOriginationIdentification ::= + SEQUENCE + -- root for Country/International Network + -- of Call Origination Identification related asn.1 + { + numberingPlan + CHOICE {x121 + SEQUENCE {countryCode IA5String(SIZE (3))(FROM ("0123456789")), + ...}, + e164 + SEQUENCE {countryCode + IA5String(SIZE (3))(FROM ("0123456789")), + identificationCode + IA5String(SIZE (1..4))(FROM ("0123456789")), + ...}, + ...}, + ... +} + +END -- of ASN.1 + +-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D |