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/gsm_map/MAP-Group-Call-Operations.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/gsm_map/MAP-Group-Call-Operations.asn')
-rw-r--r-- | epan/dissectors/asn1/gsm_map/MAP-Group-Call-Operations.asn | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/epan/dissectors/asn1/gsm_map/MAP-Group-Call-Operations.asn b/epan/dissectors/asn1/gsm_map/MAP-Group-Call-Operations.asn new file mode 100644 index 00000000..15e508ff --- /dev/null +++ b/epan/dissectors/asn1/gsm_map/MAP-Group-Call-Operations.asn @@ -0,0 +1,97 @@ +-- 3GPP TS 29.002 V17.1.0 (2021-06) +-- 17.6.7 Group Call operations + +MAP-Group-Call-Operations { + itu-t identified-organization (4) etsi (0) mobileDomain (0) + gsm-Network (1) modules (3) map-Group-Call-Operations (22) + version20 (20)} + +DEFINITIONS + +::= + +BEGIN + +EXPORTS + prepareGroupCall, + sendGroupCallEndSignal, + forwardGroupCallSignalling, + processGroupCallSignalling, + sendGroupCallInfo +; + +IMPORTS + OPERATION +FROM Remote-Operations-Information-Objects { +joint-iso-itu-t remote-operations(4) + informationObjects(5) version1(0)} + + systemFailure, + unexpectedDataValue, + noGroupCallNumberAvailable, + ongoingGroupCall, + unknownSubscriber, + teleserviceNotProvisioned, + dataMissing +FROM MAP-Errors { + itu-t identified-organization (4) etsi (0) mobileDomain (0) + gsm-Network (1) modules (3) map-Errors (10) version20 (20)} + + PrepareGroupCallArg, + PrepareGroupCallRes, + SendGroupCallEndSignalArg, + SendGroupCallEndSignalRes, + ForwardGroupCallSignallingArg, + ProcessGroupCallSignallingArg, + SendGroupCallInfoArg, + SendGroupCallInfoRes +FROM MAP-GR-DataTypes { + itu-t identified-organization (4) etsi (0) mobileDomain (0) + gsm-Network (1) modules (3) map-GR-DataTypes (23) version20 (20)} + +; + +prepareGroupCall OPERATION ::= { --Timer m + ARGUMENT + PrepareGroupCallArg + RESULT + PrepareGroupCallRes + ERRORS { + systemFailure | + noGroupCallNumberAvailable | + unexpectedDataValue} + CODE local:39 } + +sendGroupCallEndSignal OPERATION ::= { --Timer l + ARGUMENT + SendGroupCallEndSignalArg + RESULT + SendGroupCallEndSignalRes + CODE local:40 } + +processGroupCallSignalling OPERATION ::= { --Timer s + ARGUMENT + ProcessGroupCallSignallingArg + CODE local:41 } + +forwardGroupCallSignalling OPERATION ::= { --Timer s + ARGUMENT + ForwardGroupCallSignallingArg + CODE local:42 } + +sendGroupCallInfo OPERATION ::= { --Timer m + ARGUMENT + SendGroupCallInfoArg + RESULT + SendGroupCallInfoRes + ERRORS { + systemFailure | + ongoingGroupCall | + unexpectedDataValue | + dataMissing | + teleserviceNotProvisioned | + unknownSubscriber} + CODE local:84 } + + +END |