blob: 6dedf5f90cc94b77e9ad8f8626077bf437658a4d [file] [log] [blame]
Harald Weltea814f262017-07-24 13:21:35 +02001///////////////////////////////////////////////////////////////////////////////
2// //
3// Copyright Test Competence Center (TCC) ETH 2016 //
4// //
5// The copyright to the computer program(s) herein is the property of TCC. //
6// The program(s) may be used and/or copied only with the written permission //
7// of TCC or in accordance with the terms and conditions stipulated in the //
8// agreement/contract under which the program(s) has been supplied. //
9// //
10///////////////////////////////////////////////////////////////////////////////
11//
12// File: SS_Types.ttcn
13// Rev: R1B
14// Prodnr: CNL 113 832
15// Contact: http://ttcn.ericsson.se
16// Reference: 3GPP TS 24.080 v13.0.0
17
18module SS_Types
19{
20
21import from SS_PDU_Defs all;
22
23//Coding functions
24external function enc_SS_FacilityInformation (in SS_FacilityInformation pdu) return octetstring;
25external function dec_SS_FacilityInformation (in octetstring stream) return SS_FacilityInformation;
26external function dec_SS_FacilityInformation_backtrack (in octetstring stream, out SS_FacilityInformation pdu) return integer;
27
28//Type for extracted facilityInformation in Facility IE
29type record of SS_Component SS_FacilityInformation;
30
31//24.080 3.6.1
32type union SS_Component
33{
34 SS_Invoke invoke,
35 SS_ReturnResult returnResult,
36 SS_ReturnError returnError,
37 SS_Reject reject
38}
39
40}