blob: 0bc2fc7bd77fc95753834d3d39a5c4905bf22a48 [file] [log] [blame]
Harald Welteee091892015-09-10 10:22:03 +02001/*
2 * Generated by asn1c-0.9.28 (http://lionet.info/asn1c)
3 * From ASN.1 module "RANAP-IEs"
4 * found in "../../asn1/ranap/RANAP-IEs.asn"
5 */
6
7#ifndef _RANAP_UE_ID_H_
8#define _RANAP_UE_ID_H_
9
10
11#include <asn_application.h>
12
13/* Including external dependencies */
Neels Hofmeyrf1f2d7c2016-01-05 12:00:06 +010014#include <osmocom/ranap/RANAP_IMSI.h>
15#include <osmocom/ranap/RANAP_IMEI.h>
16#include <osmocom/ranap/RANAP_IMEISV.h>
Harald Welteee091892015-09-10 10:22:03 +020017#include <constr_CHOICE.h>
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/* Dependencies */
24typedef enum RANAP_UE_ID_PR {
25 RANAP_UE_ID_PR_NOTHING, /* No components present */
26 RANAP_UE_ID_PR_imsi,
27 RANAP_UE_ID_PR_imei,
28 /* Extensions may appear below */
29 RANAP_UE_ID_PR_imeisv
30} RANAP_UE_ID_PR;
31
32/* RANAP_UE-ID */
33typedef struct RANAP_UE_ID {
34 RANAP_UE_ID_PR present;
35 union RANAP_UE_ID_u {
36 RANAP_IMSI_t imsi;
37 RANAP_IMEI_t imei;
38 /*
39 * This type is extensible,
40 * possible extensions are below.
41 */
42 RANAP_IMEISV_t imeisv;
43 } choice;
44
45 /* Context for parsing across buffer boundaries */
46 asn_struct_ctx_t _asn_ctx;
47} RANAP_UE_ID_t;
48
49/* Implementation */
50extern asn_TYPE_descriptor_t asn_DEF_RANAP_UE_ID;
51
52#ifdef __cplusplus
53}
54#endif
55
56#endif /* _RANAP_UE_ID_H_ */
57#include <asn_internal.h>