blob: 2d056810e571628996383cd5a3a4958ad2d2eaea [file] [log] [blame]
anjana_sreekumar@infosys.com991c2062020-01-08 11:42:57 +05301/*
2 * Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
3 * From ASN.1 module "S1AP-PDU-Descriptions"
4 * found in "./asn1c/S1AP-PDU-Descriptions.asn"
5 * `asn1c -fcompound-names -fno-include-deps -gen-PER -findirect-choice -pdu=S1AP-PDU`
6 */
7
8#ifndef _S1AP_PDU_H_
9#define _S1AP_PDU_H_
10
11
12#include <asn_application.h>
13
14/* Including external dependencies */
15#include <constr_CHOICE.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21/* Dependencies */
22typedef enum S1AP_PDU_PR {
23 S1AP_PDU_PR_NOTHING, /* No components present */
24 S1AP_PDU_PR_initiatingMessage,
25 S1AP_PDU_PR_successfulOutcome,
26 S1AP_PDU_PR_unsuccessfulOutcome
27 /* Extensions may appear below */
28
29} S1AP_PDU_PR;
30
31/* Forward declarations */
32struct InitiatingMessage;
33struct SuccessfulOutcome;
34struct UnsuccessfulOutcome;
35
36/* S1AP-PDU */
37typedef struct S1AP_PDU {
38 S1AP_PDU_PR present;
39 union S1AP_PDU_u {
40 struct InitiatingMessage *initiatingMessage;
41 struct SuccessfulOutcome *successfulOutcome;
42 struct UnsuccessfulOutcome *unsuccessfulOutcome;
43 /*
44 * This type is extensible,
45 * possible extensions are below.
46 */
47 } choice;
48
49 /* Context for parsing across buffer boundaries */
50 asn_struct_ctx_t _asn_ctx;
51} S1AP_PDU_t;
52
53/* Implementation */
54extern asn_TYPE_descriptor_t asn_DEF_S1AP_PDU;
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif /* _S1AP_PDU_H_ */
61#include <asn_internal.h>