diff --git a/debian/control b/debian/control index 1945b0c8e..f19bd77b8 100644 --- a/debian/control +++ b/debian/control @@ -21,6 +21,7 @@ Build-Depends: debhelper (>= 11), libcurl4-gnutls-dev, libnghttp2-dev, libtins-dev, + libtalloc-dev, Standards-Version: 4.3.0 Rules-Requires-Root: no Homepage: https://open5gs.org diff --git a/docker/alpine/latest/base/Dockerfile b/docker/alpine/latest/base/Dockerfile index 61d8abb38..9bda898bc 100644 --- a/docker/alpine/latest/base/Dockerfile +++ b/docker/alpine/latest/base/Dockerfile @@ -23,4 +23,5 @@ RUN apk update && \ libmicrohttpd-dev \ curl-dev \ nghttp2-dev \ + talloc-dev \ iproute2 diff --git a/docker/debian/latest/base/Dockerfile b/docker/debian/latest/base/Dockerfile index b098b240c..55dbdecf8 100644 --- a/docker/debian/latest/base/Dockerfile +++ b/docker/debian/latest/base/Dockerfile @@ -29,6 +29,7 @@ RUN apt-get update && \ libcurl4-gnutls-dev \ libnghttp2-dev \ libtins-dev \ + libtalloc-devel \ iproute2 \ ca-certificates \ netbase \ diff --git a/docker/fedora/latest/base/Dockerfile b/docker/fedora/latest/base/Dockerfile index 5491b1ac5..d85a5ae05 100644 --- a/docker/fedora/latest/base/Dockerfile +++ b/docker/fedora/latest/base/Dockerfile @@ -23,6 +23,7 @@ RUN dnf -y install \ libmicrohttpd-devel \ libcurl-devel \ libnghttp2-devel \ + libtalloc-devel \ iproute RUN dnf -y install meson diff --git a/docker/ubuntu/latest/base/Dockerfile b/docker/ubuntu/latest/base/Dockerfile index b098b240c..c7de86eb2 100644 --- a/docker/ubuntu/latest/base/Dockerfile +++ b/docker/ubuntu/latest/base/Dockerfile @@ -29,6 +29,7 @@ RUN apt-get update && \ libcurl4-gnutls-dev \ libnghttp2-dev \ libtins-dev \ + libtalloc-dev \ iproute2 \ ca-certificates \ netbase \ diff --git a/docs/_docs/guide/02-building-open5gs-from-sources.md b/docs/_docs/guide/02-building-open5gs-from-sources.md index 2b763e871..e1c1e010b 100644 --- a/docs/_docs/guide/02-building-open5gs-from-sources.md +++ b/docs/_docs/guide/02-building-open5gs-from-sources.md @@ -44,7 +44,7 @@ $ sudo ip link set ogstun up Install the dependencies for building the source code. ```bash -$ sudo apt install python3-pip python3-setuptools python3-wheel ninja-build build-essential flex bison git libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev libbson-dev libyaml-dev libnghttp2-dev libmicrohttpd-dev libcurl4-gnutls-dev libnghttp2-dev libtins-dev meson +$ sudo apt install python3-pip python3-setuptools python3-wheel ninja-build build-essential flex bison git libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev libbson-dev libyaml-dev libnghttp2-dev libmicrohttpd-dev libcurl4-gnutls-dev libnghttp2-dev libtins-dev libtalloc-dev meson ``` Git clone. diff --git a/docs/_docs/platform/02-centos.md b/docs/_docs/platform/02-centos.md index 55cafb80a..1d00f232e 100644 --- a/docs/_docs/platform/02-centos.md +++ b/docs/_docs/platform/02-centos.md @@ -109,7 +109,7 @@ a base CentOS 8 installation. ```bash -$ sudo dnf install python3 meson ninja-build gcc gcc-c++ flex bison git lksctp-tools-devel libidn-devel gnutls-devel libgcrypt-devel openssl-devel cyrus-sasl-devel libyaml-devel mongo-c-driver-devel libmicrohttpd-devel libcurl-devel libnghttp2-devel +$ sudo dnf install python3 meson ninja-build gcc gcc-c++ flex bison git lksctp-tools-devel libidn-devel gnutls-devel libgcrypt-devel openssl-devel cyrus-sasl-devel libyaml-devel mongo-c-driver-devel libmicrohttpd-devel libcurl-devel libnghttp2-devel libtalloc-devel ``` ### Install the SCTP kernel module in kernel-modules-extra. diff --git a/docs/_docs/platform/03-fedora.md b/docs/_docs/platform/03-fedora.md index 7312b4126..24722fc3c 100644 --- a/docs/_docs/platform/03-fedora.md +++ b/docs/_docs/platform/03-fedora.md @@ -70,7 +70,7 @@ $ ip link show Install the depedencies for building the source code. ```bash -$ sudo dnf install python3 ninja-build gcc gcc-c++ flex bison git lksctp-tools-devel libidn-devel gnutls-devel libgcrypt-devel openssl-devel cyrus-sasl-devel libyaml-devel mongo-c-driver-devel libmicrohttpd-devel libcurl-devel libnghttp2-devel iproute +$ sudo dnf install python3 ninja-build gcc gcc-c++ flex bison git lksctp-tools-devel libidn-devel gnutls-devel libgcrypt-devel openssl-devel cyrus-sasl-devel libyaml-devel mongo-c-driver-devel libmicrohttpd-devel libcurl-devel libnghttp2-devel libtalloc-devel iproute ``` Install Meson diff --git a/docs/_docs/platform/05-macosx-apple-silicon.md b/docs/_docs/platform/05-macosx-apple-silicon.md index 0a78c0079..e783b99ab 100644 --- a/docs/_docs/platform/05-macosx-apple-silicon.md +++ b/docs/_docs/platform/05-macosx-apple-silicon.md @@ -89,7 +89,7 @@ $ sudo pfctl -e -f /etc/pf.anchors/org.open5gs Install the depedencies for building the source code. ```bash -$ brew install mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nghttp2 pkg-config bison libusrsctp libtins +$ brew install mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nghttp2 pkg-config bison libusrsctp libtins talloc ``` Configure Homebrew PATH diff --git a/docs/_docs/platform/06-macosx-intel.md b/docs/_docs/platform/06-macosx-intel.md index f81552f62..5ecd6b7e6 100644 --- a/docs/_docs/platform/06-macosx-intel.md +++ b/docs/_docs/platform/06-macosx-intel.md @@ -89,7 +89,7 @@ $ sudo pfctl -e -f /etc/pf.anchors/org.open5gs Install the depedencies for building the source code. ```bash -$ brew install mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nghttp2 pkg-config libusrsctp libtins +$ brew install mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nghttp2 pkg-config libusrsctp libtins talloc ``` Install Bison and Create soft link. diff --git a/docs/_docs/platform/07-freebsd.md b/docs/_docs/platform/07-freebsd.md index 84d6defb9..479c75b58 100644 --- a/docs/_docs/platform/07-freebsd.md +++ b/docs/_docs/platform/07-freebsd.md @@ -106,7 +106,7 @@ $ sudo sysctl -w net.inet6.ip6.forwarding=1 Install the depedencies for building the source code. ```bash -$ sudo pkg install meson ninja gcc bison gsed pkgconf git mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nghttp2 +$ sudo pkg install meson ninja gcc bison gsed pkgconf git mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nghttp2 talloc ``` Configure gcc PATH diff --git a/docs/_docs/platform/08-alpine.md b/docs/_docs/platform/08-alpine.md index ce0043586..6aaada969 100644 --- a/docs/_docs/platform/08-alpine.md +++ b/docs/_docs/platform/08-alpine.md @@ -53,7 +53,7 @@ $ ip link show Install the depedencies for building the source code. ```bash -$ sudo apk add alpine-sdk bison flex git meson bash sudo linux-headers bsd-compat-headers yaml-dev lksctp-tools-dev gnutls-dev libgcrypt-dev libidn-dev mongo-c-driver-dev libmicrohttpd-dev curl-dev nghttp2-dev +$ sudo apk add alpine-sdk bison flex git meson bash sudo linux-headers bsd-compat-headers yaml-dev lksctp-tools-dev gnutls-dev libgcrypt-dev libidn-dev mongo-c-driver-dev libmicrohttpd-dev curl-dev nghttp2-dev talloc-dev ``` Git clone. diff --git a/lib/asn1c/common/INTEGER.c b/lib/asn1c/common/INTEGER.c index f6db33a6b..d8472e22a 100644 --- a/lib/asn1c/common/INTEGER.c +++ b/lib/asn1c/common/INTEGER.c @@ -6,6 +6,7 @@ #include #include #include +#include /* * INTEGER basic type description. diff --git a/lib/asn1c/common/OBJECT_IDENTIFIER.c b/lib/asn1c/common/OBJECT_IDENTIFIER.c index ba54c25a4..c26e69817 100644 --- a/lib/asn1c/common/OBJECT_IDENTIFIER.c +++ b/lib/asn1c/common/OBJECT_IDENTIFIER.c @@ -8,6 +8,7 @@ #include #include /* for CHAR_BIT */ #include +#include /* * OBJECT IDENTIFIER basic type description. diff --git a/lib/asn1c/common/OCTET_STRING_print.c b/lib/asn1c/common/OCTET_STRING_print.c index e65b8c08c..6daa33e9f 100644 --- a/lib/asn1c/common/OCTET_STRING_print.c +++ b/lib/asn1c/common/OCTET_STRING_print.c @@ -26,7 +26,7 @@ OCTET_STRING_print(const asn_TYPE_descriptor_t *td, const void *sptr, * Dump the contents of the buffer in hexadecimal. */ buf = st->buf; - end = buf + st->size; + end = (buf == NULL)? NULL : buf + st->size; for(i = 0; buf < end; buf++, i++) { if(!(i % 16) && (i || st->size > 16)) { if(cb(scratch, p - scratch, app_key) < 0) diff --git a/lib/asn1c/common/asn_internal.h b/lib/asn1c/common/asn_internal.h index 53166190b..3a23e8d0a 100644 --- a/lib/asn1c/common/asn_internal.h +++ b/lib/asn1c/common/asn_internal.h @@ -41,10 +41,20 @@ int get_asn1c_environment_version(void); /* Run-time version */ #define FREEMEM(ptr) free(ptr) #else #include "ogs-core.h" +#if 1 +#define CALLOC(nmemb, size) \ + ogs_talloc_zero_size(__ogs_talloc_asn1c, (nmemb) * (size), __location__) +#define MALLOC(size) \ + ogs_talloc_size(__ogs_talloc_asn1c, size, __location__) +#define REALLOC(oldptr, size) \ + ogs_talloc_realloc_size(__ogs_talloc_asn1c, oldptr, size, __location__) +#define FREEMEM(ptr) ogs_talloc_free(ptr, __location__) +#else #define CALLOC(nmemb, size) ogs_calloc_or_assert(nmemb, size) #define MALLOC(size) ogs_malloc_or_assert(size) #define REALLOC(oldptr, size) ogs_realloc_or_assert(oldptr, size) -#define FREEMEM(ptr) ogs_free(ptr) +#define FREEMEM(ptr) ogs_free_debug(ptr) +#endif #endif #define asn_debug_indent 0 diff --git a/lib/asn1c/common/asn_system.h b/lib/asn1c/common/asn_system.h index 600dacd28..0f0d495b2 100644 --- a/lib/asn1c/common/asn_system.h +++ b/lib/asn1c/common/asn_system.h @@ -27,12 +27,15 @@ #include /* For LONG_MAX */ #include /* For va_start */ #include /* for offsetof and ptrdiff_t */ +#include /* for PRIdMAX */ #ifdef _WIN32 #include +#ifndef __MINGW32__ #define snprintf _snprintf #define vsnprintf _vsnprintf +#endif /* To avoid linking with ws2_32.lib, here's the definition of ntohl() */ #define sys_ntohl(l) ((((l) << 24) & 0xff000000) \ diff --git a/lib/asn1c/common/constr_CHOICE_aper.c b/lib/asn1c/common/constr_CHOICE_aper.c index 28add78fe..0df856858 100644 --- a/lib/asn1c/common/constr_CHOICE_aper.c +++ b/lib/asn1c/common/constr_CHOICE_aper.c @@ -52,21 +52,14 @@ CHOICE_decode_aper(const asn_codec_ctx_t *opt_codec_ctx, } else { if(specs->ext_start == -1) ASN__DECODE_FAILED; -/* modified by acetcom for https://github.com/open5gs/open5gs/issues/783 */ -#if 1 - if (ct) { -#endif + + if (ct && ct->upper_bound >= ct->lower_bound) { value = aper_get_nsnnwn(pd, ct->upper_bound - ct->lower_bound + 1); if(value < 0) ASN__DECODE_STARVED; value += specs->ext_start; -/* modified by acetcom for https://github.com/open5gs/open5gs/issues/783 */ -#if 1 - } else { - value = specs->ext_start; + if((unsigned)value >= td->elements_count) + ASN__DECODE_FAILED; } -#endif - if((unsigned)value >= td->elements_count) - ASN__DECODE_FAILED; } /* Adjust if canonical order is different from natural order */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupItem.c b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupItem.c index cb6479f1c..b92348048 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupItem.c +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMF_TNLAssociationSetupItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AMF_TNLAssociationSetupItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P5, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P5, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupItem.h b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupItem.h index d414736dc..48f86a2ab 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupItem.h +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupList.c b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupList.c index 7690a846f..cdcb5eee4 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupList.c +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupList.h b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupList.h index 01b38eba2..9a3f1c42b 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupList.h +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationSetupList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddItem.c b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddItem.c index 37a751c53..0d36d3d31 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddItem.c +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMF_TNLAssociationToAddItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AMF_TNLAssociationToAddItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P6, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P6, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddItem.h b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddItem.h index d82af337f..f58e60886 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddItem.h +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddList.c b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddList.c index 358ef90ce..d6d6f5416 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddList.c +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddList.h b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddList.h index 618357325..c364b6bb8 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddList.h +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToAddList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveItem.c b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveItem.c index 74eee8361..5f6c1245b 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveItem.c +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMF_TNLAssociationToRemoveItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AMF_TNLAssociationToRemoveItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P7, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P7, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveItem.h b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveItem.h index 6e7bb48c7..fc3027c01 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveItem.h +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveList.c b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveList.c index e3711f633..5f7f14a69 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveList.c +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveList.h b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveList.h index 8d8eb248d..6d53fe6b8 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveList.h +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToRemoveList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateItem.c b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateItem.c index b65a793fd..17da7277e 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateItem.c +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMF_TNLAssociationToUpdateItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AMF_TNLAssociationToUpdateItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P8, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P8, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateItem.h b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateItem.h index 17a7cd4a6..f9ae11239 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateItem.h +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateList.c b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateList.c index f7c8bde27..3d4a0f80b 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateList.c +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateList.h b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateList.h index dbb472bc1..8e50f6ea7 100644 --- a/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateList.h +++ b/lib/asn1c/ngap/NGAP_AMF-TNLAssociationToUpdateList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-UE-NGAP-ID.c b/lib/asn1c/ngap/NGAP_AMF-UE-NGAP-ID.c index 2f1a8cfb9..ad868b653 100644 --- a/lib/asn1c/ngap/NGAP_AMF-UE-NGAP-ID.c +++ b/lib/asn1c/ngap/NGAP_AMF-UE-NGAP-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMF-UE-NGAP-ID.h b/lib/asn1c/ngap/NGAP_AMF-UE-NGAP-ID.h index e937fb13c..a1a4a85e0 100644 --- a/lib/asn1c/ngap/NGAP_AMF-UE-NGAP-ID.h +++ b/lib/asn1c/ngap/NGAP_AMF-UE-NGAP-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFCPRelocationIndication.c b/lib/asn1c/ngap/NGAP_AMFCPRelocationIndication.c index 5c147491e..724df687d 100644 --- a/lib/asn1c/ngap/NGAP_AMFCPRelocationIndication.c +++ b/lib/asn1c/ngap/NGAP_AMFCPRelocationIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMFCPRelocationIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_AMFCPRelocationIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P95, + &asn_DEF_NGAP_ProtocolIE_Container_9574P95, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMFCPRelocationIndication.h b/lib/asn1c/ngap/NGAP_AMFCPRelocationIndication.h index ee8cd8e54..03cf7a0d4 100644 --- a/lib/asn1c/ngap/NGAP_AMFCPRelocationIndication.h +++ b/lib/asn1c/ngap/NGAP_AMFCPRelocationIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_AMFCPRelocationIndication */ typedef struct NGAP_AMFCPRelocationIndication { - NGAP_ProtocolIE_Container_9520P95_t protocolIEs; + NGAP_ProtocolIE_Container_9574P95_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdate.c b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdate.c index 2a8879540..a4b0184c3 100644 --- a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdate.c +++ b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMFConfigurationUpdate_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_AMFConfigurationUpdate, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P57, + &asn_DEF_NGAP_ProtocolIE_Container_9574P57, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdate.h b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdate.h index fb27e54e2..1ba2f4f2e 100644 --- a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdate.h +++ b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_AMFConfigurationUpdate */ typedef struct NGAP_AMFConfigurationUpdate { - NGAP_ProtocolIE_Container_9520P57_t protocolIEs; + NGAP_ProtocolIE_Container_9574P57_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateAcknowledge.c b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateAcknowledge.c index db5574425..8e587bca5 100644 --- a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateAcknowledge.c +++ b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMFConfigurationUpdateAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_AMFConfigurationUpdateAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P58, + &asn_DEF_NGAP_ProtocolIE_Container_9574P58, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateAcknowledge.h b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateAcknowledge.h index 9081b4705..406a2009a 100644 --- a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateAcknowledge.h +++ b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_AMFConfigurationUpdateAcknowledge */ typedef struct NGAP_AMFConfigurationUpdateAcknowledge { - NGAP_ProtocolIE_Container_9520P58_t protocolIEs; + NGAP_ProtocolIE_Container_9574P58_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateFailure.c b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateFailure.c index 96804619d..b36d93dd2 100644 --- a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateFailure.c +++ b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMFConfigurationUpdateFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_AMFConfigurationUpdateFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P59, + &asn_DEF_NGAP_ProtocolIE_Container_9574P59, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateFailure.h b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateFailure.h index 3b8807a1b..d3ce758e4 100644 --- a/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateFailure.h +++ b/lib/asn1c/ngap/NGAP_AMFConfigurationUpdateFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_AMFConfigurationUpdateFailure */ typedef struct NGAP_AMFConfigurationUpdateFailure { - NGAP_ProtocolIE_Container_9520P59_t protocolIEs; + NGAP_ProtocolIE_Container_9574P59_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_AMFName.c b/lib/asn1c/ngap/NGAP_AMFName.c index 9d727c44e..ec5dc1a8e 100644 --- a/lib/asn1c/ngap/NGAP_AMFName.c +++ b/lib/asn1c/ngap/NGAP_AMFName.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFName.h b/lib/asn1c/ngap/NGAP_AMFName.h index 7fe4a1bdb..731948835 100644 --- a/lib/asn1c/ngap/NGAP_AMFName.h +++ b/lib/asn1c/ngap/NGAP_AMFName.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFNameUTF8String.c b/lib/asn1c/ngap/NGAP_AMFNameUTF8String.c index 73411b633..dc3bb9f79 100644 --- a/lib/asn1c/ngap/NGAP_AMFNameUTF8String.c +++ b/lib/asn1c/ngap/NGAP_AMFNameUTF8String.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -49,7 +49,7 @@ asn_per_constraints_t asn_PER_type_NGAP_AMFNameUTF8String_constr_1 CC_NOTUSED = #if 0 /* modified by acetcom */ { APC_UNCONSTRAINED, -1, -1, 0, 0 }, #else - { APC_CONSTRAINED | APC_EXTENSIBLE, 8, 8, 1, 150 } /* (SIZE(1..150,...)) */, + { APC_CONSTRAINED | APC_EXTENSIBLE, 8, 8, 1, 150 } /* (SIZE(1..150,...)) */, #endif 0, 0 /* No PER value map */ }; diff --git a/lib/asn1c/ngap/NGAP_AMFNameUTF8String.h b/lib/asn1c/ngap/NGAP_AMFNameUTF8String.h index 10d8b575f..6a731ca60 100644 --- a/lib/asn1c/ngap/NGAP_AMFNameUTF8String.h +++ b/lib/asn1c/ngap/NGAP_AMFNameUTF8String.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFNameVisibleString.c b/lib/asn1c/ngap/NGAP_AMFNameVisibleString.c index 302c9a97f..540154a6f 100644 --- a/lib/asn1c/ngap/NGAP_AMFNameVisibleString.c +++ b/lib/asn1c/ngap/NGAP_AMFNameVisibleString.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFNameVisibleString.h b/lib/asn1c/ngap/NGAP_AMFNameVisibleString.h index 0170a6adc..4674af6b8 100644 --- a/lib/asn1c/ngap/NGAP_AMFNameVisibleString.h +++ b/lib/asn1c/ngap/NGAP_AMFNameVisibleString.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFPagingTarget.c b/lib/asn1c/ngap/NGAP_AMFPagingTarget.c index 3eaa81fb5..c320b0b94 100644 --- a/lib/asn1c/ngap/NGAP_AMFPagingTarget.c +++ b/lib/asn1c/ngap/NGAP_AMFPagingTarget.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMFPagingTarget_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_AMFPagingTarget, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMFPagingTarget.h b/lib/asn1c/ngap/NGAP_AMFPagingTarget.h index 2e76c85aa..a68f1328d 100644 --- a/lib/asn1c/ngap/NGAP_AMFPagingTarget.h +++ b/lib/asn1c/ngap/NGAP_AMFPagingTarget.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFPointer.c b/lib/asn1c/ngap/NGAP_AMFPointer.c index 529a3d24f..9dd600496 100644 --- a/lib/asn1c/ngap/NGAP_AMFPointer.c +++ b/lib/asn1c/ngap/NGAP_AMFPointer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFPointer.h b/lib/asn1c/ngap/NGAP_AMFPointer.h index 3282e1f83..0a1c168e7 100644 --- a/lib/asn1c/ngap/NGAP_AMFPointer.h +++ b/lib/asn1c/ngap/NGAP_AMFPointer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFRegionID.c b/lib/asn1c/ngap/NGAP_AMFRegionID.c index c9404623c..24329989f 100644 --- a/lib/asn1c/ngap/NGAP_AMFRegionID.c +++ b/lib/asn1c/ngap/NGAP_AMFRegionID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFRegionID.h b/lib/asn1c/ngap/NGAP_AMFRegionID.h index 8fff68565..4a9a7e482 100644 --- a/lib/asn1c/ngap/NGAP_AMFRegionID.h +++ b/lib/asn1c/ngap/NGAP_AMFRegionID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFSetID.c b/lib/asn1c/ngap/NGAP_AMFSetID.c index 6a2f17e63..e11782ff1 100644 --- a/lib/asn1c/ngap/NGAP_AMFSetID.c +++ b/lib/asn1c/ngap/NGAP_AMFSetID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFSetID.h b/lib/asn1c/ngap/NGAP_AMFSetID.h index 8e8cae4d0..9d70ffb73 100644 --- a/lib/asn1c/ngap/NGAP_AMFSetID.h +++ b/lib/asn1c/ngap/NGAP_AMFSetID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AMFStatusIndication.c b/lib/asn1c/ngap/NGAP_AMFStatusIndication.c index 9c10fb601..adf492308 100644 --- a/lib/asn1c/ngap/NGAP_AMFStatusIndication.c +++ b/lib/asn1c/ngap/NGAP_AMFStatusIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AMFStatusIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_AMFStatusIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P60, + &asn_DEF_NGAP_ProtocolIE_Container_9574P60, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AMFStatusIndication.h b/lib/asn1c/ngap/NGAP_AMFStatusIndication.h index 634ffea66..03a0f5756 100644 --- a/lib/asn1c/ngap/NGAP_AMFStatusIndication.h +++ b/lib/asn1c/ngap/NGAP_AMFStatusIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_AMFStatusIndication */ typedef struct NGAP_AMFStatusIndication { - NGAP_ProtocolIE_Container_9520P60_t protocolIEs; + NGAP_ProtocolIE_Container_9574P60_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOItem.c b/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOItem.c index a33cf5588..e3ca4c8e8 100644 --- a/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOItem.c +++ b/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AdditionalDLUPTNLInformationForHOItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AdditionalDLUPTNLInformationForHOItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P0, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P0, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOItem.h b/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOItem.h index 096633acb..a32a19818 100644 --- a/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOItem.h +++ b/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOList.c b/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOList.c index 9f32082c3..693ee1695 100644 --- a/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOList.c +++ b/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOList.h b/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOList.h index 00f32081f..411498a83 100644 --- a/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOList.h +++ b/lib/asn1c/ngap/NGAP_AdditionalDLUPTNLInformationForHOList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AdditionalQosFlowInformation.c b/lib/asn1c/ngap/NGAP_AdditionalQosFlowInformation.c index 078f00433..5e8602812 100644 --- a/lib/asn1c/ngap/NGAP_AdditionalQosFlowInformation.c +++ b/lib/asn1c/ngap/NGAP_AdditionalQosFlowInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AdditionalQosFlowInformation.h b/lib/asn1c/ngap/NGAP_AdditionalQosFlowInformation.h index 4c1276cbd..424023a3c 100644 --- a/lib/asn1c/ngap/NGAP_AdditionalQosFlowInformation.h +++ b/lib/asn1c/ngap/NGAP_AdditionalQosFlowInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AllocationAndRetentionPriority.c b/lib/asn1c/ngap/NGAP_AllocationAndRetentionPriority.c index f98a2b3b5..c60ee8dde 100644 --- a/lib/asn1c/ngap/NGAP_AllocationAndRetentionPriority.c +++ b/lib/asn1c/ngap/NGAP_AllocationAndRetentionPriority.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AllocationAndRetentionPriority_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AllocationAndRetentionPriority, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P1, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P1, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AllocationAndRetentionPriority.h b/lib/asn1c/ngap/NGAP_AllocationAndRetentionPriority.h index 1b31c777d..370cfc10c 100644 --- a/lib/asn1c/ngap/NGAP_AllocationAndRetentionPriority.h +++ b/lib/asn1c/ngap/NGAP_AllocationAndRetentionPriority.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Allowed-CAG-List-per-PLMN.c b/lib/asn1c/ngap/NGAP_Allowed-CAG-List-per-PLMN.c index dfa473678..f91da7500 100644 --- a/lib/asn1c/ngap/NGAP_Allowed-CAG-List-per-PLMN.c +++ b/lib/asn1c/ngap/NGAP_Allowed-CAG-List-per-PLMN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Allowed-CAG-List-per-PLMN.h b/lib/asn1c/ngap/NGAP_Allowed-CAG-List-per-PLMN.h index 0e5d9e7ee..c490b658c 100644 --- a/lib/asn1c/ngap/NGAP_Allowed-CAG-List-per-PLMN.h +++ b/lib/asn1c/ngap/NGAP_Allowed-CAG-List-per-PLMN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-Item.c b/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-Item.c index e9d7d9083..87c560eef 100644 --- a/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-Item.c +++ b/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -121,7 +121,7 @@ asn_TYPE_member_t asn_MBR_NGAP_Allowed_PNI_NPN_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_Allowed_PNI_NPN_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P3, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P3, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-Item.h b/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-Item.h index f93fc1aef..078b9a14c 100644 --- a/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-Item.h +++ b/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-List.c b/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-List.c index f3d7b5fe4..b97732ddb 100644 --- a/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-List.c +++ b/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-List.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-List.h b/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-List.h index 435c62a42..a7c7cdec8 100644 --- a/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-List.h +++ b/lib/asn1c/ngap/NGAP_Allowed-PNI-NPN-List.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AllowedNSSAI-Item.c b/lib/asn1c/ngap/NGAP_AllowedNSSAI-Item.c index 86193970a..778dbbf8b 100644 --- a/lib/asn1c/ngap/NGAP_AllowedNSSAI-Item.c +++ b/lib/asn1c/ngap/NGAP_AllowedNSSAI-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AllowedNSSAI_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AllowedNSSAI_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P2, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P2, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AllowedNSSAI-Item.h b/lib/asn1c/ngap/NGAP_AllowedNSSAI-Item.h index bdf4edcec..1f8ad741e 100644 --- a/lib/asn1c/ngap/NGAP_AllowedNSSAI-Item.h +++ b/lib/asn1c/ngap/NGAP_AllowedNSSAI-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AllowedNSSAI.c b/lib/asn1c/ngap/NGAP_AllowedNSSAI.c index d2b9a5a57..ede45ff11 100644 --- a/lib/asn1c/ngap/NGAP_AllowedNSSAI.c +++ b/lib/asn1c/ngap/NGAP_AllowedNSSAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AllowedNSSAI.h b/lib/asn1c/ngap/NGAP_AllowedNSSAI.h index 8b9bca765..72dbd5333 100644 --- a/lib/asn1c/ngap/NGAP_AllowedNSSAI.h +++ b/lib/asn1c/ngap/NGAP_AllowedNSSAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AllowedTACs.c b/lib/asn1c/ngap/NGAP_AllowedTACs.c index 6611f62a7..b5b4730d9 100644 --- a/lib/asn1c/ngap/NGAP_AllowedTACs.c +++ b/lib/asn1c/ngap/NGAP_AllowedTACs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AllowedTACs.h b/lib/asn1c/ngap/NGAP_AllowedTACs.h index 770f1d316..9989a1b5c 100644 --- a/lib/asn1c/ngap/NGAP_AllowedTACs.h +++ b/lib/asn1c/ngap/NGAP_AllowedTACs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetIndex.c b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetIndex.c index 22164f17d..d8cb97b63 100644 --- a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetIndex.c +++ b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetIndex.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetIndex.h b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetIndex.h index 233e481a0..91a3dbff5 100644 --- a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetIndex.h +++ b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetIndex.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetItem.c b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetItem.c index 18569f8d0..07aeafb22 100644 --- a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetItem.c +++ b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -98,7 +98,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AlternativeQoSParaSetItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AlternativeQoSParaSetItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P4, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P4, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetItem.h b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetItem.h index 46a653c25..3cd92bfa4 100644 --- a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetItem.h +++ b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetList.c b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetList.c index bdb47b260..c7336c3c8 100644 --- a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetList.c +++ b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetList.h b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetList.h index 39b3ce151..baa6af622 100644 --- a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetList.h +++ b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetNotifyIndex.c b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetNotifyIndex.c index 52c6b3d1d..94aaf024e 100644 --- a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetNotifyIndex.c +++ b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetNotifyIndex.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetNotifyIndex.h b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetNotifyIndex.h index f6769a8fc..4a1a4127b 100644 --- a/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetNotifyIndex.h +++ b/lib/asn1c/ngap/NGAP_AlternativeQoSParaSetNotifyIndex.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterest.c b/lib/asn1c/ngap/NGAP_AreaOfInterest.c index 861fcad9e..186f95489 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterest.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,7 +66,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AreaOfInterest_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AreaOfInterest, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P9, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P9, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterest.h b/lib/asn1c/ngap/NGAP_AreaOfInterest.h index 06a14bbc3..a869a4d1e 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterest.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestCellItem.c b/lib/asn1c/ngap/NGAP_AreaOfInterestCellItem.c index c1703eb71..0d8dbbb25 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestCellItem.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestCellItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AreaOfInterestCellItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AreaOfInterestCellItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P10, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P10, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestCellItem.h b/lib/asn1c/ngap/NGAP_AreaOfInterestCellItem.h index ce86ff9a9..4161390d2 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestCellItem.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestCellItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestCellList.c b/lib/asn1c/ngap/NGAP_AreaOfInterestCellList.c index c6eacbd8c..127276ea4 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestCellList.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestCellList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestCellList.h b/lib/asn1c/ngap/NGAP_AreaOfInterestCellList.h index a58bd2757..781bb6419 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestCellList.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestCellList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestItem.c b/lib/asn1c/ngap/NGAP_AreaOfInterestItem.c index a7795575e..a1e9aa850 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestItem.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AreaOfInterestItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AreaOfInterestItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P11, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P11, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestItem.h b/lib/asn1c/ngap/NGAP_AreaOfInterestItem.h index 874206052..3f0eec087 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestItem.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestList.c b/lib/asn1c/ngap/NGAP_AreaOfInterestList.c index 7ca72c356..9b3e8951e 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestList.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestList.h b/lib/asn1c/ngap/NGAP_AreaOfInterestList.h index 506dbbe7e..2778383d5 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestList.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeItem.c b/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeItem.c index dc63ef0bb..3f49133e3 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeItem.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AreaOfInterestRANNodeItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AreaOfInterestRANNodeItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P12, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P12, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeItem.h b/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeItem.h index aa69d4ba3..9237c6e1a 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeItem.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeList.c b/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeList.c index a62784bc9..9d13eb530 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeList.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeList.h b/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeList.h index 0e9771660..6d86290fe 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeList.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestRANNodeList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestTAIItem.c b/lib/asn1c/ngap/NGAP_AreaOfInterestTAIItem.c index fffe6afe5..6617ad96a 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestTAIItem.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestTAIItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AreaOfInterestTAIItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AreaOfInterestTAIItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P13, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P13, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestTAIItem.h b/lib/asn1c/ngap/NGAP_AreaOfInterestTAIItem.h index df0fade28..1f3dfe5d0 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestTAIItem.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestTAIItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestTAIList.c b/lib/asn1c/ngap/NGAP_AreaOfInterestTAIList.c index 22987a1a1..045db3870 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestTAIList.c +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestTAIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaOfInterestTAIList.h b/lib/asn1c/ngap/NGAP_AreaOfInterestTAIList.h index 583877ca7..7603431f9 100644 --- a/lib/asn1c/ngap/NGAP_AreaOfInterestTAIList.h +++ b/lib/asn1c/ngap/NGAP_AreaOfInterestTAIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-EUTRA.c b/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-EUTRA.c index 96cd887c5..257f27de1 100644 --- a/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-EUTRA.c +++ b/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-EUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -90,7 +90,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AreaScopeOfMDT_EUTRA_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_AreaScopeOfMDT_EUTRA, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-EUTRA.h b/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-EUTRA.h index aed0a0121..cc44ff72b 100644 --- a/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-EUTRA.h +++ b/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-EUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-NR.c b/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-NR.c index 498978211..1be8db580 100644 --- a/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-NR.c +++ b/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-NR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -90,7 +90,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AreaScopeOfMDT_NR_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_AreaScopeOfMDT_NR, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-NR.h b/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-NR.h index 85a95f226..bc5813b9c 100644 --- a/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-NR.h +++ b/lib/asn1c/ngap/NGAP_AreaScopeOfMDT-NR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsItem.c b/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsItem.c index 0255c1889..145e69d1c 100644 --- a/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsItem.c +++ b/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AreaScopeOfNeighCellsItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AreaScopeOfNeighCellsItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P17, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P17, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsItem.h b/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsItem.h index 0abcf9184..ce3b0a6e9 100644 --- a/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsItem.h +++ b/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsList.c b/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsList.c index 5660c5870..368c7ee0a 100644 --- a/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsList.c +++ b/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsList.h b/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsList.h index 7deb7b09a..c1c531d42 100644 --- a/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsList.h +++ b/lib/asn1c/ngap/NGAP_AreaScopeOfNeighCellsList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AssistanceDataForPaging.c b/lib/asn1c/ngap/NGAP_AssistanceDataForPaging.c index f0240afcb..c335c961a 100644 --- a/lib/asn1c/ngap/NGAP_AssistanceDataForPaging.c +++ b/lib/asn1c/ngap/NGAP_AssistanceDataForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -48,7 +48,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_AssistanceDataForPaging_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AssistanceDataForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P14, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P14, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AssistanceDataForPaging.h b/lib/asn1c/ngap/NGAP_AssistanceDataForPaging.h index abb9a5507..38f366f43 100644 --- a/lib/asn1c/ngap/NGAP_AssistanceDataForPaging.h +++ b/lib/asn1c/ngap/NGAP_AssistanceDataForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AssistanceDataForRecommendedCells.c b/lib/asn1c/ngap/NGAP_AssistanceDataForRecommendedCells.c index 3675ef445..6be607261 100644 --- a/lib/asn1c/ngap/NGAP_AssistanceDataForRecommendedCells.c +++ b/lib/asn1c/ngap/NGAP_AssistanceDataForRecommendedCells.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AssistanceDataForRecommendedCells_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AssistanceDataForRecommendedCells, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P15, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P15, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AssistanceDataForRecommendedCells.h b/lib/asn1c/ngap/NGAP_AssistanceDataForRecommendedCells.h index 82ddd4809..61dd9f6bf 100644 --- a/lib/asn1c/ngap/NGAP_AssistanceDataForRecommendedCells.h +++ b/lib/asn1c/ngap/NGAP_AssistanceDataForRecommendedCells.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AssociatedQosFlowItem.c b/lib/asn1c/ngap/NGAP_AssociatedQosFlowItem.c index f3862d3b5..c79cd8762 100644 --- a/lib/asn1c/ngap/NGAP_AssociatedQosFlowItem.c +++ b/lib/asn1c/ngap/NGAP_AssociatedQosFlowItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -104,7 +104,7 @@ asn_TYPE_member_t asn_MBR_NGAP_AssociatedQosFlowItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_AssociatedQosFlowItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P16, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P16, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_AssociatedQosFlowItem.h b/lib/asn1c/ngap/NGAP_AssociatedQosFlowItem.h index df3b27c1e..aaca44725 100644 --- a/lib/asn1c/ngap/NGAP_AssociatedQosFlowItem.h +++ b/lib/asn1c/ngap/NGAP_AssociatedQosFlowItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AssociatedQosFlowList.c b/lib/asn1c/ngap/NGAP_AssociatedQosFlowList.c index 0d411d5b3..4fb1c087e 100644 --- a/lib/asn1c/ngap/NGAP_AssociatedQosFlowList.c +++ b/lib/asn1c/ngap/NGAP_AssociatedQosFlowList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AssociatedQosFlowList.h b/lib/asn1c/ngap/NGAP_AssociatedQosFlowList.h index ae27cd25a..7afae9dc4 100644 --- a/lib/asn1c/ngap/NGAP_AssociatedQosFlowList.h +++ b/lib/asn1c/ngap/NGAP_AssociatedQosFlowList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AuthenticatedIndication.c b/lib/asn1c/ngap/NGAP_AuthenticatedIndication.c index 035bdb1f2..9cbb8f064 100644 --- a/lib/asn1c/ngap/NGAP_AuthenticatedIndication.c +++ b/lib/asn1c/ngap/NGAP_AuthenticatedIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AuthenticatedIndication.h b/lib/asn1c/ngap/NGAP_AuthenticatedIndication.h index e7c2b50ae..3e7530636 100644 --- a/lib/asn1c/ngap/NGAP_AuthenticatedIndication.h +++ b/lib/asn1c/ngap/NGAP_AuthenticatedIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AveragingWindow.c b/lib/asn1c/ngap/NGAP_AveragingWindow.c index 176a6114f..d630bb372 100644 --- a/lib/asn1c/ngap/NGAP_AveragingWindow.c +++ b/lib/asn1c/ngap/NGAP_AveragingWindow.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_AveragingWindow.h b/lib/asn1c/ngap/NGAP_AveragingWindow.h index 04e3ba9f7..2157a492d 100644 --- a/lib/asn1c/ngap/NGAP_AveragingWindow.h +++ b/lib/asn1c/ngap/NGAP_AveragingWindow.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BitRate.c b/lib/asn1c/ngap/NGAP_BitRate.c index 82dae6a27..76dcbc050 100644 --- a/lib/asn1c/ngap/NGAP_BitRate.c +++ b/lib/asn1c/ngap/NGAP_BitRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BitRate.h b/lib/asn1c/ngap/NGAP_BitRate.h index e41ab39d7..e42090a65 100644 --- a/lib/asn1c/ngap/NGAP_BitRate.h +++ b/lib/asn1c/ngap/NGAP_BitRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BluetoothMeasConfig.c b/lib/asn1c/ngap/NGAP_BluetoothMeasConfig.c index 56bf75015..a21a160fa 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothMeasConfig.c +++ b/lib/asn1c/ngap/NGAP_BluetoothMeasConfig.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BluetoothMeasConfig.h b/lib/asn1c/ngap/NGAP_BluetoothMeasConfig.h index 257788c02..dd7e2c327 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothMeasConfig.h +++ b/lib/asn1c/ngap/NGAP_BluetoothMeasConfig.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameItem.c b/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameItem.c index af7cb1ee0..694376501 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameItem.c +++ b/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_BluetoothMeasConfigNameItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_BluetoothMeasConfigNameItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P20, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P20, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameItem.h b/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameItem.h index 94f703f77..af4bdc3e7 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameItem.h +++ b/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameList.c b/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameList.c index e5049d1cc..9061545af 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameList.c +++ b/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameList.h b/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameList.h index d8620608b..40b30e200 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameList.h +++ b/lib/asn1c/ngap/NGAP_BluetoothMeasConfigNameList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BluetoothMeasurementConfiguration.c b/lib/asn1c/ngap/NGAP_BluetoothMeasurementConfiguration.c index 0f2dc2983..d95dcd8e7 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothMeasurementConfiguration.c +++ b/lib/asn1c/ngap/NGAP_BluetoothMeasurementConfiguration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -120,7 +120,7 @@ asn_TYPE_member_t asn_MBR_NGAP_BluetoothMeasurementConfiguration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_BluetoothMeasurementConfiguration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P19, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P19, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_BluetoothMeasurementConfiguration.h b/lib/asn1c/ngap/NGAP_BluetoothMeasurementConfiguration.h index 9febb8ecb..e88f31254 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothMeasurementConfiguration.h +++ b/lib/asn1c/ngap/NGAP_BluetoothMeasurementConfiguration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BluetoothName.c b/lib/asn1c/ngap/NGAP_BluetoothName.c index 766ece4d5..ec52aca9f 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothName.c +++ b/lib/asn1c/ngap/NGAP_BluetoothName.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BluetoothName.h b/lib/asn1c/ngap/NGAP_BluetoothName.h index 96581ade8..1857e6235 100644 --- a/lib/asn1c/ngap/NGAP_BluetoothName.h +++ b/lib/asn1c/ngap/NGAP_BluetoothName.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BroadcastCancelledAreaList.c b/lib/asn1c/ngap/NGAP_BroadcastCancelledAreaList.c index f829b116b..252437f43 100644 --- a/lib/asn1c/ngap/NGAP_BroadcastCancelledAreaList.c +++ b/lib/asn1c/ngap/NGAP_BroadcastCancelledAreaList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -127,7 +127,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_BroadcastCancelledAreaList_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_BroadcastCancelledAreaList, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (6 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_BroadcastCancelledAreaList.h b/lib/asn1c/ngap/NGAP_BroadcastCancelledAreaList.h index e5d4d42d5..308d8efe1 100644 --- a/lib/asn1c/ngap/NGAP_BroadcastCancelledAreaList.h +++ b/lib/asn1c/ngap/NGAP_BroadcastCancelledAreaList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BroadcastCompletedAreaList.c b/lib/asn1c/ngap/NGAP_BroadcastCompletedAreaList.c index 415295535..49c1961e1 100644 --- a/lib/asn1c/ngap/NGAP_BroadcastCompletedAreaList.c +++ b/lib/asn1c/ngap/NGAP_BroadcastCompletedAreaList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -127,7 +127,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_BroadcastCompletedAreaList_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_BroadcastCompletedAreaList, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (6 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_BroadcastCompletedAreaList.h b/lib/asn1c/ngap/NGAP_BroadcastCompletedAreaList.h index e77906465..b86204593 100644 --- a/lib/asn1c/ngap/NGAP_BroadcastCompletedAreaList.h +++ b/lib/asn1c/ngap/NGAP_BroadcastCompletedAreaList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BroadcastPLMNItem.c b/lib/asn1c/ngap/NGAP_BroadcastPLMNItem.c index 1daa440d9..b7f837f18 100644 --- a/lib/asn1c/ngap/NGAP_BroadcastPLMNItem.c +++ b/lib/asn1c/ngap/NGAP_BroadcastPLMNItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_BroadcastPLMNItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_BroadcastPLMNItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P18, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P18, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_BroadcastPLMNItem.h b/lib/asn1c/ngap/NGAP_BroadcastPLMNItem.h index 851109c58..cffc4cf49 100644 --- a/lib/asn1c/ngap/NGAP_BroadcastPLMNItem.h +++ b/lib/asn1c/ngap/NGAP_BroadcastPLMNItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BroadcastPLMNList.c b/lib/asn1c/ngap/NGAP_BroadcastPLMNList.c index 18b71b651..11e83f366 100644 --- a/lib/asn1c/ngap/NGAP_BroadcastPLMNList.c +++ b/lib/asn1c/ngap/NGAP_BroadcastPLMNList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BroadcastPLMNList.h b/lib/asn1c/ngap/NGAP_BroadcastPLMNList.h index e51f148a5..7e5e6b253 100644 --- a/lib/asn1c/ngap/NGAP_BroadcastPLMNList.h +++ b/lib/asn1c/ngap/NGAP_BroadcastPLMNList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BurstArrivalTime.c b/lib/asn1c/ngap/NGAP_BurstArrivalTime.c index a6a2d6ff7..5ce39cd7d 100644 --- a/lib/asn1c/ngap/NGAP_BurstArrivalTime.c +++ b/lib/asn1c/ngap/NGAP_BurstArrivalTime.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_BurstArrivalTime.h b/lib/asn1c/ngap/NGAP_BurstArrivalTime.h index 4cdf44031..98e043932 100644 --- a/lib/asn1c/ngap/NGAP_BurstArrivalTime.h +++ b/lib/asn1c/ngap/NGAP_BurstArrivalTime.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CAG-ID.c b/lib/asn1c/ngap/NGAP_CAG-ID.c index f3364a636..c3f5daed7 100644 --- a/lib/asn1c/ngap/NGAP_CAG-ID.c +++ b/lib/asn1c/ngap/NGAP_CAG-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CAG-ID.h b/lib/asn1c/ngap/NGAP_CAG-ID.h index 0c4f81be2..45fbc44b0 100644 --- a/lib/asn1c/ngap/NGAP_CAG-ID.h +++ b/lib/asn1c/ngap/NGAP_CAG-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CEmodeBSupport-Indicator.c b/lib/asn1c/ngap/NGAP_CEmodeBSupport-Indicator.c index d69d5a3a4..4719b3b6c 100644 --- a/lib/asn1c/ngap/NGAP_CEmodeBSupport-Indicator.c +++ b/lib/asn1c/ngap/NGAP_CEmodeBSupport-Indicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CEmodeBSupport-Indicator.h b/lib/asn1c/ngap/NGAP_CEmodeBSupport-Indicator.h index 5d96becc6..9cb81c198 100644 --- a/lib/asn1c/ngap/NGAP_CEmodeBSupport-Indicator.h +++ b/lib/asn1c/ngap/NGAP_CEmodeBSupport-Indicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CEmodeBrestricted.c b/lib/asn1c/ngap/NGAP_CEmodeBrestricted.c index f27972703..08f91109c 100644 --- a/lib/asn1c/ngap/NGAP_CEmodeBrestricted.c +++ b/lib/asn1c/ngap/NGAP_CEmodeBrestricted.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CEmodeBrestricted.h b/lib/asn1c/ngap/NGAP_CEmodeBrestricted.h index 13a1c8bc4..fff40d904 100644 --- a/lib/asn1c/ngap/NGAP_CEmodeBrestricted.h +++ b/lib/asn1c/ngap/NGAP_CEmodeBrestricted.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CNAssistedRANTuning.c b/lib/asn1c/ngap/NGAP_CNAssistedRANTuning.c index 7b1f52fbd..f63ccf676 100644 --- a/lib/asn1c/ngap/NGAP_CNAssistedRANTuning.c +++ b/lib/asn1c/ngap/NGAP_CNAssistedRANTuning.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -30,7 +30,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_CNAssistedRANTuning_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CNAssistedRANTuning, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P34, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P34, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CNAssistedRANTuning.h b/lib/asn1c/ngap/NGAP_CNAssistedRANTuning.h index c1c9934d9..168e4894c 100644 --- a/lib/asn1c/ngap/NGAP_CNAssistedRANTuning.h +++ b/lib/asn1c/ngap/NGAP_CNAssistedRANTuning.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalent.c b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalent.c index 49d86e310..c2cf8f6da 100644 --- a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalent.c +++ b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalent.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalent.h b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalent.h index 81e1d3e8f..967e21c15 100644 --- a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalent.h +++ b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalent.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalentItem.c b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalentItem.c index b22c3185d..6eeebda41 100644 --- a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalentItem.c +++ b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalentItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -104,7 +104,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CNTypeRestrictionsForEquivalentItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CNTypeRestrictionsForEquivalentItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P35, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P35, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalentItem.h b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalentItem.h index 38a101a29..c58f2e714 100644 --- a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalentItem.h +++ b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForEquivalentItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForServing.c b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForServing.c index cf9876d5f..4cf1df308 100644 --- a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForServing.c +++ b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForServing.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForServing.h b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForServing.h index fe60ff285..3fccd6a32 100644 --- a/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForServing.h +++ b/lib/asn1c/ngap/NGAP_CNTypeRestrictionsForServing.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN12.c b/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN12.c index 108b8de5f..a6a6d93fe 100644 --- a/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN12.c +++ b/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN12.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -110,7 +110,7 @@ asn_TYPE_member_t asn_MBR_NGAP_COUNTValueForPDCP_SN12_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_COUNTValueForPDCP_SN12, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P41, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P41, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN12.h b/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN12.h index e8cc1e510..a47156f9e 100644 --- a/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN12.h +++ b/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN12.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN18.c b/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN18.c index a51c2f40f..e1d2f8519 100644 --- a/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN18.c +++ b/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN18.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -110,7 +110,7 @@ asn_TYPE_member_t asn_MBR_NGAP_COUNTValueForPDCP_SN18_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_COUNTValueForPDCP_SN18, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P42, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P42, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN18.h b/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN18.h index 132cd33f2..1baaca48d 100644 --- a/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN18.h +++ b/lib/asn1c/ngap/NGAP_COUNTValueForPDCP-SN18.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CPTransportLayerInformation.c b/lib/asn1c/ngap/NGAP_CPTransportLayerInformation.c index 2d90300c4..ff6f0b6a2 100644 --- a/lib/asn1c/ngap/NGAP_CPTransportLayerInformation.c +++ b/lib/asn1c/ngap/NGAP_CPTransportLayerInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -36,7 +36,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CPTransportLayerInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_CPTransportLayerInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CPTransportLayerInformation.h b/lib/asn1c/ngap/NGAP_CPTransportLayerInformation.h index d8587e53e..ed177015b 100644 --- a/lib/asn1c/ngap/NGAP_CPTransportLayerInformation.h +++ b/lib/asn1c/ngap/NGAP_CPTransportLayerInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelAllWarningMessages.c b/lib/asn1c/ngap/NGAP_CancelAllWarningMessages.c index 5320be5f2..ec3ccbc8f 100644 --- a/lib/asn1c/ngap/NGAP_CancelAllWarningMessages.c +++ b/lib/asn1c/ngap/NGAP_CancelAllWarningMessages.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelAllWarningMessages.h b/lib/asn1c/ngap/NGAP_CancelAllWarningMessages.h index 89875365b..f28de2281 100644 --- a/lib/asn1c/ngap/NGAP_CancelAllWarningMessages.h +++ b/lib/asn1c/ngap/NGAP_CancelAllWarningMessages.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA-Item.c b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA-Item.c index 0e9ebc6db..a3da31ad0 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CancelledCellsInEAI_EUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CancelledCellsInEAI_EUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P21, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P21, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA-Item.h b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA-Item.h index 6e07cd1f3..41c09242f 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA.c b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA.c index 9775c0bfe..49ce43528 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA.c +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA.h b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA.h index 2045ddecc..da00d46b0 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA.h +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-EUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR-Item.c b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR-Item.c index 076eff9fb..60a062e9f 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR-Item.c +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CancelledCellsInEAI_NR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CancelledCellsInEAI_NR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P22, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P22, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR-Item.h b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR-Item.h index 4614468dd..ce187aa30 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR-Item.h +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR.c b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR.c index 375edd85c..84aaf5402 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR.c +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR.h b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR.h index 922ce59ad..4d055d848 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR.h +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInEAI-NR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA-Item.c b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA-Item.c index 3b1ebd894..f6c77b7aa 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CancelledCellsInTAI_EUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CancelledCellsInTAI_EUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P23, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P23, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA-Item.h b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA-Item.h index e95af54d9..dbc243b14 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA.c b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA.c index a43eef70d..fba171615 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA.c +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA.h b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA.h index cda85e341..e3ec022df 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA.h +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-EUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR-Item.c b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR-Item.c index 2dce9d4d7..9ebd497b9 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR-Item.c +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CancelledCellsInTAI_NR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CancelledCellsInTAI_NR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P24, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P24, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR-Item.h b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR-Item.h index 49741a54f..c2a6aa68c 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR-Item.h +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR.c b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR.c index 08f15f3bb..bea576876 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR.c +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR.h b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR.h index d64fbdc46..bedfafe08 100644 --- a/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR.h +++ b/lib/asn1c/ngap/NGAP_CancelledCellsInTAI-NR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CandidateCell.c b/lib/asn1c/ngap/NGAP_CandidateCell.c index 03ad58f03..19eeff1c1 100644 --- a/lib/asn1c/ngap/NGAP_CandidateCell.c +++ b/lib/asn1c/ngap/NGAP_CandidateCell.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CandidateCell_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_CandidateCell, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CandidateCell.h b/lib/asn1c/ngap/NGAP_CandidateCell.h index dd5f241a3..b6f67bee9 100644 --- a/lib/asn1c/ngap/NGAP_CandidateCell.h +++ b/lib/asn1c/ngap/NGAP_CandidateCell.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CandidateCellID.c b/lib/asn1c/ngap/NGAP_CandidateCellID.c index 362e149fa..ba70a296b 100644 --- a/lib/asn1c/ngap/NGAP_CandidateCellID.c +++ b/lib/asn1c/ngap/NGAP_CandidateCellID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CandidateCellID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CandidateCellID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P26, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P26, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CandidateCellID.h b/lib/asn1c/ngap/NGAP_CandidateCellID.h index 85ebf3097..7503793d5 100644 --- a/lib/asn1c/ngap/NGAP_CandidateCellID.h +++ b/lib/asn1c/ngap/NGAP_CandidateCellID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CandidateCellItem.c b/lib/asn1c/ngap/NGAP_CandidateCellItem.c index a72f6a0ac..5dc6f9ee6 100644 --- a/lib/asn1c/ngap/NGAP_CandidateCellItem.c +++ b/lib/asn1c/ngap/NGAP_CandidateCellItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CandidateCellItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CandidateCellItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P25, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P25, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CandidateCellItem.h b/lib/asn1c/ngap/NGAP_CandidateCellItem.h index 3f167d039..d1e37fc03 100644 --- a/lib/asn1c/ngap/NGAP_CandidateCellItem.h +++ b/lib/asn1c/ngap/NGAP_CandidateCellItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CandidateCellList.c b/lib/asn1c/ngap/NGAP_CandidateCellList.c index e98fda7bc..41754bad7 100644 --- a/lib/asn1c/ngap/NGAP_CandidateCellList.c +++ b/lib/asn1c/ngap/NGAP_CandidateCellList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CandidateCellList.h b/lib/asn1c/ngap/NGAP_CandidateCellList.h index fa89e3c28..f7ee18538 100644 --- a/lib/asn1c/ngap/NGAP_CandidateCellList.h +++ b/lib/asn1c/ngap/NGAP_CandidateCellList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CandidatePCI.c b/lib/asn1c/ngap/NGAP_CandidatePCI.c index c55c7b6db..05c4dccf7 100644 --- a/lib/asn1c/ngap/NGAP_CandidatePCI.c +++ b/lib/asn1c/ngap/NGAP_CandidatePCI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -110,7 +110,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CandidatePCI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CandidatePCI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P27, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P27, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CandidatePCI.h b/lib/asn1c/ngap/NGAP_CandidatePCI.h index 7ef1415d0..f4e9ee0c1 100644 --- a/lib/asn1c/ngap/NGAP_CandidatePCI.h +++ b/lib/asn1c/ngap/NGAP_CandidatePCI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Cause.c b/lib/asn1c/ngap/NGAP_Cause.c index 5a3241120..14fe16afb 100644 --- a/lib/asn1c/ngap/NGAP_Cause.c +++ b/lib/asn1c/ngap/NGAP_Cause.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -104,7 +104,7 @@ asn_TYPE_member_t asn_MBR_NGAP_Cause_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_Cause, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_Cause.h b/lib/asn1c/ngap/NGAP_Cause.h index 0cdb88910..f904c811a 100644 --- a/lib/asn1c/ngap/NGAP_Cause.h +++ b/lib/asn1c/ngap/NGAP_Cause.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CauseMisc.c b/lib/asn1c/ngap/NGAP_CauseMisc.c index 42fc56e6d..f40ab08ec 100644 --- a/lib/asn1c/ngap/NGAP_CauseMisc.c +++ b/lib/asn1c/ngap/NGAP_CauseMisc.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -23,7 +23,7 @@ static const asn_INTEGER_enum_map_t asn_MAP_NGAP_CauseMisc_value2enum_1[] = { { 1, 42, "not-enough-user-plane-processing-resources" }, { 2, 16, "hardware-failure" }, { 3, 15, "om-intervention" }, - { 4, 12, "unknown-PLMN" }, + { 4, 20, "unknown-PLMN-or-SNPN" }, { 5, 11, "unspecified" } /* This list is extensible */ }; @@ -32,7 +32,7 @@ static const unsigned int asn_MAP_NGAP_CauseMisc_enum2value_1[] = { 2, /* hardware-failure(2) */ 1, /* not-enough-user-plane-processing-resources(1) */ 3, /* om-intervention(3) */ - 4, /* unknown-PLMN(4) */ + 4, /* unknown-PLMN-or-SNPN(4) */ 5 /* unspecified(5) */ /* This list is extensible */ }; diff --git a/lib/asn1c/ngap/NGAP_CauseMisc.h b/lib/asn1c/ngap/NGAP_CauseMisc.h index 8cb57ff6d..d8ab6e660 100644 --- a/lib/asn1c/ngap/NGAP_CauseMisc.h +++ b/lib/asn1c/ngap/NGAP_CauseMisc.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -24,7 +24,7 @@ typedef enum NGAP_CauseMisc { NGAP_CauseMisc_not_enough_user_plane_processing_resources = 1, NGAP_CauseMisc_hardware_failure = 2, NGAP_CauseMisc_om_intervention = 3, - NGAP_CauseMisc_unknown_PLMN = 4, + NGAP_CauseMisc_unknown_PLMN_or_SNPN = 4, NGAP_CauseMisc_unspecified = 5 /* * Enumeration is extensible diff --git a/lib/asn1c/ngap/NGAP_CauseNas.c b/lib/asn1c/ngap/NGAP_CauseNas.c index ba73af829..ef6f47fe8 100644 --- a/lib/asn1c/ngap/NGAP_CauseNas.c +++ b/lib/asn1c/ngap/NGAP_CauseNas.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CauseNas.h b/lib/asn1c/ngap/NGAP_CauseNas.h index 8b163715e..c9c66709a 100644 --- a/lib/asn1c/ngap/NGAP_CauseNas.h +++ b/lib/asn1c/ngap/NGAP_CauseNas.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CauseProtocol.c b/lib/asn1c/ngap/NGAP_CauseProtocol.c index 2b5cd3200..c8885c641 100644 --- a/lib/asn1c/ngap/NGAP_CauseProtocol.c +++ b/lib/asn1c/ngap/NGAP_CauseProtocol.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CauseProtocol.h b/lib/asn1c/ngap/NGAP_CauseProtocol.h index 6fa59aa95..c7fe85e51 100644 --- a/lib/asn1c/ngap/NGAP_CauseProtocol.h +++ b/lib/asn1c/ngap/NGAP_CauseProtocol.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CauseRadioNetwork.c b/lib/asn1c/ngap/NGAP_CauseRadioNetwork.c index 3dc3f11ce..5d76f367c 100644 --- a/lib/asn1c/ngap/NGAP_CauseRadioNetwork.c +++ b/lib/asn1c/ngap/NGAP_CauseRadioNetwork.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -69,7 +69,8 @@ static const asn_INTEGER_enum_map_t asn_MAP_NGAP_CauseRadioNetwork_value2enum_1[ { 47, 50, "multiple-location-reporting-reference-ID-instances" }, { 48, 28, "rsn-not-available-for-the-up" }, { 49, 17, "npn-access-denied" }, - { 50, 22, "cag-only-access-denied" } + { 50, 22, "cag-only-access-denied" }, + { 51, 28, "insufficient-ue-capabilities" } /* This list is extensible */ }; static const unsigned int asn_MAP_NGAP_CauseRadioNetwork_enum2value_1[] = { @@ -83,6 +84,7 @@ static const unsigned int asn_MAP_NGAP_CauseRadioNetwork_enum2value_1[] = { 8, /* ho-target-not-allowed(8) */ 36, /* ims-voice-eps-fallback-or-rat-fallback-triggered(36) */ 15, /* inconsistent-remote-UE-NGAP-ID(15) */ + 51, /* insufficient-ue-capabilities(51) */ 25, /* interaction-with-other-procedure(25) */ 23, /* invalid-qos-combination(23) */ 28, /* multiple-PDU-session-ID-instances(28) */ @@ -129,7 +131,7 @@ static const unsigned int asn_MAP_NGAP_CauseRadioNetwork_enum2value_1[] = { const asn_INTEGER_specifics_t asn_SPC_NGAP_CauseRadioNetwork_specs_1 = { asn_MAP_NGAP_CauseRadioNetwork_value2enum_1, /* "tag" => N; sorted by tag */ asn_MAP_NGAP_CauseRadioNetwork_enum2value_1, /* N => "tag"; sorted by N */ - 51, /* Number of elements in the maps */ + 52, /* Number of elements in the maps */ 46, /* Extensions before this member */ 1, /* Strict enumeration */ 0, /* Native long size */ diff --git a/lib/asn1c/ngap/NGAP_CauseRadioNetwork.h b/lib/asn1c/ngap/NGAP_CauseRadioNetwork.h index 5af622d7d..e0bd17ef2 100644 --- a/lib/asn1c/ngap/NGAP_CauseRadioNetwork.h +++ b/lib/asn1c/ngap/NGAP_CauseRadioNetwork.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -73,7 +73,8 @@ typedef enum NGAP_CauseRadioNetwork { NGAP_CauseRadioNetwork_multiple_location_reporting_reference_ID_instances = 47, NGAP_CauseRadioNetwork_rsn_not_available_for_the_up = 48, NGAP_CauseRadioNetwork_npn_access_denied = 49, - NGAP_CauseRadioNetwork_cag_only_access_denied = 50 + NGAP_CauseRadioNetwork_cag_only_access_denied = 50, + NGAP_CauseRadioNetwork_insufficient_ue_capabilities = 51 } e_NGAP_CauseRadioNetwork; /* NGAP_CauseRadioNetwork */ diff --git a/lib/asn1c/ngap/NGAP_CauseTransport.c b/lib/asn1c/ngap/NGAP_CauseTransport.c index 9a0ae4a3b..7dc2a6c3b 100644 --- a/lib/asn1c/ngap/NGAP_CauseTransport.c +++ b/lib/asn1c/ngap/NGAP_CauseTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CauseTransport.h b/lib/asn1c/ngap/NGAP_CauseTransport.h index 41eaceffc..74d937470 100644 --- a/lib/asn1c/ngap/NGAP_CauseTransport.h +++ b/lib/asn1c/ngap/NGAP_CauseTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Cell-CAGInformation.c b/lib/asn1c/ngap/NGAP_Cell-CAGInformation.c index 4bea80213..ff328670c 100644 --- a/lib/asn1c/ngap/NGAP_Cell-CAGInformation.c +++ b/lib/asn1c/ngap/NGAP_Cell-CAGInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_Cell_CAGInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_Cell_CAGInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P28, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P28, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_Cell-CAGInformation.h b/lib/asn1c/ngap/NGAP_Cell-CAGInformation.h index ffcf8726d..5d3e40b6f 100644 --- a/lib/asn1c/ngap/NGAP_Cell-CAGInformation.h +++ b/lib/asn1c/ngap/NGAP_Cell-CAGInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellBasedMDT-EUTRA.c b/lib/asn1c/ngap/NGAP_CellBasedMDT-EUTRA.c index e0988d115..c4d9efc9c 100644 --- a/lib/asn1c/ngap/NGAP_CellBasedMDT-EUTRA.c +++ b/lib/asn1c/ngap/NGAP_CellBasedMDT-EUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CellBasedMDT_EUTRA_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CellBasedMDT_EUTRA, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P46, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P46, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellBasedMDT-EUTRA.h b/lib/asn1c/ngap/NGAP_CellBasedMDT-EUTRA.h index e988b6ef7..aee30192c 100644 --- a/lib/asn1c/ngap/NGAP_CellBasedMDT-EUTRA.h +++ b/lib/asn1c/ngap/NGAP_CellBasedMDT-EUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellBasedMDT-NR.c b/lib/asn1c/ngap/NGAP_CellBasedMDT-NR.c index 94e4a1695..68643499a 100644 --- a/lib/asn1c/ngap/NGAP_CellBasedMDT-NR.c +++ b/lib/asn1c/ngap/NGAP_CellBasedMDT-NR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CellBasedMDT_NR_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CellBasedMDT_NR, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P45, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P45, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellBasedMDT-NR.h b/lib/asn1c/ngap/NGAP_CellBasedMDT-NR.h index 4c10ef973..f445fa27c 100644 --- a/lib/asn1c/ngap/NGAP_CellBasedMDT-NR.h +++ b/lib/asn1c/ngap/NGAP_CellBasedMDT-NR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellCAGList.c b/lib/asn1c/ngap/NGAP_CellCAGList.c index de9b85696..a50beb37d 100644 --- a/lib/asn1c/ngap/NGAP_CellCAGList.c +++ b/lib/asn1c/ngap/NGAP_CellCAGList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellCAGList.h b/lib/asn1c/ngap/NGAP_CellCAGList.h index 6ed7ba074..f36fbe1df 100644 --- a/lib/asn1c/ngap/NGAP_CellCAGList.h +++ b/lib/asn1c/ngap/NGAP_CellCAGList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA-Item.c b/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA-Item.c index fcff6c6d4..920c01409 100644 --- a/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CellIDBroadcastEUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CellIDBroadcastEUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P29, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P29, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA-Item.h b/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA-Item.h index 4b684221c..67f0bf004 100644 --- a/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA.c b/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA.c index ba57c8557..a1ed1159b 100644 --- a/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA.c +++ b/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA.h b/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA.h index 9b323f3f1..70b2e4e9b 100644 --- a/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA.h +++ b/lib/asn1c/ngap/NGAP_CellIDBroadcastEUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDBroadcastNR-Item.c b/lib/asn1c/ngap/NGAP_CellIDBroadcastNR-Item.c index e7538d44c..4a7188af1 100644 --- a/lib/asn1c/ngap/NGAP_CellIDBroadcastNR-Item.c +++ b/lib/asn1c/ngap/NGAP_CellIDBroadcastNR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CellIDBroadcastNR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CellIDBroadcastNR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P30, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P30, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellIDBroadcastNR-Item.h b/lib/asn1c/ngap/NGAP_CellIDBroadcastNR-Item.h index 7acc1917e..4f95002aa 100644 --- a/lib/asn1c/ngap/NGAP_CellIDBroadcastNR-Item.h +++ b/lib/asn1c/ngap/NGAP_CellIDBroadcastNR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDBroadcastNR.c b/lib/asn1c/ngap/NGAP_CellIDBroadcastNR.c index c0b6fccc2..84311bf8d 100644 --- a/lib/asn1c/ngap/NGAP_CellIDBroadcastNR.c +++ b/lib/asn1c/ngap/NGAP_CellIDBroadcastNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDBroadcastNR.h b/lib/asn1c/ngap/NGAP_CellIDBroadcastNR.h index e99ad050a..4f9888755 100644 --- a/lib/asn1c/ngap/NGAP_CellIDBroadcastNR.h +++ b/lib/asn1c/ngap/NGAP_CellIDBroadcastNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA-Item.c b/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA-Item.c index 8e4a72ec0..86f9925fe 100644 --- a/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CellIDCancelledEUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CellIDCancelledEUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P31, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P31, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA-Item.h b/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA-Item.h index e3e8b4d31..c7fe62b33 100644 --- a/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA.c b/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA.c index e7bbeac71..ef82d46af 100644 --- a/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA.c +++ b/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA.h b/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA.h index 7372b4b90..30614f65b 100644 --- a/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA.h +++ b/lib/asn1c/ngap/NGAP_CellIDCancelledEUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDCancelledNR-Item.c b/lib/asn1c/ngap/NGAP_CellIDCancelledNR-Item.c index 6cd85bd63..b3aed0e7b 100644 --- a/lib/asn1c/ngap/NGAP_CellIDCancelledNR-Item.c +++ b/lib/asn1c/ngap/NGAP_CellIDCancelledNR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CellIDCancelledNR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CellIDCancelledNR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P32, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P32, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellIDCancelledNR-Item.h b/lib/asn1c/ngap/NGAP_CellIDCancelledNR-Item.h index b9601a966..d7dbe3b52 100644 --- a/lib/asn1c/ngap/NGAP_CellIDCancelledNR-Item.h +++ b/lib/asn1c/ngap/NGAP_CellIDCancelledNR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDCancelledNR.c b/lib/asn1c/ngap/NGAP_CellIDCancelledNR.c index a85ce95cc..f7442ea45 100644 --- a/lib/asn1c/ngap/NGAP_CellIDCancelledNR.c +++ b/lib/asn1c/ngap/NGAP_CellIDCancelledNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDCancelledNR.h b/lib/asn1c/ngap/NGAP_CellIDCancelledNR.h index 7387847ce..92745b2a0 100644 --- a/lib/asn1c/ngap/NGAP_CellIDCancelledNR.h +++ b/lib/asn1c/ngap/NGAP_CellIDCancelledNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIDListForRestart.c b/lib/asn1c/ngap/NGAP_CellIDListForRestart.c index f82e98c72..cc3463b53 100644 --- a/lib/asn1c/ngap/NGAP_CellIDListForRestart.c +++ b/lib/asn1c/ngap/NGAP_CellIDListForRestart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_CellIDListForRestart_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_CellIDListForRestart, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellIDListForRestart.h b/lib/asn1c/ngap/NGAP_CellIDListForRestart.h index ab1128433..4b1a95a71 100644 --- a/lib/asn1c/ngap/NGAP_CellIDListForRestart.h +++ b/lib/asn1c/ngap/NGAP_CellIDListForRestart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIdListforMDT-EUTRA.c b/lib/asn1c/ngap/NGAP_CellIdListforMDT-EUTRA.c index 9401da123..626c2c0b8 100644 --- a/lib/asn1c/ngap/NGAP_CellIdListforMDT-EUTRA.c +++ b/lib/asn1c/ngap/NGAP_CellIdListforMDT-EUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIdListforMDT-EUTRA.h b/lib/asn1c/ngap/NGAP_CellIdListforMDT-EUTRA.h index 5090a2c43..920245925 100644 --- a/lib/asn1c/ngap/NGAP_CellIdListforMDT-EUTRA.h +++ b/lib/asn1c/ngap/NGAP_CellIdListforMDT-EUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIdListforMDT-NR.c b/lib/asn1c/ngap/NGAP_CellIdListforMDT-NR.c index afec8a9f4..e02459e1e 100644 --- a/lib/asn1c/ngap/NGAP_CellIdListforMDT-NR.c +++ b/lib/asn1c/ngap/NGAP_CellIdListforMDT-NR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellIdListforMDT-NR.h b/lib/asn1c/ngap/NGAP_CellIdListforMDT-NR.h index c0f39ccde..ae990296c 100644 --- a/lib/asn1c/ngap/NGAP_CellIdListforMDT-NR.h +++ b/lib/asn1c/ngap/NGAP_CellIdListforMDT-NR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellSize.c b/lib/asn1c/ngap/NGAP_CellSize.c index 42bbcf761..707c8c0a8 100644 --- a/lib/asn1c/ngap/NGAP_CellSize.c +++ b/lib/asn1c/ngap/NGAP_CellSize.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellSize.h b/lib/asn1c/ngap/NGAP_CellSize.h index fe88c7c58..846f74c49 100644 --- a/lib/asn1c/ngap/NGAP_CellSize.h +++ b/lib/asn1c/ngap/NGAP_CellSize.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CellTrafficTrace.c b/lib/asn1c/ngap/NGAP_CellTrafficTrace.c index 4cf6bc9ce..f3eb2d002 100644 --- a/lib/asn1c/ngap/NGAP_CellTrafficTrace.c +++ b/lib/asn1c/ngap/NGAP_CellTrafficTrace.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CellTrafficTrace_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_CellTrafficTrace, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P81, + &asn_DEF_NGAP_ProtocolIE_Container_9574P81, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellTrafficTrace.h b/lib/asn1c/ngap/NGAP_CellTrafficTrace.h index eaed052ec..f678d72a3 100644 --- a/lib/asn1c/ngap/NGAP_CellTrafficTrace.h +++ b/lib/asn1c/ngap/NGAP_CellTrafficTrace.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_CellTrafficTrace */ typedef struct NGAP_CellTrafficTrace { - NGAP_ProtocolIE_Container_9520P81_t protocolIEs; + NGAP_ProtocolIE_Container_9574P81_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_CellType.c b/lib/asn1c/ngap/NGAP_CellType.c index 34b692944..f9771fde4 100644 --- a/lib/asn1c/ngap/NGAP_CellType.c +++ b/lib/asn1c/ngap/NGAP_CellType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CellType_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CellType, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P33, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P33, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CellType.h b/lib/asn1c/ngap/NGAP_CellType.h index 75b630f1a..c8caa3797 100644 --- a/lib/asn1c/ngap/NGAP_CellType.h +++ b/lib/asn1c/ngap/NGAP_CellType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CommonNetworkInstance.c b/lib/asn1c/ngap/NGAP_CommonNetworkInstance.c index 139258a41..481b4f061 100644 --- a/lib/asn1c/ngap/NGAP_CommonNetworkInstance.c +++ b/lib/asn1c/ngap/NGAP_CommonNetworkInstance.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CommonNetworkInstance.h b/lib/asn1c/ngap/NGAP_CommonNetworkInstance.h index ab686f0fc..dbf2345f2 100644 --- a/lib/asn1c/ngap/NGAP_CommonNetworkInstance.h +++ b/lib/asn1c/ngap/NGAP_CommonNetworkInstance.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA-Item.c b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA-Item.c index 6908cd376..2c5bb576a 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CompletedCellsInEAI_EUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CompletedCellsInEAI_EUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P36, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P36, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA-Item.h b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA-Item.h index 043f5ed6a..5e72ac576 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA.c b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA.c index 29a68fdb2..2e21304de 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA.c +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA.h b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA.h index 5d35102e5..7b31810c6 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA.h +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-EUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR-Item.c b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR-Item.c index 2dae4192f..fc3e50a7c 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR-Item.c +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CompletedCellsInEAI_NR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CompletedCellsInEAI_NR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P37, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P37, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR-Item.h b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR-Item.h index 00e3f6409..8d1857ea8 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR-Item.h +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR.c b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR.c index 0ad835d46..d82525608 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR.c +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR.h b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR.h index b6c9c62ca..ee746cfbe 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR.h +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInEAI-NR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA-Item.c b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA-Item.c index c31f34265..5d269adec 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CompletedCellsInTAI_EUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CompletedCellsInTAI_EUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P38, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P38, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA-Item.h b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA-Item.h index 1cc804be4..1d8dcc133 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA.c b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA.c index d5a767351..f25c50ddc 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA.c +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA.h b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA.h index 66e555582..6083b4035 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA.h +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-EUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR-Item.c b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR-Item.c index 1ead926e2..88f26c690 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR-Item.c +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CompletedCellsInTAI_NR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CompletedCellsInTAI_NR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P39, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P39, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR-Item.h b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR-Item.h index 938942865..840dae27a 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR-Item.h +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR.c b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR.c index e4d848f79..fa343685f 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR.c +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR.h b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR.h index 78eaa49f6..2dc1468c3 100644 --- a/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR.h +++ b/lib/asn1c/ngap/NGAP_CompletedCellsInTAI-NR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConcurrentWarningMessageInd.c b/lib/asn1c/ngap/NGAP_ConcurrentWarningMessageInd.c index 16e21c560..c60d4ce15 100644 --- a/lib/asn1c/ngap/NGAP_ConcurrentWarningMessageInd.c +++ b/lib/asn1c/ngap/NGAP_ConcurrentWarningMessageInd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConcurrentWarningMessageInd.h b/lib/asn1c/ngap/NGAP_ConcurrentWarningMessageInd.h index 42998f8f8..9baa09452 100644 --- a/lib/asn1c/ngap/NGAP_ConcurrentWarningMessageInd.h +++ b/lib/asn1c/ngap/NGAP_ConcurrentWarningMessageInd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConfidentialityProtectionIndication.c b/lib/asn1c/ngap/NGAP_ConfidentialityProtectionIndication.c index e5cc51d56..738d6d8cf 100644 --- a/lib/asn1c/ngap/NGAP_ConfidentialityProtectionIndication.c +++ b/lib/asn1c/ngap/NGAP_ConfidentialityProtectionIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConfidentialityProtectionIndication.h b/lib/asn1c/ngap/NGAP_ConfidentialityProtectionIndication.h index 1d260cf13..4c3924f81 100644 --- a/lib/asn1c/ngap/NGAP_ConfidentialityProtectionIndication.h +++ b/lib/asn1c/ngap/NGAP_ConfidentialityProtectionIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConfidentialityProtectionResult.c b/lib/asn1c/ngap/NGAP_ConfidentialityProtectionResult.c index 0b51c41db..f464ce21b 100644 --- a/lib/asn1c/ngap/NGAP_ConfidentialityProtectionResult.c +++ b/lib/asn1c/ngap/NGAP_ConfidentialityProtectionResult.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConfidentialityProtectionResult.h b/lib/asn1c/ngap/NGAP_ConfidentialityProtectionResult.h index e4ae758a3..643f96d0a 100644 --- a/lib/asn1c/ngap/NGAP_ConfidentialityProtectionResult.h +++ b/lib/asn1c/ngap/NGAP_ConfidentialityProtectionResult.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConfiguredNSSAI.c b/lib/asn1c/ngap/NGAP_ConfiguredNSSAI.c index 1f193d767..8a6234c38 100644 --- a/lib/asn1c/ngap/NGAP_ConfiguredNSSAI.c +++ b/lib/asn1c/ngap/NGAP_ConfiguredNSSAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConfiguredNSSAI.h b/lib/asn1c/ngap/NGAP_ConfiguredNSSAI.h index ee0141a31..2494a5819 100644 --- a/lib/asn1c/ngap/NGAP_ConfiguredNSSAI.h +++ b/lib/asn1c/ngap/NGAP_ConfiguredNSSAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConfiguredTACIndication.c b/lib/asn1c/ngap/NGAP_ConfiguredTACIndication.c index 0c61398d3..373a7f68f 100644 --- a/lib/asn1c/ngap/NGAP_ConfiguredTACIndication.c +++ b/lib/asn1c/ngap/NGAP_ConfiguredTACIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConfiguredTACIndication.h b/lib/asn1c/ngap/NGAP_ConfiguredTACIndication.h index ac51d9e06..dddfa14af 100644 --- a/lib/asn1c/ngap/NGAP_ConfiguredTACIndication.h +++ b/lib/asn1c/ngap/NGAP_ConfiguredTACIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ConnectionEstablishmentIndication.c b/lib/asn1c/ngap/NGAP_ConnectionEstablishmentIndication.c index 7d4268488..b0815d50c 100644 --- a/lib/asn1c/ngap/NGAP_ConnectionEstablishmentIndication.c +++ b/lib/asn1c/ngap/NGAP_ConnectionEstablishmentIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ConnectionEstablishmentIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_ConnectionEstablishmentIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P92, + &asn_DEF_NGAP_ProtocolIE_Container_9574P92, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ConnectionEstablishmentIndication.h b/lib/asn1c/ngap/NGAP_ConnectionEstablishmentIndication.h index d98489791..218316661 100644 --- a/lib/asn1c/ngap/NGAP_ConnectionEstablishmentIndication.h +++ b/lib/asn1c/ngap/NGAP_ConnectionEstablishmentIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_ConnectionEstablishmentIndication */ typedef struct NGAP_ConnectionEstablishmentIndication { - NGAP_ProtocolIE_Container_9520P92_t protocolIEs; + NGAP_ProtocolIE_Container_9574P92_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_CoreNetworkAssistanceInformationForInactive.c b/lib/asn1c/ngap/NGAP_CoreNetworkAssistanceInformationForInactive.c index 8f99f1c2e..7f2ab756e 100644 --- a/lib/asn1c/ngap/NGAP_CoreNetworkAssistanceInformationForInactive.c +++ b/lib/asn1c/ngap/NGAP_CoreNetworkAssistanceInformationForInactive.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -115,7 +115,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_CoreNetworkAssistanceInformationForInactiv { ATF_POINTER, 1, offsetof(struct NGAP_CoreNetworkAssistanceInformationForInactive, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (6 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P40, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P40, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CoreNetworkAssistanceInformationForInactive.h b/lib/asn1c/ngap/NGAP_CoreNetworkAssistanceInformationForInactive.h index b0d5552c7..2e0732de3 100644 --- a/lib/asn1c/ngap/NGAP_CoreNetworkAssistanceInformationForInactive.h +++ b/lib/asn1c/ngap/NGAP_CoreNetworkAssistanceInformationForInactive.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CoverageEnhancementLevel.c b/lib/asn1c/ngap/NGAP_CoverageEnhancementLevel.c index 68ef73693..6f45b6069 100644 --- a/lib/asn1c/ngap/NGAP_CoverageEnhancementLevel.c +++ b/lib/asn1c/ngap/NGAP_CoverageEnhancementLevel.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CoverageEnhancementLevel.h b/lib/asn1c/ngap/NGAP_CoverageEnhancementLevel.h index 861ecc4b7..8839dff42 100644 --- a/lib/asn1c/ngap/NGAP_CoverageEnhancementLevel.h +++ b/lib/asn1c/ngap/NGAP_CoverageEnhancementLevel.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Criticality.c b/lib/asn1c/ngap/NGAP_Criticality.c index d2df4dfde..80603a57c 100644 --- a/lib/asn1c/ngap/NGAP_Criticality.c +++ b/lib/asn1c/ngap/NGAP_Criticality.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Criticality.h b/lib/asn1c/ngap/NGAP_Criticality.h index b5abf02ef..6f627f63d 100644 --- a/lib/asn1c/ngap/NGAP_Criticality.h +++ b/lib/asn1c/ngap/NGAP_Criticality.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-Item.c b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-Item.c index b9be376cd..233908878 100644 --- a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-Item.c +++ b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CriticalityDiagnostics_IE_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CriticalityDiagnostics_IE_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P44, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P44, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-Item.h b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-Item.h index 6a4961df5..a8fe50f74 100644 --- a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-Item.h +++ b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-List.c b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-List.c index 9f15528dd..b18494f0c 100644 --- a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-List.c +++ b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-List.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-List.h b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-List.h index 248bb5c8e..144bb67eb 100644 --- a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-List.h +++ b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics-IE-List.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics.c b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics.c index 872f9f384..4cda04e57 100644 --- a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics.c +++ b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -81,7 +81,7 @@ asn_TYPE_member_t asn_MBR_NGAP_CriticalityDiagnostics_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_CriticalityDiagnostics, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P43, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P43, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics.h b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics.h index 1c65ceccd..fafc737d0 100644 --- a/lib/asn1c/ngap/NGAP_CriticalityDiagnostics.h +++ b/lib/asn1c/ngap/NGAP_CriticalityDiagnostics.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DAPSRequestInfo.c b/lib/asn1c/ngap/NGAP_DAPSRequestInfo.c index 217631f52..6703d5ed9 100644 --- a/lib/asn1c/ngap/NGAP_DAPSRequestInfo.c +++ b/lib/asn1c/ngap/NGAP_DAPSRequestInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -85,7 +85,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_DAPSRequestInfo_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DAPSRequestInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P48, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P48, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DAPSRequestInfo.h b/lib/asn1c/ngap/NGAP_DAPSRequestInfo.h index 8dadc8e94..359d4c9dc 100644 --- a/lib/asn1c/ngap/NGAP_DAPSRequestInfo.h +++ b/lib/asn1c/ngap/NGAP_DAPSRequestInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DAPSResponseInfo.c b/lib/asn1c/ngap/NGAP_DAPSResponseInfo.c index cc9a0b0b1..74195f2c0 100644 --- a/lib/asn1c/ngap/NGAP_DAPSResponseInfo.c +++ b/lib/asn1c/ngap/NGAP_DAPSResponseInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -87,7 +87,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DAPSResponseInfo_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DAPSResponseInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P50, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P50, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DAPSResponseInfo.h b/lib/asn1c/ngap/NGAP_DAPSResponseInfo.h index 64082a785..1886ff894 100644 --- a/lib/asn1c/ngap/NGAP_DAPSResponseInfo.h +++ b/lib/asn1c/ngap/NGAP_DAPSResponseInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DAPSResponseInfoItem.c b/lib/asn1c/ngap/NGAP_DAPSResponseInfoItem.c index 4914d59eb..718c9a3c7 100644 --- a/lib/asn1c/ngap/NGAP_DAPSResponseInfoItem.c +++ b/lib/asn1c/ngap/NGAP_DAPSResponseInfoItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DAPSResponseInfoItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DAPSResponseInfoItem, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P49, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P49, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DAPSResponseInfoItem.h b/lib/asn1c/ngap/NGAP_DAPSResponseInfoItem.h index 52282816f..02cddc5c1 100644 --- a/lib/asn1c/ngap/NGAP_DAPSResponseInfoItem.h +++ b/lib/asn1c/ngap/NGAP_DAPSResponseInfoItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DAPSResponseInfoList.c b/lib/asn1c/ngap/NGAP_DAPSResponseInfoList.c index 76fb4489d..7e0caf05a 100644 --- a/lib/asn1c/ngap/NGAP_DAPSResponseInfoList.c +++ b/lib/asn1c/ngap/NGAP_DAPSResponseInfoList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DAPSResponseInfoList.h b/lib/asn1c/ngap/NGAP_DAPSResponseInfoList.h index 4a70b0171..a8ab4cfa4 100644 --- a/lib/asn1c/ngap/NGAP_DAPSResponseInfoList.h +++ b/lib/asn1c/ngap/NGAP_DAPSResponseInfoList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DL-CP-SecurityInformation.c b/lib/asn1c/ngap/NGAP_DL-CP-SecurityInformation.c index 2a367f2c0..87f2c88ac 100644 --- a/lib/asn1c/ngap/NGAP_DL-CP-SecurityInformation.c +++ b/lib/asn1c/ngap/NGAP_DL-CP-SecurityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_DL_CP_SecurityInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DL_CP_SecurityInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P52, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P52, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DL-CP-SecurityInformation.h b/lib/asn1c/ngap/NGAP_DL-CP-SecurityInformation.h index d387ad192..c3b68a00e 100644 --- a/lib/asn1c/ngap/NGAP_DL-CP-SecurityInformation.h +++ b/lib/asn1c/ngap/NGAP_DL-CP-SecurityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DL-NAS-MAC.c b/lib/asn1c/ngap/NGAP_DL-NAS-MAC.c index e90428479..04433bf0e 100644 --- a/lib/asn1c/ngap/NGAP_DL-NAS-MAC.c +++ b/lib/asn1c/ngap/NGAP_DL-NAS-MAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DL-NAS-MAC.h b/lib/asn1c/ngap/NGAP_DL-NAS-MAC.h index 5f525ad22..823d37fe2 100644 --- a/lib/asn1c/ngap/NGAP_DL-NAS-MAC.h +++ b/lib/asn1c/ngap/NGAP_DL-NAS-MAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DL-NGU-TNLInformationReused.c b/lib/asn1c/ngap/NGAP_DL-NGU-TNLInformationReused.c index 73039e7c8..26962b041 100644 --- a/lib/asn1c/ngap/NGAP_DL-NGU-TNLInformationReused.c +++ b/lib/asn1c/ngap/NGAP_DL-NGU-TNLInformationReused.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DL-NGU-TNLInformationReused.h b/lib/asn1c/ngap/NGAP_DL-NGU-TNLInformationReused.h index df5c14fbe..5a2698323 100644 --- a/lib/asn1c/ngap/NGAP_DL-NGU-TNLInformationReused.h +++ b/lib/asn1c/ngap/NGAP_DL-NGU-TNLInformationReused.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DLForwarding.c b/lib/asn1c/ngap/NGAP_DLForwarding.c index 2ef8f2184..ca51dcf5b 100644 --- a/lib/asn1c/ngap/NGAP_DLForwarding.c +++ b/lib/asn1c/ngap/NGAP_DLForwarding.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DLForwarding.h b/lib/asn1c/ngap/NGAP_DLForwarding.h index 5a4b19fd4..09a96fffd 100644 --- a/lib/asn1c/ngap/NGAP_DLForwarding.h +++ b/lib/asn1c/ngap/NGAP_DLForwarding.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRB-ID.c b/lib/asn1c/ngap/NGAP_DRB-ID.c index e00280b18..8e7744570 100644 --- a/lib/asn1c/ngap/NGAP_DRB-ID.c +++ b/lib/asn1c/ngap/NGAP_DRB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRB-ID.h b/lib/asn1c/ngap/NGAP_DRB-ID.h index 2ec6a4188..18de33eca 100644 --- a/lib/asn1c/ngap/NGAP_DRB-ID.h +++ b/lib/asn1c/ngap/NGAP_DRB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBStatusDL.c b/lib/asn1c/ngap/NGAP_DRBStatusDL.c index 0120a1352..a7f11ca80 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusDL.c +++ b/lib/asn1c/ngap/NGAP_DRBStatusDL.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBStatusDL_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_DRBStatusDL, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBStatusDL.h b/lib/asn1c/ngap/NGAP_DRBStatusDL.h index f6804ee83..1507706eb 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusDL.h +++ b/lib/asn1c/ngap/NGAP_DRBStatusDL.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBStatusDL12.c b/lib/asn1c/ngap/NGAP_DRBStatusDL12.c index b2255a5e6..8bba93bb5 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusDL12.c +++ b/lib/asn1c/ngap/NGAP_DRBStatusDL12.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBStatusDL12_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DRBStatusDL12, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P54, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P54, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBStatusDL12.h b/lib/asn1c/ngap/NGAP_DRBStatusDL12.h index baea99f57..c9d3bf980 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusDL12.h +++ b/lib/asn1c/ngap/NGAP_DRBStatusDL12.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBStatusDL18.c b/lib/asn1c/ngap/NGAP_DRBStatusDL18.c index 871f844d2..fc2cce428 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusDL18.c +++ b/lib/asn1c/ngap/NGAP_DRBStatusDL18.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBStatusDL18_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DRBStatusDL18, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P55, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P55, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBStatusDL18.h b/lib/asn1c/ngap/NGAP_DRBStatusDL18.h index 029a31254..3bf044aca 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusDL18.h +++ b/lib/asn1c/ngap/NGAP_DRBStatusDL18.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBStatusUL.c b/lib/asn1c/ngap/NGAP_DRBStatusUL.c index f3c90bee0..908cb4305 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusUL.c +++ b/lib/asn1c/ngap/NGAP_DRBStatusUL.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBStatusUL_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_DRBStatusUL, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBStatusUL.h b/lib/asn1c/ngap/NGAP_DRBStatusUL.h index cd44afa80..56a0fce48 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusUL.h +++ b/lib/asn1c/ngap/NGAP_DRBStatusUL.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBStatusUL12.c b/lib/asn1c/ngap/NGAP_DRBStatusUL12.c index dded20692..8ecb30249 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusUL12.c +++ b/lib/asn1c/ngap/NGAP_DRBStatusUL12.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -84,7 +84,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBStatusUL12_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DRBStatusUL12, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P56, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P56, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBStatusUL12.h b/lib/asn1c/ngap/NGAP_DRBStatusUL12.h index d5e49e4ad..f7634567b 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusUL12.h +++ b/lib/asn1c/ngap/NGAP_DRBStatusUL12.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBStatusUL18.c b/lib/asn1c/ngap/NGAP_DRBStatusUL18.c index 7c64346e4..23be7ee17 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusUL18.c +++ b/lib/asn1c/ngap/NGAP_DRBStatusUL18.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -84,7 +84,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBStatusUL18_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DRBStatusUL18, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P57, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P57, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBStatusUL18.h b/lib/asn1c/ngap/NGAP_DRBStatusUL18.h index b5c2512ce..809ea92ed 100644 --- a/lib/asn1c/ngap/NGAP_DRBStatusUL18.h +++ b/lib/asn1c/ngap/NGAP_DRBStatusUL18.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-Item.c b/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-Item.c index 623e9176b..b995e6fc0 100644 --- a/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-Item.c +++ b/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBsSubjectToEarlyStatusTransfer_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DRBsSubjectToEarlyStatusTransfer_Item, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P62, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P62, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-Item.h b/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-Item.h index dd5c7ce70..00419f6ab 100644 --- a/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-Item.h +++ b/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-List.c b/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-List.c index f01147841..16ef22bdb 100644 --- a/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-List.c +++ b/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-List.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-List.h b/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-List.h index 7d94f6054..d2fcf528c 100644 --- a/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-List.h +++ b/lib/asn1c/ngap/NGAP_DRBsSubjectToEarlyStatusTransfer-List.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferItem.c b/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferItem.c index 0796b849b..b0b27ba5c 100644 --- a/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferItem.c +++ b/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBsSubjectToStatusTransferItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DRBsSubjectToStatusTransferItem, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P53, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P53, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferItem.h b/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferItem.h index 7e1aa7448..9a346e2ad 100644 --- a/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferItem.h +++ b/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferList.c b/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferList.c index 0de0906d7..bb3a2d09f 100644 --- a/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferList.c +++ b/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferList.h b/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferList.h index 884434140..015382e89 100644 --- a/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferList.h +++ b/lib/asn1c/ngap/NGAP_DRBsSubjectToStatusTransferList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingItem.c b/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingItem.c index 242bfcedf..4799025ec 100644 --- a/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingItem.c +++ b/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DRBsToQosFlowsMappingItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DRBsToQosFlowsMappingItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P58, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P58, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingItem.h b/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingItem.h index f3eca6146..ab74ee691 100644 --- a/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingItem.h +++ b/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingList.c b/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingList.c index 89a87b48f..704567bcf 100644 --- a/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingList.c +++ b/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingList.h b/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingList.h index c7381e45d..4f2ef8b80 100644 --- a/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingList.h +++ b/lib/asn1c/ngap/NGAP_DRBsToQosFlowsMappingList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataCodingScheme.c b/lib/asn1c/ngap/NGAP_DataCodingScheme.c index d6b986583..c29f3861c 100644 --- a/lib/asn1c/ngap/NGAP_DataCodingScheme.c +++ b/lib/asn1c/ngap/NGAP_DataCodingScheme.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataCodingScheme.h b/lib/asn1c/ngap/NGAP_DataCodingScheme.h index 616c28c84..1114b4de2 100644 --- a/lib/asn1c/ngap/NGAP_DataCodingScheme.h +++ b/lib/asn1c/ngap/NGAP_DataCodingScheme.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingAccepted.c b/lib/asn1c/ngap/NGAP_DataForwardingAccepted.c index 3ae285b19..446e94af9 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingAccepted.c +++ b/lib/asn1c/ngap/NGAP_DataForwardingAccepted.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingAccepted.h b/lib/asn1c/ngap/NGAP_DataForwardingAccepted.h index 53db6a181..7ba4e0ac0 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingAccepted.h +++ b/lib/asn1c/ngap/NGAP_DataForwardingAccepted.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingNotPossible.c b/lib/asn1c/ngap/NGAP_DataForwardingNotPossible.c index 4c08aefc9..89f3ebb14 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingNotPossible.c +++ b/lib/asn1c/ngap/NGAP_DataForwardingNotPossible.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingNotPossible.h b/lib/asn1c/ngap/NGAP_DataForwardingNotPossible.h index 152c346bc..beeb40caa 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingNotPossible.h +++ b/lib/asn1c/ngap/NGAP_DataForwardingNotPossible.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBItem.c b/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBItem.c index 37f4434d4..d2f78d95b 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBItem.c +++ b/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DataForwardingResponseDRBItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DataForwardingResponseDRBItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P47, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P47, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBItem.h b/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBItem.h index dbdbcafc0..ad8527da0 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBItem.h +++ b/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBList.c b/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBList.c index e3004f071..5a1a7f169 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBList.c +++ b/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBList.h b/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBList.h index 1b701f631..214230f30 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBList.h +++ b/lib/asn1c/ngap/NGAP_DataForwardingResponseDRBList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingResponseERABList.c b/lib/asn1c/ngap/NGAP_DataForwardingResponseERABList.c index 57123769b..256997685 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingResponseERABList.c +++ b/lib/asn1c/ngap/NGAP_DataForwardingResponseERABList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingResponseERABList.h b/lib/asn1c/ngap/NGAP_DataForwardingResponseERABList.h index 9303343e8..cc9037812 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingResponseERABList.h +++ b/lib/asn1c/ngap/NGAP_DataForwardingResponseERABList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DataForwardingResponseERABListItem.c b/lib/asn1c/ngap/NGAP_DataForwardingResponseERABListItem.c index 510f1530f..132fe5357 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingResponseERABListItem.c +++ b/lib/asn1c/ngap/NGAP_DataForwardingResponseERABListItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DataForwardingResponseERABListItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_DataForwardingResponseERABListItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P51, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P51, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DataForwardingResponseERABListItem.h b/lib/asn1c/ngap/NGAP_DataForwardingResponseERABListItem.h index aeeb209b9..fdf33a456 100644 --- a/lib/asn1c/ngap/NGAP_DataForwardingResponseERABListItem.h +++ b/lib/asn1c/ngap/NGAP_DataForwardingResponseERABListItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DeactivateTrace.c b/lib/asn1c/ngap/NGAP_DeactivateTrace.c index 915dbaeed..44b640b9a 100644 --- a/lib/asn1c/ngap/NGAP_DeactivateTrace.c +++ b/lib/asn1c/ngap/NGAP_DeactivateTrace.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DeactivateTrace_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_DeactivateTrace, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P80, + &asn_DEF_NGAP_ProtocolIE_Container_9574P80, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DeactivateTrace.h b/lib/asn1c/ngap/NGAP_DeactivateTrace.h index e478ae543..a5c65a1d3 100644 --- a/lib/asn1c/ngap/NGAP_DeactivateTrace.h +++ b/lib/asn1c/ngap/NGAP_DeactivateTrace.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_DeactivateTrace */ typedef struct NGAP_DeactivateTrace { - NGAP_ProtocolIE_Container_9520P80_t protocolIEs; + NGAP_ProtocolIE_Container_9574P80_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_DelayCritical.c b/lib/asn1c/ngap/NGAP_DelayCritical.c index ad38d4973..dc8031ed0 100644 --- a/lib/asn1c/ngap/NGAP_DelayCritical.c +++ b/lib/asn1c/ngap/NGAP_DelayCritical.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DelayCritical.h b/lib/asn1c/ngap/NGAP_DelayCritical.h index 89e997cb6..d3cfe9031 100644 --- a/lib/asn1c/ngap/NGAP_DelayCritical.h +++ b/lib/asn1c/ngap/NGAP_DelayCritical.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DirectForwardingPathAvailability.c b/lib/asn1c/ngap/NGAP_DirectForwardingPathAvailability.c index 50b41f1e5..ed662d921 100644 --- a/lib/asn1c/ngap/NGAP_DirectForwardingPathAvailability.c +++ b/lib/asn1c/ngap/NGAP_DirectForwardingPathAvailability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DirectForwardingPathAvailability.h b/lib/asn1c/ngap/NGAP_DirectForwardingPathAvailability.h index aa67e1465..e0a0b4910 100644 --- a/lib/asn1c/ngap/NGAP_DirectForwardingPathAvailability.h +++ b/lib/asn1c/ngap/NGAP_DirectForwardingPathAvailability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_DownlinkNASTransport.c b/lib/asn1c/ngap/NGAP_DownlinkNASTransport.c index ab9af339a..1095ecbf1 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkNASTransport.c +++ b/lib/asn1c/ngap/NGAP_DownlinkNASTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DownlinkNASTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_DownlinkNASTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P47, + &asn_DEF_NGAP_ProtocolIE_Container_9574P47, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DownlinkNASTransport.h b/lib/asn1c/ngap/NGAP_DownlinkNASTransport.h index 9aedce600..1725d3a30 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkNASTransport.h +++ b/lib/asn1c/ngap/NGAP_DownlinkNASTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_DownlinkNASTransport */ typedef struct NGAP_DownlinkNASTransport { - NGAP_ProtocolIE_Container_9520P47_t protocolIEs; + NGAP_ProtocolIE_Container_9574P47_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_DownlinkNonUEAssociatedNRPPaTransport.c b/lib/asn1c/ngap/NGAP_DownlinkNonUEAssociatedNRPPaTransport.c index 692360158..aa53abb63 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkNonUEAssociatedNRPPaTransport.c +++ b/lib/asn1c/ngap/NGAP_DownlinkNonUEAssociatedNRPPaTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DownlinkNonUEAssociatedNRPPaTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_DownlinkNonUEAssociatedNRPPaTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P76, + &asn_DEF_NGAP_ProtocolIE_Container_9574P76, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DownlinkNonUEAssociatedNRPPaTransport.h b/lib/asn1c/ngap/NGAP_DownlinkNonUEAssociatedNRPPaTransport.h index 8ae0e66d0..95826f386 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkNonUEAssociatedNRPPaTransport.h +++ b/lib/asn1c/ngap/NGAP_DownlinkNonUEAssociatedNRPPaTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_DownlinkNonUEAssociatedNRPPaTransport */ typedef struct NGAP_DownlinkNonUEAssociatedNRPPaTransport { - NGAP_ProtocolIE_Container_9520P76_t protocolIEs; + NGAP_ProtocolIE_Container_9574P76_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_DownlinkRANConfigurationTransfer.c b/lib/asn1c/ngap/NGAP_DownlinkRANConfigurationTransfer.c index 4da29012c..224151d35 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkRANConfigurationTransfer.c +++ b/lib/asn1c/ngap/NGAP_DownlinkRANConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DownlinkRANConfigurationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_DownlinkRANConfigurationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P67, + &asn_DEF_NGAP_ProtocolIE_Container_9574P67, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DownlinkRANConfigurationTransfer.h b/lib/asn1c/ngap/NGAP_DownlinkRANConfigurationTransfer.h index ff98a503b..5f713904b 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkRANConfigurationTransfer.h +++ b/lib/asn1c/ngap/NGAP_DownlinkRANConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_DownlinkRANConfigurationTransfer */ typedef struct NGAP_DownlinkRANConfigurationTransfer { - NGAP_ProtocolIE_Container_9520P67_t protocolIEs; + NGAP_ProtocolIE_Container_9574P67_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_DownlinkRANEarlyStatusTransfer.c b/lib/asn1c/ngap/NGAP_DownlinkRANEarlyStatusTransfer.c index 7059d3e01..6804499ad 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkRANEarlyStatusTransfer.c +++ b/lib/asn1c/ngap/NGAP_DownlinkRANEarlyStatusTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DownlinkRANEarlyStatusTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_DownlinkRANEarlyStatusTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P42, + &asn_DEF_NGAP_ProtocolIE_Container_9574P42, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DownlinkRANEarlyStatusTransfer.h b/lib/asn1c/ngap/NGAP_DownlinkRANEarlyStatusTransfer.h index 886c3c019..39a9b1a33 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkRANEarlyStatusTransfer.h +++ b/lib/asn1c/ngap/NGAP_DownlinkRANEarlyStatusTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_DownlinkRANEarlyStatusTransfer */ typedef struct NGAP_DownlinkRANEarlyStatusTransfer { - NGAP_ProtocolIE_Container_9520P42_t protocolIEs; + NGAP_ProtocolIE_Container_9574P42_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_DownlinkRANStatusTransfer.c b/lib/asn1c/ngap/NGAP_DownlinkRANStatusTransfer.c index b1a575ee3..5f1ce2f30 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkRANStatusTransfer.c +++ b/lib/asn1c/ngap/NGAP_DownlinkRANStatusTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DownlinkRANStatusTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_DownlinkRANStatusTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P44, + &asn_DEF_NGAP_ProtocolIE_Container_9574P44, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DownlinkRANStatusTransfer.h b/lib/asn1c/ngap/NGAP_DownlinkRANStatusTransfer.h index d570cf51b..c94180c4c 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkRANStatusTransfer.h +++ b/lib/asn1c/ngap/NGAP_DownlinkRANStatusTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_DownlinkRANStatusTransfer */ typedef struct NGAP_DownlinkRANStatusTransfer { - NGAP_ProtocolIE_Container_9520P44_t protocolIEs; + NGAP_ProtocolIE_Container_9574P44_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_DownlinkRIMInformationTransfer.c b/lib/asn1c/ngap/NGAP_DownlinkRIMInformationTransfer.c index c1e0a454c..9bc5ab1de 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkRIMInformationTransfer.c +++ b/lib/asn1c/ngap/NGAP_DownlinkRIMInformationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DownlinkRIMInformationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_DownlinkRIMInformationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P91, + &asn_DEF_NGAP_ProtocolIE_Container_9574P91, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DownlinkRIMInformationTransfer.h b/lib/asn1c/ngap/NGAP_DownlinkRIMInformationTransfer.h index 3f55f440c..99a6b54cd 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkRIMInformationTransfer.h +++ b/lib/asn1c/ngap/NGAP_DownlinkRIMInformationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_DownlinkRIMInformationTransfer */ typedef struct NGAP_DownlinkRIMInformationTransfer { - NGAP_ProtocolIE_Container_9520P91_t protocolIEs; + NGAP_ProtocolIE_Container_9574P91_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_DownlinkUEAssociatedNRPPaTransport.c b/lib/asn1c/ngap/NGAP_DownlinkUEAssociatedNRPPaTransport.c index 14d1d62be..2c6b69064 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkUEAssociatedNRPPaTransport.c +++ b/lib/asn1c/ngap/NGAP_DownlinkUEAssociatedNRPPaTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_DownlinkUEAssociatedNRPPaTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_DownlinkUEAssociatedNRPPaTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P74, + &asn_DEF_NGAP_ProtocolIE_Container_9574P74, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_DownlinkUEAssociatedNRPPaTransport.h b/lib/asn1c/ngap/NGAP_DownlinkUEAssociatedNRPPaTransport.h index aba57f470..de2d3634e 100644 --- a/lib/asn1c/ngap/NGAP_DownlinkUEAssociatedNRPPaTransport.h +++ b/lib/asn1c/ngap/NGAP_DownlinkUEAssociatedNRPPaTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_DownlinkUEAssociatedNRPPaTransport */ typedef struct NGAP_DownlinkUEAssociatedNRPPaTransport { - NGAP_ProtocolIE_Container_9520P74_t protocolIEs; + NGAP_ProtocolIE_Container_9574P74_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_Dynamic5QIDescriptor.c b/lib/asn1c/ngap/NGAP_Dynamic5QIDescriptor.c index 30f3fb714..6f6d50966 100644 --- a/lib/asn1c/ngap/NGAP_Dynamic5QIDescriptor.c +++ b/lib/asn1c/ngap/NGAP_Dynamic5QIDescriptor.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -131,7 +131,7 @@ asn_TYPE_member_t asn_MBR_NGAP_Dynamic5QIDescriptor_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_Dynamic5QIDescriptor, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (7 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P59, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P59, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_Dynamic5QIDescriptor.h b/lib/asn1c/ngap/NGAP_Dynamic5QIDescriptor.h index ce50148cc..1c38981a3 100644 --- a/lib/asn1c/ngap/NGAP_Dynamic5QIDescriptor.h +++ b/lib/asn1c/ngap/NGAP_Dynamic5QIDescriptor.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_E-RAB-ID.c b/lib/asn1c/ngap/NGAP_E-RAB-ID.c index 06e5cef16..9e7692036 100644 --- a/lib/asn1c/ngap/NGAP_E-RAB-ID.c +++ b/lib/asn1c/ngap/NGAP_E-RAB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_E-RAB-ID.h b/lib/asn1c/ngap/NGAP_E-RAB-ID.h index f9e3b6a3e..4f87de27a 100644 --- a/lib/asn1c/ngap/NGAP_E-RAB-ID.h +++ b/lib/asn1c/ngap/NGAP_E-RAB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_E-RABInformationItem.c b/lib/asn1c/ngap/NGAP_E-RABInformationItem.c index 44d57a013..2f6c24f25 100644 --- a/lib/asn1c/ngap/NGAP_E-RABInformationItem.c +++ b/lib/asn1c/ngap/NGAP_E-RABInformationItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_E_RABInformationItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_E_RABInformationItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P70, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P70, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_E-RABInformationItem.h b/lib/asn1c/ngap/NGAP_E-RABInformationItem.h index 9f1525923..905e49b53 100644 --- a/lib/asn1c/ngap/NGAP_E-RABInformationItem.h +++ b/lib/asn1c/ngap/NGAP_E-RABInformationItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_E-RABInformationList.c b/lib/asn1c/ngap/NGAP_E-RABInformationList.c index e6cbd9b37..07bfc14c3 100644 --- a/lib/asn1c/ngap/NGAP_E-RABInformationList.c +++ b/lib/asn1c/ngap/NGAP_E-RABInformationList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_E-RABInformationList.h b/lib/asn1c/ngap/NGAP_E-RABInformationList.h index f0f234afe..3e84fa5a7 100644 --- a/lib/asn1c/ngap/NGAP_E-RABInformationList.h +++ b/lib/asn1c/ngap/NGAP_E-RABInformationList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EDT-Session.c b/lib/asn1c/ngap/NGAP_EDT-Session.c index c8f6f43cc..e343d9025 100644 --- a/lib/asn1c/ngap/NGAP_EDT-Session.c +++ b/lib/asn1c/ngap/NGAP_EDT-Session.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EDT-Session.h b/lib/asn1c/ngap/NGAP_EDT-Session.h index 2c52620df..24643fc81 100644 --- a/lib/asn1c/ngap/NGAP_EDT-Session.h +++ b/lib/asn1c/ngap/NGAP_EDT-Session.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EN-DCSONConfigurationTransfer.c b/lib/asn1c/ngap/NGAP_EN-DCSONConfigurationTransfer.c index 731fc08fa..b5875ba6b 100644 --- a/lib/asn1c/ngap/NGAP_EN-DCSONConfigurationTransfer.c +++ b/lib/asn1c/ngap/NGAP_EN-DCSONConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EN-DCSONConfigurationTransfer.h b/lib/asn1c/ngap/NGAP_EN-DCSONConfigurationTransfer.h index 9f87abf8f..b08472399 100644 --- a/lib/asn1c/ngap/NGAP_EN-DCSONConfigurationTransfer.h +++ b/lib/asn1c/ngap/NGAP_EN-DCSONConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ENB-ID.c b/lib/asn1c/ngap/NGAP_ENB-ID.c index bfd97b14c..87f779d48 100644 --- a/lib/asn1c/ngap/NGAP_ENB-ID.c +++ b/lib/asn1c/ngap/NGAP_ENB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -239,7 +239,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ENB_ID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_ENB_ID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ENB-ID.h b/lib/asn1c/ngap/NGAP_ENB-ID.h index 9132459f4..ed4cfb297 100644 --- a/lib/asn1c/ngap/NGAP_ENB-ID.h +++ b/lib/asn1c/ngap/NGAP_ENB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EPS-TAC.c b/lib/asn1c/ngap/NGAP_EPS-TAC.c index 353ac4f2f..d92e43bc2 100644 --- a/lib/asn1c/ngap/NGAP_EPS-TAC.c +++ b/lib/asn1c/ngap/NGAP_EPS-TAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EPS-TAC.h b/lib/asn1c/ngap/NGAP_EPS-TAC.h index adcdffc0f..92ce6f2fc 100644 --- a/lib/asn1c/ngap/NGAP_EPS-TAC.h +++ b/lib/asn1c/ngap/NGAP_EPS-TAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EPS-TAI.c b/lib/asn1c/ngap/NGAP_EPS-TAI.c index f56354ae0..f27864cf8 100644 --- a/lib/asn1c/ngap/NGAP_EPS-TAI.c +++ b/lib/asn1c/ngap/NGAP_EPS-TAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_EPS_TAI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EPS_TAI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P69, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P69, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EPS-TAI.h b/lib/asn1c/ngap/NGAP_EPS-TAI.h index 86a08fdf9..e2043d57c 100644 --- a/lib/asn1c/ngap/NGAP_EPS-TAI.h +++ b/lib/asn1c/ngap/NGAP_EPS-TAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRA-CGI.c b/lib/asn1c/ngap/NGAP_EUTRA-CGI.c index 3208379d7..c43dde77e 100644 --- a/lib/asn1c/ngap/NGAP_EUTRA-CGI.c +++ b/lib/asn1c/ngap/NGAP_EUTRA-CGI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_EUTRA_CGI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EUTRA_CGI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P71, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P71, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EUTRA-CGI.h b/lib/asn1c/ngap/NGAP_EUTRA-CGI.h index 204021f34..1b2ba5643 100644 --- a/lib/asn1c/ngap/NGAP_EUTRA-CGI.h +++ b/lib/asn1c/ngap/NGAP_EUTRA-CGI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRA-CGIList.c b/lib/asn1c/ngap/NGAP_EUTRA-CGIList.c index 38a584ca7..8949c1a10 100644 --- a/lib/asn1c/ngap/NGAP_EUTRA-CGIList.c +++ b/lib/asn1c/ngap/NGAP_EUTRA-CGIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRA-CGIList.h b/lib/asn1c/ngap/NGAP_EUTRA-CGIList.h index 1ae6a0622..fcced532d 100644 --- a/lib/asn1c/ngap/NGAP_EUTRA-CGIList.h +++ b/lib/asn1c/ngap/NGAP_EUTRA-CGIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRA-CGIListForWarning.c b/lib/asn1c/ngap/NGAP_EUTRA-CGIListForWarning.c index ab87feb16..234974e2a 100644 --- a/lib/asn1c/ngap/NGAP_EUTRA-CGIListForWarning.c +++ b/lib/asn1c/ngap/NGAP_EUTRA-CGIListForWarning.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRA-CGIListForWarning.h b/lib/asn1c/ngap/NGAP_EUTRA-CGIListForWarning.h index 218403f66..beb446a4c 100644 --- a/lib/asn1c/ngap/NGAP_EUTRA-CGIListForWarning.h +++ b/lib/asn1c/ngap/NGAP_EUTRA-CGIListForWarning.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRACellIdentity.c b/lib/asn1c/ngap/NGAP_EUTRACellIdentity.c index ff4943c00..181655f75 100644 --- a/lib/asn1c/ngap/NGAP_EUTRACellIdentity.c +++ b/lib/asn1c/ngap/NGAP_EUTRACellIdentity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRACellIdentity.h b/lib/asn1c/ngap/NGAP_EUTRACellIdentity.h index 513ae9e60..8daf9b80b 100644 --- a/lib/asn1c/ngap/NGAP_EUTRACellIdentity.h +++ b/lib/asn1c/ngap/NGAP_EUTRACellIdentity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRAencryptionAlgorithms.c b/lib/asn1c/ngap/NGAP_EUTRAencryptionAlgorithms.c index 260ea3695..ea99bba06 100644 --- a/lib/asn1c/ngap/NGAP_EUTRAencryptionAlgorithms.c +++ b/lib/asn1c/ngap/NGAP_EUTRAencryptionAlgorithms.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRAencryptionAlgorithms.h b/lib/asn1c/ngap/NGAP_EUTRAencryptionAlgorithms.h index 390bfba81..28d4003ec 100644 --- a/lib/asn1c/ngap/NGAP_EUTRAencryptionAlgorithms.h +++ b/lib/asn1c/ngap/NGAP_EUTRAencryptionAlgorithms.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRAintegrityProtectionAlgorithms.c b/lib/asn1c/ngap/NGAP_EUTRAintegrityProtectionAlgorithms.c index 49f02eb77..937fa3ffe 100644 --- a/lib/asn1c/ngap/NGAP_EUTRAintegrityProtectionAlgorithms.c +++ b/lib/asn1c/ngap/NGAP_EUTRAintegrityProtectionAlgorithms.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EUTRAintegrityProtectionAlgorithms.h b/lib/asn1c/ngap/NGAP_EUTRAintegrityProtectionAlgorithms.h index ce479e5e2..f9e71eb10 100644 --- a/lib/asn1c/ngap/NGAP_EUTRAintegrityProtectionAlgorithms.h +++ b/lib/asn1c/ngap/NGAP_EUTRAintegrityProtectionAlgorithms.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EarlyStatusTransfer-TransparentContainer.c b/lib/asn1c/ngap/NGAP_EarlyStatusTransfer-TransparentContainer.c index a0cca76f3..e2db5b5c2 100644 --- a/lib/asn1c/ngap/NGAP_EarlyStatusTransfer-TransparentContainer.c +++ b/lib/asn1c/ngap/NGAP_EarlyStatusTransfer-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_EarlyStatusTransfer_TransparentContainer_1 { ATF_POINTER, 1, offsetof(struct NGAP_EarlyStatusTransfer_TransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P60, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P60, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EarlyStatusTransfer-TransparentContainer.h b/lib/asn1c/ngap/NGAP_EarlyStatusTransfer-TransparentContainer.h index 75c7830fb..89902c67f 100644 --- a/lib/asn1c/ngap/NGAP_EarlyStatusTransfer-TransparentContainer.h +++ b/lib/asn1c/ngap/NGAP_EarlyStatusTransfer-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaID.c b/lib/asn1c/ngap/NGAP_EmergencyAreaID.c index 78f55cefd..8d0838851 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaID.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaID.h b/lib/asn1c/ngap/NGAP_EmergencyAreaID.h index d0c304d4e..be898b6e6 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaID.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA-Item.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA-Item.c index 66d13581a..24d19422b 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_EmergencyAreaIDBroadcastEUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EmergencyAreaIDBroadcastEUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P63, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P63, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA-Item.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA-Item.h index 7614e70e6..ca3ee3c99 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA.c index f2c971a95..c622e50b6 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA.h index 64bd3136b..4aa9e4f88 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastEUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR-Item.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR-Item.c index d5601e740..e1f39300c 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR-Item.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_EmergencyAreaIDBroadcastNR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EmergencyAreaIDBroadcastNR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P64, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P64, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR-Item.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR-Item.h index fb4ef4a6d..fadcc1d44 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR-Item.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR.c index 9ab1cf7f7..ee6917412 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR.h index 73e2a30c6..a2cfdf65f 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDBroadcastNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA-Item.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA-Item.c index 6d8c8c12e..0628805b7 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_EmergencyAreaIDCancelledEUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EmergencyAreaIDCancelledEUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P65, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P65, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA-Item.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA-Item.h index 9670f2f91..8082e4e2e 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA.c index 6b0c75c7c..e59668f10 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA.h index cbea57aa3..2f82f0dfb 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledEUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR-Item.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR-Item.c index 97d291915..75e7cebf9 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR-Item.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_EmergencyAreaIDCancelledNR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EmergencyAreaIDCancelledNR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P66, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P66, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR-Item.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR-Item.h index 6d67f29ca..3de68013e 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR-Item.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR.c index c648e3354..8a1abdb43 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR.h index 5d4db26c9..3e4357750 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDCancelledNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDList.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDList.c index de222bc60..5cc947d8b 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDList.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDList.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDList.h index 796cade1c..616a06f34 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDList.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDListForRestart.c b/lib/asn1c/ngap/NGAP_EmergencyAreaIDListForRestart.c index 3120be278..aa0c185f7 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDListForRestart.c +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDListForRestart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyAreaIDListForRestart.h b/lib/asn1c/ngap/NGAP_EmergencyAreaIDListForRestart.h index 4ab2f0571..77ca4ee63 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyAreaIDListForRestart.h +++ b/lib/asn1c/ngap/NGAP_EmergencyAreaIDListForRestart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyFallbackIndicator.c b/lib/asn1c/ngap/NGAP_EmergencyFallbackIndicator.c index aef1fdeba..0403d29bc 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyFallbackIndicator.c +++ b/lib/asn1c/ngap/NGAP_EmergencyFallbackIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_EmergencyFallbackIndicator_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EmergencyFallbackIndicator, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P67, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P67, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EmergencyFallbackIndicator.h b/lib/asn1c/ngap/NGAP_EmergencyFallbackIndicator.h index b278f761b..47b151d83 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyFallbackIndicator.h +++ b/lib/asn1c/ngap/NGAP_EmergencyFallbackIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyFallbackRequestIndicator.c b/lib/asn1c/ngap/NGAP_EmergencyFallbackRequestIndicator.c index c0773dd16..f398674f4 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyFallbackRequestIndicator.c +++ b/lib/asn1c/ngap/NGAP_EmergencyFallbackRequestIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyFallbackRequestIndicator.h b/lib/asn1c/ngap/NGAP_EmergencyFallbackRequestIndicator.h index b6b764f1d..b29a646e2 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyFallbackRequestIndicator.h +++ b/lib/asn1c/ngap/NGAP_EmergencyFallbackRequestIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyServiceTargetCN.c b/lib/asn1c/ngap/NGAP_EmergencyServiceTargetCN.c index cd777a96b..32d43a995 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyServiceTargetCN.c +++ b/lib/asn1c/ngap/NGAP_EmergencyServiceTargetCN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EmergencyServiceTargetCN.h b/lib/asn1c/ngap/NGAP_EmergencyServiceTargetCN.h index 552f5b11b..eec6dbaa9 100644 --- a/lib/asn1c/ngap/NGAP_EmergencyServiceTargetCN.h +++ b/lib/asn1c/ngap/NGAP_EmergencyServiceTargetCN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EndIndication.c b/lib/asn1c/ngap/NGAP_EndIndication.c index 9a8a778a9..e148316cf 100644 --- a/lib/asn1c/ngap/NGAP_EndIndication.c +++ b/lib/asn1c/ngap/NGAP_EndIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EndIndication.h b/lib/asn1c/ngap/NGAP_EndIndication.h index 79be7ff1c..1b2478f54 100644 --- a/lib/asn1c/ngap/NGAP_EndIndication.h +++ b/lib/asn1c/ngap/NGAP_EndIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EndpointIPAddressAndPort.c b/lib/asn1c/ngap/NGAP_EndpointIPAddressAndPort.c index e237faa82..77afec963 100644 --- a/lib/asn1c/ngap/NGAP_EndpointIPAddressAndPort.c +++ b/lib/asn1c/ngap/NGAP_EndpointIPAddressAndPort.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_EndpointIPAddressAndPort_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EndpointIPAddressAndPort, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P68, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P68, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EndpointIPAddressAndPort.h b/lib/asn1c/ngap/NGAP_EndpointIPAddressAndPort.h index aeb88a110..b5aa2b4ba 100644 --- a/lib/asn1c/ngap/NGAP_EndpointIPAddressAndPort.h +++ b/lib/asn1c/ngap/NGAP_EndpointIPAddressAndPort.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Enhanced-CoverageRestriction.c b/lib/asn1c/ngap/NGAP_Enhanced-CoverageRestriction.c index 9f3e92555..7dca7ba04 100644 --- a/lib/asn1c/ngap/NGAP_Enhanced-CoverageRestriction.c +++ b/lib/asn1c/ngap/NGAP_Enhanced-CoverageRestriction.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Enhanced-CoverageRestriction.h b/lib/asn1c/ngap/NGAP_Enhanced-CoverageRestriction.h index 0f0d12395..723108c4e 100644 --- a/lib/asn1c/ngap/NGAP_Enhanced-CoverageRestriction.h +++ b/lib/asn1c/ngap/NGAP_Enhanced-CoverageRestriction.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EquivalentPLMNs.c b/lib/asn1c/ngap/NGAP_EquivalentPLMNs.c index 5ce46df07..ad7ec0614 100644 --- a/lib/asn1c/ngap/NGAP_EquivalentPLMNs.c +++ b/lib/asn1c/ngap/NGAP_EquivalentPLMNs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EquivalentPLMNs.h b/lib/asn1c/ngap/NGAP_EquivalentPLMNs.h index 1ef123a39..32d06f7d8 100644 --- a/lib/asn1c/ngap/NGAP_EquivalentPLMNs.h +++ b/lib/asn1c/ngap/NGAP_EquivalentPLMNs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ErrorIndication.c b/lib/asn1c/ngap/NGAP_ErrorIndication.c index a6b564e08..7889cf4bd 100644 --- a/lib/asn1c/ngap/NGAP_ErrorIndication.c +++ b/lib/asn1c/ngap/NGAP_ErrorIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ErrorIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_ErrorIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P63, + &asn_DEF_NGAP_ProtocolIE_Container_9574P63, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ErrorIndication.h b/lib/asn1c/ngap/NGAP_ErrorIndication.h index df61e260c..07b21c8bf 100644 --- a/lib/asn1c/ngap/NGAP_ErrorIndication.h +++ b/lib/asn1c/ngap/NGAP_ErrorIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_ErrorIndication */ typedef struct NGAP_ErrorIndication { - NGAP_ProtocolIE_Container_9520P63_t protocolIEs; + NGAP_ProtocolIE_Container_9574P63_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_EventL1LoggedMDTConfig.c b/lib/asn1c/ngap/NGAP_EventL1LoggedMDTConfig.c index a0e5dd0cb..20a2df15d 100644 --- a/lib/asn1c/ngap/NGAP_EventL1LoggedMDTConfig.c +++ b/lib/asn1c/ngap/NGAP_EventL1LoggedMDTConfig.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_EventL1LoggedMDTConfig_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_EventL1LoggedMDTConfig, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P78, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P78, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EventL1LoggedMDTConfig.h b/lib/asn1c/ngap/NGAP_EventL1LoggedMDTConfig.h index 854bc75ec..4d8ea7f14 100644 --- a/lib/asn1c/ngap/NGAP_EventL1LoggedMDTConfig.h +++ b/lib/asn1c/ngap/NGAP_EventL1LoggedMDTConfig.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EventTrigger.c b/lib/asn1c/ngap/NGAP_EventTrigger.c index 626c796b9..20157bfd5 100644 --- a/lib/asn1c/ngap/NGAP_EventTrigger.c +++ b/lib/asn1c/ngap/NGAP_EventTrigger.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -110,7 +110,7 @@ asn_TYPE_member_t asn_MBR_NGAP_EventTrigger_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_EventTrigger, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_EventTrigger.h b/lib/asn1c/ngap/NGAP_EventTrigger.h index a6025a6f2..fb5e45f51 100644 --- a/lib/asn1c/ngap/NGAP_EventTrigger.h +++ b/lib/asn1c/ngap/NGAP_EventTrigger.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EventType.c b/lib/asn1c/ngap/NGAP_EventType.c index 4d24ba8fa..85ad34450 100644 --- a/lib/asn1c/ngap/NGAP_EventType.c +++ b/lib/asn1c/ngap/NGAP_EventType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_EventType.h b/lib/asn1c/ngap/NGAP_EventType.h index f79da7601..5805ee8b0 100644 --- a/lib/asn1c/ngap/NGAP_EventType.h +++ b/lib/asn1c/ngap/NGAP_EventType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedActivityPeriod.c b/lib/asn1c/ngap/NGAP_ExpectedActivityPeriod.c index ea0e8c904..9f626527f 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedActivityPeriod.c +++ b/lib/asn1c/ngap/NGAP_ExpectedActivityPeriod.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedActivityPeriod.h b/lib/asn1c/ngap/NGAP_ExpectedActivityPeriod.h index 8f27b3206..bb87095e4 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedActivityPeriod.h +++ b/lib/asn1c/ngap/NGAP_ExpectedActivityPeriod.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedHOInterval.c b/lib/asn1c/ngap/NGAP_ExpectedHOInterval.c index 4dac7e4f2..56655c0a7 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedHOInterval.c +++ b/lib/asn1c/ngap/NGAP_ExpectedHOInterval.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedHOInterval.h b/lib/asn1c/ngap/NGAP_ExpectedHOInterval.h index 654115b94..b5b2d26ea 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedHOInterval.h +++ b/lib/asn1c/ngap/NGAP_ExpectedHOInterval.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedIdlePeriod.c b/lib/asn1c/ngap/NGAP_ExpectedIdlePeriod.c index 659399660..16df4be50 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedIdlePeriod.c +++ b/lib/asn1c/ngap/NGAP_ExpectedIdlePeriod.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedIdlePeriod.h b/lib/asn1c/ngap/NGAP_ExpectedIdlePeriod.h index 0ae381608..295f402f6 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedIdlePeriod.h +++ b/lib/asn1c/ngap/NGAP_ExpectedIdlePeriod.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEActivityBehaviour.c b/lib/asn1c/ngap/NGAP_ExpectedUEActivityBehaviour.c index d6ce2e05b..c385757f1 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEActivityBehaviour.c +++ b/lib/asn1c/ngap/NGAP_ExpectedUEActivityBehaviour.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ExpectedUEActivityBehaviour_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ExpectedUEActivityBehaviour, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P72, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P72, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEActivityBehaviour.h b/lib/asn1c/ngap/NGAP_ExpectedUEActivityBehaviour.h index c3b85a968..b591c93c0 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEActivityBehaviour.h +++ b/lib/asn1c/ngap/NGAP_ExpectedUEActivityBehaviour.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEBehaviour.c b/lib/asn1c/ngap/NGAP_ExpectedUEBehaviour.c index cbfc82d8a..81fdd0ef1 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEBehaviour.c +++ b/lib/asn1c/ngap/NGAP_ExpectedUEBehaviour.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -82,7 +82,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ExpectedUEBehaviour_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ExpectedUEBehaviour, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P73, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P73, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEBehaviour.h b/lib/asn1c/ngap/NGAP_ExpectedUEBehaviour.h index f396e9512..75eee2d6a 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEBehaviour.h +++ b/lib/asn1c/ngap/NGAP_ExpectedUEBehaviour.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEMobility.c b/lib/asn1c/ngap/NGAP_ExpectedUEMobility.c index 814523316..44e8012ed 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEMobility.c +++ b/lib/asn1c/ngap/NGAP_ExpectedUEMobility.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEMobility.h b/lib/asn1c/ngap/NGAP_ExpectedUEMobility.h index 3b30b429b..0ea485c0f 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEMobility.h +++ b/lib/asn1c/ngap/NGAP_ExpectedUEMobility.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectory.c b/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectory.c index 29120cf5b..f21567fb1 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectory.c +++ b/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectory.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectory.h b/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectory.h index 27dbc697a..03cd80f33 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectory.h +++ b/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectory.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectoryItem.c b/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectoryItem.c index 07de33f68..3e36f937c 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectoryItem.c +++ b/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectoryItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -78,7 +78,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ExpectedUEMovingTrajectoryItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ExpectedUEMovingTrajectoryItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P74, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P74, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectoryItem.h b/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectoryItem.h index 306f879a1..1343c8a14 100644 --- a/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectoryItem.h +++ b/lib/asn1c/ngap/NGAP_ExpectedUEMovingTrajectoryItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Extended-AMFName.c b/lib/asn1c/ngap/NGAP_Extended-AMFName.c index 59a9d1848..369545103 100644 --- a/lib/asn1c/ngap/NGAP_Extended-AMFName.c +++ b/lib/asn1c/ngap/NGAP_Extended-AMFName.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_Extended_AMFName_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_Extended_AMFName, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P75, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P75, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_Extended-AMFName.h b/lib/asn1c/ngap/NGAP_Extended-AMFName.h index 03d3424a1..d51f939e2 100644 --- a/lib/asn1c/ngap/NGAP_Extended-AMFName.h +++ b/lib/asn1c/ngap/NGAP_Extended-AMFName.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Extended-ConnectedTime.c b/lib/asn1c/ngap/NGAP_Extended-ConnectedTime.c index 9feb9ca01..3b494c7d7 100644 --- a/lib/asn1c/ngap/NGAP_Extended-ConnectedTime.c +++ b/lib/asn1c/ngap/NGAP_Extended-ConnectedTime.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Extended-ConnectedTime.h b/lib/asn1c/ngap/NGAP_Extended-ConnectedTime.h index 4d2e239e8..bf4e35eb5 100644 --- a/lib/asn1c/ngap/NGAP_Extended-ConnectedTime.h +++ b/lib/asn1c/ngap/NGAP_Extended-ConnectedTime.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Extended-RANNodeName.c b/lib/asn1c/ngap/NGAP_Extended-RANNodeName.c index c878c5892..1a92aef64 100644 --- a/lib/asn1c/ngap/NGAP_Extended-RANNodeName.c +++ b/lib/asn1c/ngap/NGAP_Extended-RANNodeName.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_Extended_RANNodeName_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_Extended_RANNodeName, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P76, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P76, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_Extended-RANNodeName.h b/lib/asn1c/ngap/NGAP_Extended-RANNodeName.h index cc2fc0fc7..0b3658471 100644 --- a/lib/asn1c/ngap/NGAP_Extended-RANNodeName.h +++ b/lib/asn1c/ngap/NGAP_Extended-RANNodeName.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExtendedPacketDelayBudget.c b/lib/asn1c/ngap/NGAP_ExtendedPacketDelayBudget.c index 6676b112d..ccf75911e 100644 --- a/lib/asn1c/ngap/NGAP_ExtendedPacketDelayBudget.c +++ b/lib/asn1c/ngap/NGAP_ExtendedPacketDelayBudget.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -37,7 +37,7 @@ NGAP_ExtendedPacketDelayBudget_constraint(const asn_TYPE_descriptor_t *td, const * so here we adjust the DEF accordingly. */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -static asn_per_constraints_t asn_PER_type_NGAP_ExtendedPacketDelayBudget_constr_1 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ExtendedPacketDelayBudget_constr_1 CC_NOTUSED = { { APC_CONSTRAINED | APC_EXTENSIBLE, 16, 16, 1, 65535 } /* (1..65535,...) */, { APC_UNCONSTRAINED, -1, -1, 0, 0 }, 0, 0 /* No PER value map */ diff --git a/lib/asn1c/ngap/NGAP_ExtendedPacketDelayBudget.h b/lib/asn1c/ngap/NGAP_ExtendedPacketDelayBudget.h index dd4392308..7a680ca04 100644 --- a/lib/asn1c/ngap/NGAP_ExtendedPacketDelayBudget.h +++ b/lib/asn1c/ngap/NGAP_ExtendedPacketDelayBudget.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -22,6 +22,7 @@ extern "C" { typedef long NGAP_ExtendedPacketDelayBudget_t; /* Implementation */ +extern asn_per_constraints_t asn_PER_type_NGAP_ExtendedPacketDelayBudget_constr_1; extern asn_TYPE_descriptor_t asn_DEF_NGAP_ExtendedPacketDelayBudget; asn_struct_free_f NGAP_ExtendedPacketDelayBudget_free; asn_struct_print_f NGAP_ExtendedPacketDelayBudget_print; diff --git a/lib/asn1c/ngap/NGAP_ExtendedRATRestrictionInformation.c b/lib/asn1c/ngap/NGAP_ExtendedRATRestrictionInformation.c index 7d0a50aa9..f95543beb 100644 --- a/lib/asn1c/ngap/NGAP_ExtendedRATRestrictionInformation.c +++ b/lib/asn1c/ngap/NGAP_ExtendedRATRestrictionInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -122,7 +122,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_ExtendedRATRestrictionInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ExtendedRATRestrictionInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P77, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P77, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ExtendedRATRestrictionInformation.h b/lib/asn1c/ngap/NGAP_ExtendedRATRestrictionInformation.h index ecdb5cb43..06774bdd6 100644 --- a/lib/asn1c/ngap/NGAP_ExtendedRATRestrictionInformation.h +++ b/lib/asn1c/ngap/NGAP_ExtendedRATRestrictionInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExtendedRNC-ID.c b/lib/asn1c/ngap/NGAP_ExtendedRNC-ID.c index 3bdff9f75..f21371198 100644 --- a/lib/asn1c/ngap/NGAP_ExtendedRNC-ID.c +++ b/lib/asn1c/ngap/NGAP_ExtendedRNC-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExtendedRNC-ID.h b/lib/asn1c/ngap/NGAP_ExtendedRNC-ID.h index f0687299c..2f6a36dff 100644 --- a/lib/asn1c/ngap/NGAP_ExtendedRNC-ID.h +++ b/lib/asn1c/ngap/NGAP_ExtendedRNC-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExtendedSliceSupportList.c b/lib/asn1c/ngap/NGAP_ExtendedSliceSupportList.c index 2755db044..fc7d7f64e 100644 --- a/lib/asn1c/ngap/NGAP_ExtendedSliceSupportList.c +++ b/lib/asn1c/ngap/NGAP_ExtendedSliceSupportList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExtendedSliceSupportList.h b/lib/asn1c/ngap/NGAP_ExtendedSliceSupportList.h index 6d60a5acf..09784e6c9 100644 --- a/lib/asn1c/ngap/NGAP_ExtendedSliceSupportList.h +++ b/lib/asn1c/ngap/NGAP_ExtendedSliceSupportList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ExtendedUEIdentityIndexValue.c b/lib/asn1c/ngap/NGAP_ExtendedUEIdentityIndexValue.c new file mode 100644 index 000000000..553e92a2d --- /dev/null +++ b/lib/asn1c/ngap/NGAP_ExtendedUEIdentityIndexValue.c @@ -0,0 +1,77 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#include "NGAP_ExtendedUEIdentityIndexValue.h" + +int +NGAP_ExtendedUEIdentityIndexValue_constraint(const asn_TYPE_descriptor_t *td, const void *sptr, + asn_app_constraint_failed_f *ctfailcb, void *app_key) { + const BIT_STRING_t *st = (const BIT_STRING_t *)sptr; + size_t size; + + if(!sptr) { + ASN__CTFAIL(app_key, td, sptr, + "%s: value not given (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } + + if(st->size > 0) { + /* Size in bits */ + size = 8 * st->size - (st->bits_unused & 0x07); + } else { + size = 0; + } + + if((size == 16UL)) { + /* Constraint check succeeded */ + return 0; + } else { + ASN__CTFAIL(app_key, td, sptr, + "%s: constraint failed (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } +} + +/* + * This type is implemented using BIT_STRING, + * so here we adjust the DEF accordingly. + */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +static asn_per_constraints_t asn_PER_type_NGAP_ExtendedUEIdentityIndexValue_constr_1 CC_NOTUSED = { + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + { APC_CONSTRAINED, 0, 0, 16, 16 } /* (SIZE(16..16)) */, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +static const ber_tlv_tag_t asn_DEF_NGAP_ExtendedUEIdentityIndexValue_tags_1[] = { + (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)) +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_ExtendedUEIdentityIndexValue = { + "ExtendedUEIdentityIndexValue", + "ExtendedUEIdentityIndexValue", + &asn_OP_BIT_STRING, + asn_DEF_NGAP_ExtendedUEIdentityIndexValue_tags_1, + sizeof(asn_DEF_NGAP_ExtendedUEIdentityIndexValue_tags_1) + /sizeof(asn_DEF_NGAP_ExtendedUEIdentityIndexValue_tags_1[0]), /* 1 */ + asn_DEF_NGAP_ExtendedUEIdentityIndexValue_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_ExtendedUEIdentityIndexValue_tags_1) + /sizeof(asn_DEF_NGAP_ExtendedUEIdentityIndexValue_tags_1[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_type_NGAP_ExtendedUEIdentityIndexValue_constr_1, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + NGAP_ExtendedUEIdentityIndexValue_constraint + }, + 0, 0, /* No members */ + &asn_SPC_BIT_STRING_specs /* Additional specs */ +}; + diff --git a/lib/asn1c/ngap/NGAP_ExtendedUEIdentityIndexValue.h b/lib/asn1c/ngap/NGAP_ExtendedUEIdentityIndexValue.h new file mode 100644 index 000000000..f086d63da --- /dev/null +++ b/lib/asn1c/ngap/NGAP_ExtendedUEIdentityIndexValue.h @@ -0,0 +1,37 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#ifndef _NGAP_ExtendedUEIdentityIndexValue_H_ +#define _NGAP_ExtendedUEIdentityIndexValue_H_ + + +#include + +/* Including external dependencies */ +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* NGAP_ExtendedUEIdentityIndexValue */ +typedef BIT_STRING_t NGAP_ExtendedUEIdentityIndexValue_t; + +/* Implementation */ +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ExtendedUEIdentityIndexValue; +asn_struct_free_f NGAP_ExtendedUEIdentityIndexValue_free; +asn_struct_print_f NGAP_ExtendedUEIdentityIndexValue_print; +asn_constr_check_f NGAP_ExtendedUEIdentityIndexValue_constraint; +per_type_decoder_f NGAP_ExtendedUEIdentityIndexValue_decode_aper; +per_type_encoder_f NGAP_ExtendedUEIdentityIndexValue_encode_aper; + +#ifdef __cplusplus +} +#endif + +#endif /* _NGAP_ExtendedUEIdentityIndexValue_H_ */ +#include diff --git a/lib/asn1c/ngap/NGAP_FailureIndication.c b/lib/asn1c/ngap/NGAP_FailureIndication.c index e994b4876..5efaa7b3c 100644 --- a/lib/asn1c/ngap/NGAP_FailureIndication.c +++ b/lib/asn1c/ngap/NGAP_FailureIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_FailureIndication_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_FailureIndication, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P79, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P79, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_FailureIndication.h b/lib/asn1c/ngap/NGAP_FailureIndication.h index 704ecc8ef..591db001f 100644 --- a/lib/asn1c/ngap/NGAP_FailureIndication.h +++ b/lib/asn1c/ngap/NGAP_FailureIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_FirstDLCount.c b/lib/asn1c/ngap/NGAP_FirstDLCount.c index f11180786..6c1a4724b 100644 --- a/lib/asn1c/ngap/NGAP_FirstDLCount.c +++ b/lib/asn1c/ngap/NGAP_FirstDLCount.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_FirstDLCount_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_FirstDLCount, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P61, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P61, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_FirstDLCount.h b/lib/asn1c/ngap/NGAP_FirstDLCount.h index a9dbedf5b..7c0b93a63 100644 --- a/lib/asn1c/ngap/NGAP_FirstDLCount.h +++ b/lib/asn1c/ngap/NGAP_FirstDLCount.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_FiveG-S-TMSI.c b/lib/asn1c/ngap/NGAP_FiveG-S-TMSI.c index ef58dae84..bc76fe67b 100644 --- a/lib/asn1c/ngap/NGAP_FiveG-S-TMSI.c +++ b/lib/asn1c/ngap/NGAP_FiveG-S-TMSI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_FiveG_S_TMSI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_FiveG_S_TMSI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P80, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P80, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_FiveG-S-TMSI.h b/lib/asn1c/ngap/NGAP_FiveG-S-TMSI.h index 1fea1f16b..7a7ecbc37 100644 --- a/lib/asn1c/ngap/NGAP_FiveG-S-TMSI.h +++ b/lib/asn1c/ngap/NGAP_FiveG-S-TMSI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_FiveG-TMSI.c b/lib/asn1c/ngap/NGAP_FiveG-TMSI.c index e19b904d2..cc667b30e 100644 --- a/lib/asn1c/ngap/NGAP_FiveG-TMSI.c +++ b/lib/asn1c/ngap/NGAP_FiveG-TMSI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_FiveG-TMSI.h b/lib/asn1c/ngap/NGAP_FiveG-TMSI.h index c409f8e70..890d057f2 100644 --- a/lib/asn1c/ngap/NGAP_FiveG-TMSI.h +++ b/lib/asn1c/ngap/NGAP_FiveG-TMSI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_FiveQI.c b/lib/asn1c/ngap/NGAP_FiveQI.c index dea5cfd8b..8f1eef3bd 100644 --- a/lib/asn1c/ngap/NGAP_FiveQI.c +++ b/lib/asn1c/ngap/NGAP_FiveQI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_FiveQI.h b/lib/asn1c/ngap/NGAP_FiveQI.h index 449fd7ac1..af4a111dc 100644 --- a/lib/asn1c/ngap/NGAP_FiveQI.h +++ b/lib/asn1c/ngap/NGAP_FiveQI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation-Item.c b/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation-Item.c index 0e7068dde..732f81c58 100644 --- a/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation-Item.c +++ b/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ForbiddenAreaInformation_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ForbiddenAreaInformation_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P81, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P81, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation-Item.h b/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation-Item.h index 8a25233c2..6ecdaa448 100644 --- a/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation-Item.h +++ b/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation.c b/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation.c index 8db03acb8..f1f9ec84e 100644 --- a/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation.c +++ b/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation.h b/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation.h index cf38719e8..d9edb6656 100644 --- a/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation.h +++ b/lib/asn1c/ngap/NGAP_ForbiddenAreaInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ForbiddenTACs.c b/lib/asn1c/ngap/NGAP_ForbiddenTACs.c index 7fe72b546..573941545 100644 --- a/lib/asn1c/ngap/NGAP_ForbiddenTACs.c +++ b/lib/asn1c/ngap/NGAP_ForbiddenTACs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ForbiddenTACs.h b/lib/asn1c/ngap/NGAP_ForbiddenTACs.h index 39c7af049..c48112411 100644 --- a/lib/asn1c/ngap/NGAP_ForbiddenTACs.h +++ b/lib/asn1c/ngap/NGAP_ForbiddenTACs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_FromEUTRANtoNGRAN.c b/lib/asn1c/ngap/NGAP_FromEUTRANtoNGRAN.c index dfb3935ad..8f2fba877 100644 --- a/lib/asn1c/ngap/NGAP_FromEUTRANtoNGRAN.c +++ b/lib/asn1c/ngap/NGAP_FromEUTRANtoNGRAN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_FromEUTRANtoNGRAN_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_FromEUTRANtoNGRAN, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P82, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P82, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_FromEUTRANtoNGRAN.h b/lib/asn1c/ngap/NGAP_FromEUTRANtoNGRAN.h index 2ff8fc3ec..2d3b86481 100644 --- a/lib/asn1c/ngap/NGAP_FromEUTRANtoNGRAN.h +++ b/lib/asn1c/ngap/NGAP_FromEUTRANtoNGRAN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_FromNGRANtoEUTRAN.c b/lib/asn1c/ngap/NGAP_FromNGRANtoEUTRAN.c index d992b2367..c0451d5e4 100644 --- a/lib/asn1c/ngap/NGAP_FromNGRANtoEUTRAN.c +++ b/lib/asn1c/ngap/NGAP_FromNGRANtoEUTRAN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_FromNGRANtoEUTRAN_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_FromNGRANtoEUTRAN, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P83, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P83, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_FromNGRANtoEUTRAN.h b/lib/asn1c/ngap/NGAP_FromNGRANtoEUTRAN.h index c0692036e..604615948 100644 --- a/lib/asn1c/ngap/NGAP_FromNGRANtoEUTRAN.h +++ b/lib/asn1c/ngap/NGAP_FromNGRANtoEUTRAN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GBR-QosInformation.c b/lib/asn1c/ngap/NGAP_GBR-QosInformation.c index 75efb71c5..6516a73cf 100644 --- a/lib/asn1c/ngap/NGAP_GBR-QosInformation.c +++ b/lib/asn1c/ngap/NGAP_GBR-QosInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -131,7 +131,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GBR_QosInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GBR_QosInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (7 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P84, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P84, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GBR-QosInformation.h b/lib/asn1c/ngap/NGAP_GBR-QosInformation.h index 66c70ddb3..bda783947 100644 --- a/lib/asn1c/ngap/NGAP_GBR-QosInformation.h +++ b/lib/asn1c/ngap/NGAP_GBR-QosInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GNB-ID.c b/lib/asn1c/ngap/NGAP_GNB-ID.c index 145f25a51..e55ff515b 100644 --- a/lib/asn1c/ngap/NGAP_GNB-ID.c +++ b/lib/asn1c/ngap/NGAP_GNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GNB_ID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_GNB_ID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GNB-ID.h b/lib/asn1c/ngap/NGAP_GNB-ID.h index 078fbc0b0..877493adf 100644 --- a/lib/asn1c/ngap/NGAP_GNB-ID.h +++ b/lib/asn1c/ngap/NGAP_GNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GNBSetID.c b/lib/asn1c/ngap/NGAP_GNBSetID.c index 807785301..57b51ea92 100644 --- a/lib/asn1c/ngap/NGAP_GNBSetID.c +++ b/lib/asn1c/ngap/NGAP_GNBSetID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GNBSetID.h b/lib/asn1c/ngap/NGAP_GNBSetID.h index c78fd2e1e..419ba86f7 100644 --- a/lib/asn1c/ngap/NGAP_GNBSetID.h +++ b/lib/asn1c/ngap/NGAP_GNBSetID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GTP-TEID.c b/lib/asn1c/ngap/NGAP_GTP-TEID.c index 719368f70..744f50419 100644 --- a/lib/asn1c/ngap/NGAP_GTP-TEID.c +++ b/lib/asn1c/ngap/NGAP_GTP-TEID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GTP-TEID.h b/lib/asn1c/ngap/NGAP_GTP-TEID.h index e63331700..aecd5669e 100644 --- a/lib/asn1c/ngap/NGAP_GTP-TEID.h +++ b/lib/asn1c/ngap/NGAP_GTP-TEID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GTPTunnel.c b/lib/asn1c/ngap/NGAP_GTPTunnel.c index b80cb732b..3351ba991 100644 --- a/lib/asn1c/ngap/NGAP_GTPTunnel.c +++ b/lib/asn1c/ngap/NGAP_GTPTunnel.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GTPTunnel_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GTPTunnel, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P93, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P93, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GTPTunnel.h b/lib/asn1c/ngap/NGAP_GTPTunnel.h index a582c714d..6fc82bac6 100644 --- a/lib/asn1c/ngap/NGAP_GTPTunnel.h +++ b/lib/asn1c/ngap/NGAP_GTPTunnel.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GUAMI.c b/lib/asn1c/ngap/NGAP_GUAMI.c index fead450d3..f8bfb73b8 100644 --- a/lib/asn1c/ngap/NGAP_GUAMI.c +++ b/lib/asn1c/ngap/NGAP_GUAMI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GUAMI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GUAMI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P94, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P94, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GUAMI.h b/lib/asn1c/ngap/NGAP_GUAMI.h index 558b63afb..8721ef98f 100644 --- a/lib/asn1c/ngap/NGAP_GUAMI.h +++ b/lib/asn1c/ngap/NGAP_GUAMI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GUAMIType.c b/lib/asn1c/ngap/NGAP_GUAMIType.c index 4bacf8e6c..03f15b564 100644 --- a/lib/asn1c/ngap/NGAP_GUAMIType.c +++ b/lib/asn1c/ngap/NGAP_GUAMIType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GUAMIType.h b/lib/asn1c/ngap/NGAP_GUAMIType.h index c5e01a5a5..3b7f72acd 100644 --- a/lib/asn1c/ngap/NGAP_GUAMIType.h +++ b/lib/asn1c/ngap/NGAP_GUAMIType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalCable-ID.c b/lib/asn1c/ngap/NGAP_GlobalCable-ID.c index 779c6a479..7be02ede2 100644 --- a/lib/asn1c/ngap/NGAP_GlobalCable-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalCable-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalCable-ID.h b/lib/asn1c/ngap/NGAP_GlobalCable-ID.h index 6626ba9fb..ecca0ffd7 100644 --- a/lib/asn1c/ngap/NGAP_GlobalCable-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalCable-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalENB-ID.c b/lib/asn1c/ngap/NGAP_GlobalENB-ID.c index 01eeb309c..34ee3df30 100644 --- a/lib/asn1c/ngap/NGAP_GlobalENB-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalENB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GlobalENB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GlobalENB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P85, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P85, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalENB-ID.h b/lib/asn1c/ngap/NGAP_GlobalENB-ID.h index 995864b6c..b88c4c632 100644 --- a/lib/asn1c/ngap/NGAP_GlobalENB-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalENB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalGNB-ID.c b/lib/asn1c/ngap/NGAP_GlobalGNB-ID.c index 820b805b2..cd6fb5e8a 100644 --- a/lib/asn1c/ngap/NGAP_GlobalGNB-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalGNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GlobalGNB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GlobalGNB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P86, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P86, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalGNB-ID.h b/lib/asn1c/ngap/NGAP_GlobalGNB-ID.h index b6e6ca530..ebc495ede 100644 --- a/lib/asn1c/ngap/NGAP_GlobalGNB-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalGNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalLine-ID.c b/lib/asn1c/ngap/NGAP_GlobalLine-ID.c index 2d98c3d28..156c4dcc7 100644 --- a/lib/asn1c/ngap/NGAP_GlobalLine-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalLine-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GlobalLine_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GlobalLine_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P88, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P88, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalLine-ID.h b/lib/asn1c/ngap/NGAP_GlobalLine-ID.h index ad2d7a554..6789aa722 100644 --- a/lib/asn1c/ngap/NGAP_GlobalLine-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalLine-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalLineIdentity.c b/lib/asn1c/ngap/NGAP_GlobalLineIdentity.c index 3449d7064..3c7d8eb06 100644 --- a/lib/asn1c/ngap/NGAP_GlobalLineIdentity.c +++ b/lib/asn1c/ngap/NGAP_GlobalLineIdentity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalLineIdentity.h b/lib/asn1c/ngap/NGAP_GlobalLineIdentity.h index 43e23683b..752ade9e6 100644 --- a/lib/asn1c/ngap/NGAP_GlobalLineIdentity.h +++ b/lib/asn1c/ngap/NGAP_GlobalLineIdentity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalN3IWF-ID.c b/lib/asn1c/ngap/NGAP_GlobalN3IWF-ID.c index 896060a63..108d02e2e 100644 --- a/lib/asn1c/ngap/NGAP_GlobalN3IWF-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalN3IWF-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GlobalN3IWF_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GlobalN3IWF_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P87, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P87, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalN3IWF-ID.h b/lib/asn1c/ngap/NGAP_GlobalN3IWF-ID.h index 1d9d94171..8c7159ce2 100644 --- a/lib/asn1c/ngap/NGAP_GlobalN3IWF-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalN3IWF-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalNgENB-ID.c b/lib/asn1c/ngap/NGAP_GlobalNgENB-ID.c index 23620833b..13d2f44ba 100644 --- a/lib/asn1c/ngap/NGAP_GlobalNgENB-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalNgENB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GlobalNgENB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GlobalNgENB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P89, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P89, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalNgENB-ID.h b/lib/asn1c/ngap/NGAP_GlobalNgENB-ID.h index ae25f901c..262b4e618 100644 --- a/lib/asn1c/ngap/NGAP_GlobalNgENB-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalNgENB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalRANNodeID.c b/lib/asn1c/ngap/NGAP_GlobalRANNodeID.c index 21924d114..3fad4f6dc 100644 --- a/lib/asn1c/ngap/NGAP_GlobalRANNodeID.c +++ b/lib/asn1c/ngap/NGAP_GlobalRANNodeID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -73,7 +73,7 @@ asn_TYPE_member_t asn_MBR_NGAP_GlobalRANNodeID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_GlobalRANNodeID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalRANNodeID.h b/lib/asn1c/ngap/NGAP_GlobalRANNodeID.h index 65f5e9c29..9ffca4317 100644 --- a/lib/asn1c/ngap/NGAP_GlobalRANNodeID.h +++ b/lib/asn1c/ngap/NGAP_GlobalRANNodeID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalTNGF-ID.c b/lib/asn1c/ngap/NGAP_GlobalTNGF-ID.c index 6764d0e4b..d27b307e7 100644 --- a/lib/asn1c/ngap/NGAP_GlobalTNGF-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalTNGF-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_GlobalTNGF_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GlobalTNGF_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P90, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P90, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalTNGF-ID.h b/lib/asn1c/ngap/NGAP_GlobalTNGF-ID.h index 492a97525..2b0f63d23 100644 --- a/lib/asn1c/ngap/NGAP_GlobalTNGF-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalTNGF-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalTWIF-ID.c b/lib/asn1c/ngap/NGAP_GlobalTWIF-ID.c index f31439610..fadf517f2 100644 --- a/lib/asn1c/ngap/NGAP_GlobalTWIF-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalTWIF-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_GlobalTWIF_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GlobalTWIF_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P91, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P91, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalTWIF-ID.h b/lib/asn1c/ngap/NGAP_GlobalTWIF-ID.h index bb59ae1ff..ca8219aa5 100644 --- a/lib/asn1c/ngap/NGAP_GlobalTWIF-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalTWIF-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_GlobalW-AGF-ID.c b/lib/asn1c/ngap/NGAP_GlobalW-AGF-ID.c index 7ae215bf2..ed64401ba 100644 --- a/lib/asn1c/ngap/NGAP_GlobalW-AGF-ID.c +++ b/lib/asn1c/ngap/NGAP_GlobalW-AGF-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_GlobalW_AGF_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_GlobalW_AGF_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P92, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P92, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_GlobalW-AGF-ID.h b/lib/asn1c/ngap/NGAP_GlobalW-AGF-ID.h index 6c6eabcce..224697381 100644 --- a/lib/asn1c/ngap/NGAP_GlobalW-AGF-ID.h +++ b/lib/asn1c/ngap/NGAP_GlobalW-AGF-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HFCNode-ID.c b/lib/asn1c/ngap/NGAP_HFCNode-ID.c index a333f99d7..6d612c5c5 100644 --- a/lib/asn1c/ngap/NGAP_HFCNode-ID.c +++ b/lib/asn1c/ngap/NGAP_HFCNode-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HFCNode-ID.h b/lib/asn1c/ngap/NGAP_HFCNode-ID.h index 1db181e88..186d933ef 100644 --- a/lib/asn1c/ngap/NGAP_HFCNode-ID.h +++ b/lib/asn1c/ngap/NGAP_HFCNode-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HOReport.c b/lib/asn1c/ngap/NGAP_HOReport.c index 261c3dec3..15d80b077 100644 --- a/lib/asn1c/ngap/NGAP_HOReport.c +++ b/lib/asn1c/ngap/NGAP_HOReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -266,7 +266,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HOReport_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_HOReport, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (9 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P100, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P100, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HOReport.h b/lib/asn1c/ngap/NGAP_HOReport.h index 2b774dc2d..4d2a920b2 100644 --- a/lib/asn1c/ngap/NGAP_HOReport.h +++ b/lib/asn1c/ngap/NGAP_HOReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverCancel.c b/lib/asn1c/ngap/NGAP_HandoverCancel.c index a14cb4908..87a181e45 100644 --- a/lib/asn1c/ngap/NGAP_HandoverCancel.c +++ b/lib/asn1c/ngap/NGAP_HandoverCancel.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverCancel_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverCancel, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P38, + &asn_DEF_NGAP_ProtocolIE_Container_9574P38, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverCancel.h b/lib/asn1c/ngap/NGAP_HandoverCancel.h index 942dc29b2..874010dcc 100644 --- a/lib/asn1c/ngap/NGAP_HandoverCancel.h +++ b/lib/asn1c/ngap/NGAP_HandoverCancel.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverCancel */ typedef struct NGAP_HandoverCancel { - NGAP_ProtocolIE_Container_9520P38_t protocolIEs; + NGAP_ProtocolIE_Container_9574P38_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverCancelAcknowledge.c b/lib/asn1c/ngap/NGAP_HandoverCancelAcknowledge.c index 19e07a982..7e60c762c 100644 --- a/lib/asn1c/ngap/NGAP_HandoverCancelAcknowledge.c +++ b/lib/asn1c/ngap/NGAP_HandoverCancelAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverCancelAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverCancelAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P39, + &asn_DEF_NGAP_ProtocolIE_Container_9574P39, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverCancelAcknowledge.h b/lib/asn1c/ngap/NGAP_HandoverCancelAcknowledge.h index 256591928..60a24365e 100644 --- a/lib/asn1c/ngap/NGAP_HandoverCancelAcknowledge.h +++ b/lib/asn1c/ngap/NGAP_HandoverCancelAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverCancelAcknowledge */ typedef struct NGAP_HandoverCancelAcknowledge { - NGAP_ProtocolIE_Container_9520P39_t protocolIEs; + NGAP_ProtocolIE_Container_9574P39_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverCommand.c b/lib/asn1c/ngap/NGAP_HandoverCommand.c index 34996508d..49b316fe8 100644 --- a/lib/asn1c/ngap/NGAP_HandoverCommand.c +++ b/lib/asn1c/ngap/NGAP_HandoverCommand.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverCommand_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverCommand, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P29, + &asn_DEF_NGAP_ProtocolIE_Container_9574P29, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverCommand.h b/lib/asn1c/ngap/NGAP_HandoverCommand.h index 5d1ed9c65..06b438ae6 100644 --- a/lib/asn1c/ngap/NGAP_HandoverCommand.h +++ b/lib/asn1c/ngap/NGAP_HandoverCommand.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverCommand */ typedef struct NGAP_HandoverCommand { - NGAP_ProtocolIE_Container_9520P29_t protocolIEs; + NGAP_ProtocolIE_Container_9574P29_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverCommandTransfer.c b/lib/asn1c/ngap/NGAP_HandoverCommandTransfer.c index 7c46f1179..72a523d1d 100644 --- a/lib/asn1c/ngap/NGAP_HandoverCommandTransfer.c +++ b/lib/asn1c/ngap/NGAP_HandoverCommandTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,7 +66,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_HandoverCommandTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_HandoverCommandTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P95, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P95, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverCommandTransfer.h b/lib/asn1c/ngap/NGAP_HandoverCommandTransfer.h index 3eeaa4a3b..5a07d8f18 100644 --- a/lib/asn1c/ngap/NGAP_HandoverCommandTransfer.h +++ b/lib/asn1c/ngap/NGAP_HandoverCommandTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverFailure.c b/lib/asn1c/ngap/NGAP_HandoverFailure.c index 31f1a859e..e0db73010 100644 --- a/lib/asn1c/ngap/NGAP_HandoverFailure.c +++ b/lib/asn1c/ngap/NGAP_HandoverFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P33, + &asn_DEF_NGAP_ProtocolIE_Container_9574P33, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverFailure.h b/lib/asn1c/ngap/NGAP_HandoverFailure.h index 4a67b9fbc..8eedeb598 100644 --- a/lib/asn1c/ngap/NGAP_HandoverFailure.h +++ b/lib/asn1c/ngap/NGAP_HandoverFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverFailure */ typedef struct NGAP_HandoverFailure { - NGAP_ProtocolIE_Container_9520P33_t protocolIEs; + NGAP_ProtocolIE_Container_9574P33_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverFlag.c b/lib/asn1c/ngap/NGAP_HandoverFlag.c index dc7440bfb..ffc7ecd60 100644 --- a/lib/asn1c/ngap/NGAP_HandoverFlag.c +++ b/lib/asn1c/ngap/NGAP_HandoverFlag.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverFlag.h b/lib/asn1c/ngap/NGAP_HandoverFlag.h index 5be92f8e3..8ace71920 100644 --- a/lib/asn1c/ngap/NGAP_HandoverFlag.h +++ b/lib/asn1c/ngap/NGAP_HandoverFlag.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverNotify.c b/lib/asn1c/ngap/NGAP_HandoverNotify.c index 7240872e4..ec6f6c17f 100644 --- a/lib/asn1c/ngap/NGAP_HandoverNotify.c +++ b/lib/asn1c/ngap/NGAP_HandoverNotify.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverNotify_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverNotify, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P34, + &asn_DEF_NGAP_ProtocolIE_Container_9574P34, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverNotify.h b/lib/asn1c/ngap/NGAP_HandoverNotify.h index 1ff5a5420..1d5230637 100644 --- a/lib/asn1c/ngap/NGAP_HandoverNotify.h +++ b/lib/asn1c/ngap/NGAP_HandoverNotify.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverNotify */ typedef struct NGAP_HandoverNotify { - NGAP_ProtocolIE_Container_9520P34_t protocolIEs; + NGAP_ProtocolIE_Container_9574P34_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverPreparationFailure.c b/lib/asn1c/ngap/NGAP_HandoverPreparationFailure.c index 725562b57..8aa29636c 100644 --- a/lib/asn1c/ngap/NGAP_HandoverPreparationFailure.c +++ b/lib/asn1c/ngap/NGAP_HandoverPreparationFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverPreparationFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverPreparationFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P30, + &asn_DEF_NGAP_ProtocolIE_Container_9574P30, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverPreparationFailure.h b/lib/asn1c/ngap/NGAP_HandoverPreparationFailure.h index aad7642b1..d2e1fea62 100644 --- a/lib/asn1c/ngap/NGAP_HandoverPreparationFailure.h +++ b/lib/asn1c/ngap/NGAP_HandoverPreparationFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverPreparationFailure */ typedef struct NGAP_HandoverPreparationFailure { - NGAP_ProtocolIE_Container_9520P30_t protocolIEs; + NGAP_ProtocolIE_Container_9574P30_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverPreparationUnsuccessfulTransfer.c b/lib/asn1c/ngap/NGAP_HandoverPreparationUnsuccessfulTransfer.c index 896e96033..5de1e7a95 100644 --- a/lib/asn1c/ngap/NGAP_HandoverPreparationUnsuccessfulTransfer.c +++ b/lib/asn1c/ngap/NGAP_HandoverPreparationUnsuccessfulTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_HandoverPreparationUnsuccessfulTransfer_1[ { ATF_POINTER, 1, offsetof(struct NGAP_HandoverPreparationUnsuccessfulTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P96, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P96, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverPreparationUnsuccessfulTransfer.h b/lib/asn1c/ngap/NGAP_HandoverPreparationUnsuccessfulTransfer.h index 4c2bf6212..0946e73f7 100644 --- a/lib/asn1c/ngap/NGAP_HandoverPreparationUnsuccessfulTransfer.h +++ b/lib/asn1c/ngap/NGAP_HandoverPreparationUnsuccessfulTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverRequest.c b/lib/asn1c/ngap/NGAP_HandoverRequest.c index c35569fcf..7a23ef9d8 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequest.c +++ b/lib/asn1c/ngap/NGAP_HandoverRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P31, + &asn_DEF_NGAP_ProtocolIE_Container_9574P31, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverRequest.h b/lib/asn1c/ngap/NGAP_HandoverRequest.h index e590f2625..b2b171775 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequest.h +++ b/lib/asn1c/ngap/NGAP_HandoverRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverRequest */ typedef struct NGAP_HandoverRequest { - NGAP_ProtocolIE_Container_9520P31_t protocolIEs; + NGAP_ProtocolIE_Container_9574P31_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledge.c b/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledge.c index 5f18cc2cf..d95aff37c 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledge.c +++ b/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverRequestAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverRequestAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P32, + &asn_DEF_NGAP_ProtocolIE_Container_9574P32, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledge.h b/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledge.h index 4e17f97c7..5a0016030 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledge.h +++ b/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverRequestAcknowledge */ typedef struct NGAP_HandoverRequestAcknowledge { - NGAP_ProtocolIE_Container_9520P32_t protocolIEs; + NGAP_ProtocolIE_Container_9574P32_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledgeTransfer.c b/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledgeTransfer.c index 44acc05d6..72eaf276a 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledgeTransfer.c +++ b/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledgeTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -118,7 +118,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_HandoverRequestAcknowledgeTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_HandoverRequestAcknowledgeTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (6 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P97, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P97, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledgeTransfer.h b/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledgeTransfer.h index 15416e339..1dd7521ae 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledgeTransfer.h +++ b/lib/asn1c/ngap/NGAP_HandoverRequestAcknowledgeTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverRequired.c b/lib/asn1c/ngap/NGAP_HandoverRequired.c index 6c901f2fd..cd57755eb 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequired.c +++ b/lib/asn1c/ngap/NGAP_HandoverRequired.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverRequired_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverRequired, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P28, + &asn_DEF_NGAP_ProtocolIE_Container_9574P28, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverRequired.h b/lib/asn1c/ngap/NGAP_HandoverRequired.h index 8520a30e7..a723bf258 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequired.h +++ b/lib/asn1c/ngap/NGAP_HandoverRequired.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverRequired */ typedef struct NGAP_HandoverRequired { - NGAP_ProtocolIE_Container_9520P28_t protocolIEs; + NGAP_ProtocolIE_Container_9574P28_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverRequiredTransfer.c b/lib/asn1c/ngap/NGAP_HandoverRequiredTransfer.c index c2b720cfd..a1480f4d0 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequiredTransfer.c +++ b/lib/asn1c/ngap/NGAP_HandoverRequiredTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_HandoverRequiredTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_HandoverRequiredTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P98, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P98, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverRequiredTransfer.h b/lib/asn1c/ngap/NGAP_HandoverRequiredTransfer.h index 977274384..f4c7b6db2 100644 --- a/lib/asn1c/ngap/NGAP_HandoverRequiredTransfer.h +++ b/lib/asn1c/ngap/NGAP_HandoverRequiredTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverResourceAllocationUnsuccessfulTransfer.c b/lib/asn1c/ngap/NGAP_HandoverResourceAllocationUnsuccessfulTransfer.c index ad20c75c4..8519bc2f3 100644 --- a/lib/asn1c/ngap/NGAP_HandoverResourceAllocationUnsuccessfulTransfer.c +++ b/lib/asn1c/ngap/NGAP_HandoverResourceAllocationUnsuccessfulTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_HandoverResourceAllocationUnsuccessfulTran { ATF_POINTER, 1, offsetof(struct NGAP_HandoverResourceAllocationUnsuccessfulTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P99, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P99, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverResourceAllocationUnsuccessfulTransfer.h b/lib/asn1c/ngap/NGAP_HandoverResourceAllocationUnsuccessfulTransfer.h index c7f8f4e6b..521033621 100644 --- a/lib/asn1c/ngap/NGAP_HandoverResourceAllocationUnsuccessfulTransfer.h +++ b/lib/asn1c/ngap/NGAP_HandoverResourceAllocationUnsuccessfulTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverSuccess.c b/lib/asn1c/ngap/NGAP_HandoverSuccess.c index 6afa10b4f..1f76bc704 100644 --- a/lib/asn1c/ngap/NGAP_HandoverSuccess.c +++ b/lib/asn1c/ngap/NGAP_HandoverSuccess.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_HandoverSuccess_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverSuccess, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P40, + &asn_DEF_NGAP_ProtocolIE_Container_9574P40, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_HandoverSuccess.h b/lib/asn1c/ngap/NGAP_HandoverSuccess.h index e9699d700..5bc4547f7 100644 --- a/lib/asn1c/ngap/NGAP_HandoverSuccess.h +++ b/lib/asn1c/ngap/NGAP_HandoverSuccess.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_HandoverSuccess */ typedef struct NGAP_HandoverSuccess { - NGAP_ProtocolIE_Container_9520P40_t protocolIEs; + NGAP_ProtocolIE_Container_9574P40_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_HandoverType.c b/lib/asn1c/ngap/NGAP_HandoverType.c index e3101d719..a53707f8e 100644 --- a/lib/asn1c/ngap/NGAP_HandoverType.c +++ b/lib/asn1c/ngap/NGAP_HandoverType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_HandoverType.h b/lib/asn1c/ngap/NGAP_HandoverType.h index 03d477bf1..0adcb2786 100644 --- a/lib/asn1c/ngap/NGAP_HandoverType.h +++ b/lib/asn1c/ngap/NGAP_HandoverType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Hysteresis.c b/lib/asn1c/ngap/NGAP_Hysteresis.c index 05edea46c..3140713c5 100644 --- a/lib/asn1c/ngap/NGAP_Hysteresis.c +++ b/lib/asn1c/ngap/NGAP_Hysteresis.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Hysteresis.h b/lib/asn1c/ngap/NGAP_Hysteresis.h index 937812d4a..091061d96 100644 --- a/lib/asn1c/ngap/NGAP_Hysteresis.h +++ b/lib/asn1c/ngap/NGAP_Hysteresis.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IAB-Authorized.c b/lib/asn1c/ngap/NGAP_IAB-Authorized.c index 4b9fd3161..591b248fa 100644 --- a/lib/asn1c/ngap/NGAP_IAB-Authorized.c +++ b/lib/asn1c/ngap/NGAP_IAB-Authorized.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IAB-Authorized.h b/lib/asn1c/ngap/NGAP_IAB-Authorized.h index deb5d9bd8..de085ffae 100644 --- a/lib/asn1c/ngap/NGAP_IAB-Authorized.h +++ b/lib/asn1c/ngap/NGAP_IAB-Authorized.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IAB-Supported.c b/lib/asn1c/ngap/NGAP_IAB-Supported.c index 03891c7a2..13d9eb88e 100644 --- a/lib/asn1c/ngap/NGAP_IAB-Supported.c +++ b/lib/asn1c/ngap/NGAP_IAB-Supported.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IAB-Supported.h b/lib/asn1c/ngap/NGAP_IAB-Supported.h index 837f7bc1f..4933a786d 100644 --- a/lib/asn1c/ngap/NGAP_IAB-Supported.h +++ b/lib/asn1c/ngap/NGAP_IAB-Supported.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IABNodeIndication.c b/lib/asn1c/ngap/NGAP_IABNodeIndication.c index 40198c744..0de98b525 100644 --- a/lib/asn1c/ngap/NGAP_IABNodeIndication.c +++ b/lib/asn1c/ngap/NGAP_IABNodeIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IABNodeIndication.h b/lib/asn1c/ngap/NGAP_IABNodeIndication.h index cd8b35c06..ee946ab6b 100644 --- a/lib/asn1c/ngap/NGAP_IABNodeIndication.h +++ b/lib/asn1c/ngap/NGAP_IABNodeIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IMSVoiceSupportIndicator.c b/lib/asn1c/ngap/NGAP_IMSVoiceSupportIndicator.c index 2af061d66..b984b2f3d 100644 --- a/lib/asn1c/ngap/NGAP_IMSVoiceSupportIndicator.c +++ b/lib/asn1c/ngap/NGAP_IMSVoiceSupportIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IMSVoiceSupportIndicator.h b/lib/asn1c/ngap/NGAP_IMSVoiceSupportIndicator.h index 65da591e3..a3776391c 100644 --- a/lib/asn1c/ngap/NGAP_IMSVoiceSupportIndicator.h +++ b/lib/asn1c/ngap/NGAP_IMSVoiceSupportIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ImmediateMDTNr.c b/lib/asn1c/ngap/NGAP_ImmediateMDTNr.c index de84d96d8..41663ca5f 100644 --- a/lib/asn1c/ngap/NGAP_ImmediateMDTNr.c +++ b/lib/asn1c/ngap/NGAP_ImmediateMDTNr.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -191,7 +191,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ImmediateMDTNr_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ImmediateMDTNr, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (10 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P102, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P102, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ImmediateMDTNr.h b/lib/asn1c/ngap/NGAP_ImmediateMDTNr.h index 61e9db63e..124bbdc70 100644 --- a/lib/asn1c/ngap/NGAP_ImmediateMDTNr.h +++ b/lib/asn1c/ngap/NGAP_ImmediateMDTNr.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IndexToRFSP.c b/lib/asn1c/ngap/NGAP_IndexToRFSP.c index 9b25814a4..ab28a6abe 100644 --- a/lib/asn1c/ngap/NGAP_IndexToRFSP.c +++ b/lib/asn1c/ngap/NGAP_IndexToRFSP.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IndexToRFSP.h b/lib/asn1c/ngap/NGAP_IndexToRFSP.h index 21d5f7c8a..cbbe20312 100644 --- a/lib/asn1c/ngap/NGAP_IndexToRFSP.h +++ b/lib/asn1c/ngap/NGAP_IndexToRFSP.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_InfoOnRecommendedCellsAndRANNodesForPaging.c b/lib/asn1c/ngap/NGAP_InfoOnRecommendedCellsAndRANNodesForPaging.c index 45c474fed..c3108bb74 100644 --- a/lib/asn1c/ngap/NGAP_InfoOnRecommendedCellsAndRANNodesForPaging.c +++ b/lib/asn1c/ngap/NGAP_InfoOnRecommendedCellsAndRANNodesForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_InfoOnRecommendedCellsAndRANNodesForPaging { ATF_POINTER, 1, offsetof(struct NGAP_InfoOnRecommendedCellsAndRANNodesForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P101, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P101, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_InfoOnRecommendedCellsAndRANNodesForPaging.h b/lib/asn1c/ngap/NGAP_InfoOnRecommendedCellsAndRANNodesForPaging.h index 7c0e241c9..4dd284286 100644 --- a/lib/asn1c/ngap/NGAP_InfoOnRecommendedCellsAndRANNodesForPaging.h +++ b/lib/asn1c/ngap/NGAP_InfoOnRecommendedCellsAndRANNodesForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_InitialContextSetupFailure.c b/lib/asn1c/ngap/NGAP_InitialContextSetupFailure.c index 8700e784a..bac459200 100644 --- a/lib/asn1c/ngap/NGAP_InitialContextSetupFailure.c +++ b/lib/asn1c/ngap/NGAP_InitialContextSetupFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_InitialContextSetupFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_InitialContextSetupFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P11, + &asn_DEF_NGAP_ProtocolIE_Container_9574P11, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_InitialContextSetupFailure.h b/lib/asn1c/ngap/NGAP_InitialContextSetupFailure.h index 10131767d..fadcd98b6 100644 --- a/lib/asn1c/ngap/NGAP_InitialContextSetupFailure.h +++ b/lib/asn1c/ngap/NGAP_InitialContextSetupFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_InitialContextSetupFailure */ typedef struct NGAP_InitialContextSetupFailure { - NGAP_ProtocolIE_Container_9520P11_t protocolIEs; + NGAP_ProtocolIE_Container_9574P11_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_InitialContextSetupRequest.c b/lib/asn1c/ngap/NGAP_InitialContextSetupRequest.c index 14f8944d1..4b210586b 100644 --- a/lib/asn1c/ngap/NGAP_InitialContextSetupRequest.c +++ b/lib/asn1c/ngap/NGAP_InitialContextSetupRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_InitialContextSetupRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_InitialContextSetupRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P9, + &asn_DEF_NGAP_ProtocolIE_Container_9574P9, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_InitialContextSetupRequest.h b/lib/asn1c/ngap/NGAP_InitialContextSetupRequest.h index 84a349ed4..7dc7b11d8 100644 --- a/lib/asn1c/ngap/NGAP_InitialContextSetupRequest.h +++ b/lib/asn1c/ngap/NGAP_InitialContextSetupRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_InitialContextSetupRequest */ typedef struct NGAP_InitialContextSetupRequest { - NGAP_ProtocolIE_Container_9520P9_t protocolIEs; + NGAP_ProtocolIE_Container_9574P9_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_InitialContextSetupResponse.c b/lib/asn1c/ngap/NGAP_InitialContextSetupResponse.c index b705853bc..fc97567bd 100644 --- a/lib/asn1c/ngap/NGAP_InitialContextSetupResponse.c +++ b/lib/asn1c/ngap/NGAP_InitialContextSetupResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_InitialContextSetupResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_InitialContextSetupResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P10, + &asn_DEF_NGAP_ProtocolIE_Container_9574P10, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_InitialContextSetupResponse.h b/lib/asn1c/ngap/NGAP_InitialContextSetupResponse.h index 63248f23d..376d469e4 100644 --- a/lib/asn1c/ngap/NGAP_InitialContextSetupResponse.h +++ b/lib/asn1c/ngap/NGAP_InitialContextSetupResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_InitialContextSetupResponse */ typedef struct NGAP_InitialContextSetupResponse { - NGAP_ProtocolIE_Container_9520P10_t protocolIEs; + NGAP_ProtocolIE_Container_9574P10_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_InitialUEMessage.c b/lib/asn1c/ngap/NGAP_InitialUEMessage.c index d5a39bc95..66ee93da8 100644 --- a/lib/asn1c/ngap/NGAP_InitialUEMessage.c +++ b/lib/asn1c/ngap/NGAP_InitialUEMessage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_InitialUEMessage_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_InitialUEMessage, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P46, + &asn_DEF_NGAP_ProtocolIE_Container_9574P46, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_InitialUEMessage.h b/lib/asn1c/ngap/NGAP_InitialUEMessage.h index fbc55715f..580e734d5 100644 --- a/lib/asn1c/ngap/NGAP_InitialUEMessage.h +++ b/lib/asn1c/ngap/NGAP_InitialUEMessage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_InitialUEMessage */ typedef struct NGAP_InitialUEMessage { - NGAP_ProtocolIE_Container_9520P46_t protocolIEs; + NGAP_ProtocolIE_Container_9574P46_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_InitiatingMessage.c b/lib/asn1c/ngap/NGAP_InitiatingMessage.c index 7cb964084..041e9730a 100644 --- a/lib/asn1c/ngap/NGAP_InitiatingMessage.c +++ b/lib/asn1c/ngap/NGAP_InitiatingMessage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Descriptions" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_InitiatingMessage.h b/lib/asn1c/ngap/NGAP_InitiatingMessage.h index 668aff4f0..46032ecef 100644 --- a/lib/asn1c/ngap/NGAP_InitiatingMessage.h +++ b/lib/asn1c/ngap/NGAP_InitiatingMessage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Descriptions" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntegrityProtectionIndication.c b/lib/asn1c/ngap/NGAP_IntegrityProtectionIndication.c index 30e5cd050..18b6e3709 100644 --- a/lib/asn1c/ngap/NGAP_IntegrityProtectionIndication.c +++ b/lib/asn1c/ngap/NGAP_IntegrityProtectionIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntegrityProtectionIndication.h b/lib/asn1c/ngap/NGAP_IntegrityProtectionIndication.h index 3113f7ab6..f8e3e57f7 100644 --- a/lib/asn1c/ngap/NGAP_IntegrityProtectionIndication.h +++ b/lib/asn1c/ngap/NGAP_IntegrityProtectionIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntegrityProtectionResult.c b/lib/asn1c/ngap/NGAP_IntegrityProtectionResult.c index 42057c68b..ea3e26269 100644 --- a/lib/asn1c/ngap/NGAP_IntegrityProtectionResult.c +++ b/lib/asn1c/ngap/NGAP_IntegrityProtectionResult.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntegrityProtectionResult.h b/lib/asn1c/ngap/NGAP_IntegrityProtectionResult.h index a9ecac864..876121d45 100644 --- a/lib/asn1c/ngap/NGAP_IntegrityProtectionResult.h +++ b/lib/asn1c/ngap/NGAP_IntegrityProtectionResult.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntendedNumberOfPagingAttempts.c b/lib/asn1c/ngap/NGAP_IntendedNumberOfPagingAttempts.c index a882f81db..6690a24e0 100644 --- a/lib/asn1c/ngap/NGAP_IntendedNumberOfPagingAttempts.c +++ b/lib/asn1c/ngap/NGAP_IntendedNumberOfPagingAttempts.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntendedNumberOfPagingAttempts.h b/lib/asn1c/ngap/NGAP_IntendedNumberOfPagingAttempts.h index f39c61761..3772465e6 100644 --- a/lib/asn1c/ngap/NGAP_IntendedNumberOfPagingAttempts.h +++ b/lib/asn1c/ngap/NGAP_IntendedNumberOfPagingAttempts.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_InterSystemFailureIndication.c b/lib/asn1c/ngap/NGAP_InterSystemFailureIndication.c index 84c46c28a..6cba0c62e 100644 --- a/lib/asn1c/ngap/NGAP_InterSystemFailureIndication.c +++ b/lib/asn1c/ngap/NGAP_InterSystemFailureIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -30,7 +30,7 @@ asn_TYPE_member_t asn_MBR_NGAP_InterSystemFailureIndication_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_InterSystemFailureIndication, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P103, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P103, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_InterSystemFailureIndication.h b/lib/asn1c/ngap/NGAP_InterSystemFailureIndication.h index 90db64ac0..615bab2cc 100644 --- a/lib/asn1c/ngap/NGAP_InterSystemFailureIndication.h +++ b/lib/asn1c/ngap/NGAP_InterSystemFailureIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_InterSystemHOReport.c b/lib/asn1c/ngap/NGAP_InterSystemHOReport.c index ba936515d..c00ddf3ec 100644 --- a/lib/asn1c/ngap/NGAP_InterSystemHOReport.c +++ b/lib/asn1c/ngap/NGAP_InterSystemHOReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_InterSystemHOReport_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_InterSystemHOReport, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P107, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P107, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_InterSystemHOReport.h b/lib/asn1c/ngap/NGAP_InterSystemHOReport.h index d3f7474b4..5d78ba3d3 100644 --- a/lib/asn1c/ngap/NGAP_InterSystemHOReport.h +++ b/lib/asn1c/ngap/NGAP_InterSystemHOReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_InterSystemHandoverReportType.c b/lib/asn1c/ngap/NGAP_InterSystemHandoverReportType.c index bb875a2d4..8386b6c07 100644 --- a/lib/asn1c/ngap/NGAP_InterSystemHandoverReportType.c +++ b/lib/asn1c/ngap/NGAP_InterSystemHandoverReportType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_InterSystemHandoverReportType_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_InterSystemHandoverReportType, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_InterSystemHandoverReportType.h b/lib/asn1c/ngap/NGAP_InterSystemHandoverReportType.h index 49c8ff06a..67140dae2 100644 --- a/lib/asn1c/ngap/NGAP_InterSystemHandoverReportType.h +++ b/lib/asn1c/ngap/NGAP_InterSystemHandoverReportType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_InterfacesToTrace.c b/lib/asn1c/ngap/NGAP_InterfacesToTrace.c index cc0debca8..68d1bc943 100644 --- a/lib/asn1c/ngap/NGAP_InterfacesToTrace.c +++ b/lib/asn1c/ngap/NGAP_InterfacesToTrace.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_InterfacesToTrace.h b/lib/asn1c/ngap/NGAP_InterfacesToTrace.h index b27597ed5..6030e2619 100644 --- a/lib/asn1c/ngap/NGAP_InterfacesToTrace.h +++ b/lib/asn1c/ngap/NGAP_InterfacesToTrace.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONConfigurationTransfer.c b/lib/asn1c/ngap/NGAP_IntersystemSONConfigurationTransfer.c index dcef4327c..074f5f805 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONConfigurationTransfer.c +++ b/lib/asn1c/ngap/NGAP_IntersystemSONConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_IntersystemSONConfigurationTransfer_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_IntersystemSONConfigurationTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P104, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P104, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONConfigurationTransfer.h b/lib/asn1c/ngap/NGAP_IntersystemSONConfigurationTransfer.h index 73dd5fa86..bde0fc0af 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONConfigurationTransfer.h +++ b/lib/asn1c/ngap/NGAP_IntersystemSONConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONInformation.c b/lib/asn1c/ngap/NGAP_IntersystemSONInformation.c index ce6a9f0af..66d43aade 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONInformation.c +++ b/lib/asn1c/ngap/NGAP_IntersystemSONInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -37,7 +37,7 @@ asn_TYPE_member_t asn_MBR_NGAP_IntersystemSONInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_IntersystemSONInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONInformation.h b/lib/asn1c/ngap/NGAP_IntersystemSONInformation.h index 3cef2a66d..4d070aa5c 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONInformation.h +++ b/lib/asn1c/ngap/NGAP_IntersystemSONInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONInformationReport.c b/lib/asn1c/ngap/NGAP_IntersystemSONInformationReport.c index 81b816b31..69ce3059f 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONInformationReport.c +++ b/lib/asn1c/ngap/NGAP_IntersystemSONInformationReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_IntersystemSONInformationReport_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_IntersystemSONInformationReport, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONInformationReport.h b/lib/asn1c/ngap/NGAP_IntersystemSONInformationReport.h index 39fc9e400..dc4c1317d 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONInformationReport.h +++ b/lib/asn1c/ngap/NGAP_IntersystemSONInformationReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONNGRANnodeID.c b/lib/asn1c/ngap/NGAP_IntersystemSONNGRANnodeID.c index 101367a19..3b6a77b6e 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONNGRANnodeID.c +++ b/lib/asn1c/ngap/NGAP_IntersystemSONNGRANnodeID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_IntersystemSONNGRANnodeID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_IntersystemSONNGRANnodeID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P106, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P106, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONNGRANnodeID.h b/lib/asn1c/ngap/NGAP_IntersystemSONNGRANnodeID.h index 838d1cda7..f13462724 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONNGRANnodeID.h +++ b/lib/asn1c/ngap/NGAP_IntersystemSONNGRANnodeID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONTransferType.c b/lib/asn1c/ngap/NGAP_IntersystemSONTransferType.c index a7d7d4339..26b4444ac 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONTransferType.c +++ b/lib/asn1c/ngap/NGAP_IntersystemSONTransferType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_IntersystemSONTransferType_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_IntersystemSONTransferType, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONTransferType.h b/lib/asn1c/ngap/NGAP_IntersystemSONTransferType.h index 9782212c1..de2c1cf86 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONTransferType.h +++ b/lib/asn1c/ngap/NGAP_IntersystemSONTransferType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONeNBID.c b/lib/asn1c/ngap/NGAP_IntersystemSONeNBID.c index baf8c4803..e43ebea46 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONeNBID.c +++ b/lib/asn1c/ngap/NGAP_IntersystemSONeNBID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_IntersystemSONeNBID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_IntersystemSONeNBID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P105, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P105, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_IntersystemSONeNBID.h b/lib/asn1c/ngap/NGAP_IntersystemSONeNBID.h index 6e32fbf19..a8effd06b 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemSONeNBID.h +++ b/lib/asn1c/ngap/NGAP_IntersystemSONeNBID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_IntersystemUnnecessaryHO.c b/lib/asn1c/ngap/NGAP_IntersystemUnnecessaryHO.c index d2dd59131..8d0694411 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemUnnecessaryHO.c +++ b/lib/asn1c/ngap/NGAP_IntersystemUnnecessaryHO.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -138,7 +138,7 @@ asn_TYPE_member_t asn_MBR_NGAP_IntersystemUnnecessaryHO_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_IntersystemUnnecessaryHO, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P108, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P108, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_IntersystemUnnecessaryHO.h b/lib/asn1c/ngap/NGAP_IntersystemUnnecessaryHO.h index 0541adc96..86924eb7e 100644 --- a/lib/asn1c/ngap/NGAP_IntersystemUnnecessaryHO.h +++ b/lib/asn1c/ngap/NGAP_IntersystemUnnecessaryHO.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LAC.c b/lib/asn1c/ngap/NGAP_LAC.c index abafe2181..59941716d 100644 --- a/lib/asn1c/ngap/NGAP_LAC.c +++ b/lib/asn1c/ngap/NGAP_LAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LAC.h b/lib/asn1c/ngap/NGAP_LAC.h index 07adfaec9..4f064f7ff 100644 --- a/lib/asn1c/ngap/NGAP_LAC.h +++ b/lib/asn1c/ngap/NGAP_LAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LAI.c b/lib/asn1c/ngap/NGAP_LAI.c index 41db4f725..5dbafac6c 100644 --- a/lib/asn1c/ngap/NGAP_LAI.c +++ b/lib/asn1c/ngap/NGAP_LAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LAI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_LAI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P109, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P109, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LAI.h b/lib/asn1c/ngap/NGAP_LAI.h index 8a3d62686..af9e2edde 100644 --- a/lib/asn1c/ngap/NGAP_LAI.h +++ b/lib/asn1c/ngap/NGAP_LAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LTEM-Indication.c b/lib/asn1c/ngap/NGAP_LTEM-Indication.c index 5e3cbd669..561641823 100644 --- a/lib/asn1c/ngap/NGAP_LTEM-Indication.c +++ b/lib/asn1c/ngap/NGAP_LTEM-Indication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LTEM-Indication.h b/lib/asn1c/ngap/NGAP_LTEM-Indication.h index 543e37b04..2688aa9dd 100644 --- a/lib/asn1c/ngap/NGAP_LTEM-Indication.h +++ b/lib/asn1c/ngap/NGAP_LTEM-Indication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LTEUERLFReportContainer.c b/lib/asn1c/ngap/NGAP_LTEUERLFReportContainer.c index 2c4016899..76b01e427 100644 --- a/lib/asn1c/ngap/NGAP_LTEUERLFReportContainer.c +++ b/lib/asn1c/ngap/NGAP_LTEUERLFReportContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LTEUERLFReportContainer.h b/lib/asn1c/ngap/NGAP_LTEUERLFReportContainer.h index 34a1b5437..85fbe9681 100644 --- a/lib/asn1c/ngap/NGAP_LTEUERLFReportContainer.h +++ b/lib/asn1c/ngap/NGAP_LTEUERLFReportContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LTEUESidelinkAggregateMaximumBitrate.c b/lib/asn1c/ngap/NGAP_LTEUESidelinkAggregateMaximumBitrate.c index a0280de95..2053e64ea 100644 --- a/lib/asn1c/ngap/NGAP_LTEUESidelinkAggregateMaximumBitrate.c +++ b/lib/asn1c/ngap/NGAP_LTEUESidelinkAggregateMaximumBitrate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_LTEUESidelinkAggregateMaximumBitrate_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_LTEUESidelinkAggregateMaximumBitrate, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P115, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P115, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LTEUESidelinkAggregateMaximumBitrate.h b/lib/asn1c/ngap/NGAP_LTEUESidelinkAggregateMaximumBitrate.h index 419a1b115..6f39e8527 100644 --- a/lib/asn1c/ngap/NGAP_LTEUESidelinkAggregateMaximumBitrate.h +++ b/lib/asn1c/ngap/NGAP_LTEUESidelinkAggregateMaximumBitrate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LTEV2XServicesAuthorized.c b/lib/asn1c/ngap/NGAP_LTEV2XServicesAuthorized.c index cddab6719..d7b4a7806 100644 --- a/lib/asn1c/ngap/NGAP_LTEV2XServicesAuthorized.c +++ b/lib/asn1c/ngap/NGAP_LTEV2XServicesAuthorized.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_LTEV2XServicesAuthorized_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_LTEV2XServicesAuthorized, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P114, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P114, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LTEV2XServicesAuthorized.h b/lib/asn1c/ngap/NGAP_LTEV2XServicesAuthorized.h index 3f306e23f..8d0608a1b 100644 --- a/lib/asn1c/ngap/NGAP_LTEV2XServicesAuthorized.h +++ b/lib/asn1c/ngap/NGAP_LTEV2XServicesAuthorized.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedCellInformation.c b/lib/asn1c/ngap/NGAP_LastVisitedCellInformation.c index 775591367..e3997f6d6 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedCellInformation.c +++ b/lib/asn1c/ngap/NGAP_LastVisitedCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -88,7 +88,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LastVisitedCellInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_LastVisitedCellInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LastVisitedCellInformation.h b/lib/asn1c/ngap/NGAP_LastVisitedCellInformation.h index db508b8f2..f179981e3 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedCellInformation.h +++ b/lib/asn1c/ngap/NGAP_LastVisitedCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedCellItem.c b/lib/asn1c/ngap/NGAP_LastVisitedCellItem.c index ad989bf8d..435315077 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedCellItem.c +++ b/lib/asn1c/ngap/NGAP_LastVisitedCellItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LastVisitedCellItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_LastVisitedCellItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P110, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P110, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LastVisitedCellItem.h b/lib/asn1c/ngap/NGAP_LastVisitedCellItem.h index 0dfbef0d6..1b5515bc8 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedCellItem.h +++ b/lib/asn1c/ngap/NGAP_LastVisitedCellItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedEUTRANCellInformation.c b/lib/asn1c/ngap/NGAP_LastVisitedEUTRANCellInformation.c index 669f39c44..e9c34458a 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedEUTRANCellInformation.c +++ b/lib/asn1c/ngap/NGAP_LastVisitedEUTRANCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedEUTRANCellInformation.h b/lib/asn1c/ngap/NGAP_LastVisitedEUTRANCellInformation.h index 90f416707..ccd22d426 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedEUTRANCellInformation.h +++ b/lib/asn1c/ngap/NGAP_LastVisitedEUTRANCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedGERANCellInformation.c b/lib/asn1c/ngap/NGAP_LastVisitedGERANCellInformation.c index f726b2536..de3458505 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedGERANCellInformation.c +++ b/lib/asn1c/ngap/NGAP_LastVisitedGERANCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedGERANCellInformation.h b/lib/asn1c/ngap/NGAP_LastVisitedGERANCellInformation.h index e0d5500b5..06076de08 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedGERANCellInformation.h +++ b/lib/asn1c/ngap/NGAP_LastVisitedGERANCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedNGRANCellInformation.c b/lib/asn1c/ngap/NGAP_LastVisitedNGRANCellInformation.c index 36b1fe72d..d8be22175 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedNGRANCellInformation.c +++ b/lib/asn1c/ngap/NGAP_LastVisitedNGRANCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -98,7 +98,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LastVisitedNGRANCellInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_LastVisitedNGRANCellInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P111, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P111, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LastVisitedNGRANCellInformation.h b/lib/asn1c/ngap/NGAP_LastVisitedNGRANCellInformation.h index 6f4ed326c..3ddcaea87 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedNGRANCellInformation.h +++ b/lib/asn1c/ngap/NGAP_LastVisitedNGRANCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedUTRANCellInformation.c b/lib/asn1c/ngap/NGAP_LastVisitedUTRANCellInformation.c index 75ab2580a..bf2ab8a47 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedUTRANCellInformation.c +++ b/lib/asn1c/ngap/NGAP_LastVisitedUTRANCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LastVisitedUTRANCellInformation.h b/lib/asn1c/ngap/NGAP_LastVisitedUTRANCellInformation.h index 28bcb3e38..6ea4f3fd3 100644 --- a/lib/asn1c/ngap/NGAP_LastVisitedUTRANCellInformation.h +++ b/lib/asn1c/ngap/NGAP_LastVisitedUTRANCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LineType.c b/lib/asn1c/ngap/NGAP_LineType.c index 727df9c74..fca70529e 100644 --- a/lib/asn1c/ngap/NGAP_LineType.c +++ b/lib/asn1c/ngap/NGAP_LineType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LineType.h b/lib/asn1c/ngap/NGAP_LineType.h index f6aa484f6..591d24f0d 100644 --- a/lib/asn1c/ngap/NGAP_LineType.h +++ b/lib/asn1c/ngap/NGAP_LineType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Links-to-log.c b/lib/asn1c/ngap/NGAP_Links-to-log.c index 1b35ae9d7..95fc3dc53 100644 --- a/lib/asn1c/ngap/NGAP_Links-to-log.c +++ b/lib/asn1c/ngap/NGAP_Links-to-log.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Links-to-log.h b/lib/asn1c/ngap/NGAP_Links-to-log.h index 69eebe798..38cc0df15 100644 --- a/lib/asn1c/ngap/NGAP_Links-to-log.h +++ b/lib/asn1c/ngap/NGAP_Links-to-log.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LocationReport.c b/lib/asn1c/ngap/NGAP_LocationReport.c index ad02fc494..8510d923d 100644 --- a/lib/asn1c/ngap/NGAP_LocationReport.c +++ b/lib/asn1c/ngap/NGAP_LocationReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LocationReport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_LocationReport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P84, + &asn_DEF_NGAP_ProtocolIE_Container_9574P84, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LocationReport.h b/lib/asn1c/ngap/NGAP_LocationReport.h index 4967aa7b1..daf8dc578 100644 --- a/lib/asn1c/ngap/NGAP_LocationReport.h +++ b/lib/asn1c/ngap/NGAP_LocationReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_LocationReport */ typedef struct NGAP_LocationReport { - NGAP_ProtocolIE_Container_9520P84_t protocolIEs; + NGAP_ProtocolIE_Container_9574P84_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_LocationReportingAdditionalInfo.c b/lib/asn1c/ngap/NGAP_LocationReportingAdditionalInfo.c index 710dd941a..c862a4f0a 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingAdditionalInfo.c +++ b/lib/asn1c/ngap/NGAP_LocationReportingAdditionalInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LocationReportingAdditionalInfo.h b/lib/asn1c/ngap/NGAP_LocationReportingAdditionalInfo.h index f447b7385..7efd86fb0 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingAdditionalInfo.h +++ b/lib/asn1c/ngap/NGAP_LocationReportingAdditionalInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LocationReportingControl.c b/lib/asn1c/ngap/NGAP_LocationReportingControl.c index 881427eec..45aa35893 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingControl.c +++ b/lib/asn1c/ngap/NGAP_LocationReportingControl.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LocationReportingControl_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_LocationReportingControl, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P82, + &asn_DEF_NGAP_ProtocolIE_Container_9574P82, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LocationReportingControl.h b/lib/asn1c/ngap/NGAP_LocationReportingControl.h index 50707bcf8..f7a61ca00 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingControl.h +++ b/lib/asn1c/ngap/NGAP_LocationReportingControl.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_LocationReportingControl */ typedef struct NGAP_LocationReportingControl { - NGAP_ProtocolIE_Container_9520P82_t protocolIEs; + NGAP_ProtocolIE_Container_9574P82_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_LocationReportingFailureIndication.c b/lib/asn1c/ngap/NGAP_LocationReportingFailureIndication.c index bfe6b507a..0e291300f 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingFailureIndication.c +++ b/lib/asn1c/ngap/NGAP_LocationReportingFailureIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LocationReportingFailureIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_LocationReportingFailureIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P83, + &asn_DEF_NGAP_ProtocolIE_Container_9574P83, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LocationReportingFailureIndication.h b/lib/asn1c/ngap/NGAP_LocationReportingFailureIndication.h index 1be451a2d..a97878a86 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingFailureIndication.h +++ b/lib/asn1c/ngap/NGAP_LocationReportingFailureIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_LocationReportingFailureIndication */ typedef struct NGAP_LocationReportingFailureIndication { - NGAP_ProtocolIE_Container_9520P83_t protocolIEs; + NGAP_ProtocolIE_Container_9574P83_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_LocationReportingReferenceID.c b/lib/asn1c/ngap/NGAP_LocationReportingReferenceID.c index 413ccb38c..3d52d51af 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingReferenceID.c +++ b/lib/asn1c/ngap/NGAP_LocationReportingReferenceID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LocationReportingReferenceID.h b/lib/asn1c/ngap/NGAP_LocationReportingReferenceID.h index b6b7c4536..aaeb8e2dd 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingReferenceID.h +++ b/lib/asn1c/ngap/NGAP_LocationReportingReferenceID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LocationReportingRequestType.c b/lib/asn1c/ngap/NGAP_LocationReportingRequestType.c index a3b17b5c9..97d72484d 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingRequestType.c +++ b/lib/asn1c/ngap/NGAP_LocationReportingRequestType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -81,7 +81,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_LocationReportingRequestType_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_LocationReportingRequestType, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P112, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P112, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LocationReportingRequestType.h b/lib/asn1c/ngap/NGAP_LocationReportingRequestType.h index 34b3337d7..e99175a84 100644 --- a/lib/asn1c/ngap/NGAP_LocationReportingRequestType.h +++ b/lib/asn1c/ngap/NGAP_LocationReportingRequestType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LoggedMDTNr.c b/lib/asn1c/ngap/NGAP_LoggedMDTNr.c index 18bfb78ca..5469f712a 100644 --- a/lib/asn1c/ngap/NGAP_LoggedMDTNr.c +++ b/lib/asn1c/ngap/NGAP_LoggedMDTNr.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -135,7 +135,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LoggedMDTNr_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_LoggedMDTNr, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (7 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P113, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P113, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LoggedMDTNr.h b/lib/asn1c/ngap/NGAP_LoggedMDTNr.h index 6b4d14eaf..e1c5344a5 100644 --- a/lib/asn1c/ngap/NGAP_LoggedMDTNr.h +++ b/lib/asn1c/ngap/NGAP_LoggedMDTNr.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LoggedMDTTrigger.c b/lib/asn1c/ngap/NGAP_LoggedMDTTrigger.c index 99d6efea2..1960d6c1b 100644 --- a/lib/asn1c/ngap/NGAP_LoggedMDTTrigger.c +++ b/lib/asn1c/ngap/NGAP_LoggedMDTTrigger.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -54,7 +54,7 @@ asn_TYPE_member_t asn_MBR_NGAP_LoggedMDTTrigger_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_LoggedMDTTrigger, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_LoggedMDTTrigger.h b/lib/asn1c/ngap/NGAP_LoggedMDTTrigger.h index afd37c181..f137ba10b 100644 --- a/lib/asn1c/ngap/NGAP_LoggedMDTTrigger.h +++ b/lib/asn1c/ngap/NGAP_LoggedMDTTrigger.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LoggingDuration.c b/lib/asn1c/ngap/NGAP_LoggingDuration.c index 5b7c336f2..b74daa4e2 100644 --- a/lib/asn1c/ngap/NGAP_LoggingDuration.c +++ b/lib/asn1c/ngap/NGAP_LoggingDuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LoggingDuration.h b/lib/asn1c/ngap/NGAP_LoggingDuration.h index b8eafa1fc..63aeb0bd0 100644 --- a/lib/asn1c/ngap/NGAP_LoggingDuration.h +++ b/lib/asn1c/ngap/NGAP_LoggingDuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LoggingInterval.c b/lib/asn1c/ngap/NGAP_LoggingInterval.c index 78abdd961..9d3496cd8 100644 --- a/lib/asn1c/ngap/NGAP_LoggingInterval.c +++ b/lib/asn1c/ngap/NGAP_LoggingInterval.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_LoggingInterval.h b/lib/asn1c/ngap/NGAP_LoggingInterval.h index 41bf28975..b3196ac97 100644 --- a/lib/asn1c/ngap/NGAP_LoggingInterval.h +++ b/lib/asn1c/ngap/NGAP_LoggingInterval.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M1Configuration.c b/lib/asn1c/ngap/NGAP_M1Configuration.c index 8d60e3980..5d45c9eac 100644 --- a/lib/asn1c/ngap/NGAP_M1Configuration.c +++ b/lib/asn1c/ngap/NGAP_M1Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -65,7 +65,7 @@ asn_TYPE_member_t asn_MBR_NGAP_M1Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_M1Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P120, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P120, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_M1Configuration.h b/lib/asn1c/ngap/NGAP_M1Configuration.h index b94169b83..031206f04 100644 --- a/lib/asn1c/ngap/NGAP_M1Configuration.h +++ b/lib/asn1c/ngap/NGAP_M1Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M1PeriodicReporting.c b/lib/asn1c/ngap/NGAP_M1PeriodicReporting.c index 14b59d0c3..d206135e1 100644 --- a/lib/asn1c/ngap/NGAP_M1PeriodicReporting.c +++ b/lib/asn1c/ngap/NGAP_M1PeriodicReporting.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_M1PeriodicReporting_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_M1PeriodicReporting, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P122, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P122, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_M1PeriodicReporting.h b/lib/asn1c/ngap/NGAP_M1PeriodicReporting.h index d5f45c37a..6b6e81a21 100644 --- a/lib/asn1c/ngap/NGAP_M1PeriodicReporting.h +++ b/lib/asn1c/ngap/NGAP_M1PeriodicReporting.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M1ReportingTrigger.c b/lib/asn1c/ngap/NGAP_M1ReportingTrigger.c index 8aebfdf11..a799949be 100644 --- a/lib/asn1c/ngap/NGAP_M1ReportingTrigger.c +++ b/lib/asn1c/ngap/NGAP_M1ReportingTrigger.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M1ReportingTrigger.h b/lib/asn1c/ngap/NGAP_M1ReportingTrigger.h index dc98a9467..4402c6ba1 100644 --- a/lib/asn1c/ngap/NGAP_M1ReportingTrigger.h +++ b/lib/asn1c/ngap/NGAP_M1ReportingTrigger.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M1ThresholdEventA2.c b/lib/asn1c/ngap/NGAP_M1ThresholdEventA2.c index 6b0f37fc5..93ee0cc01 100644 --- a/lib/asn1c/ngap/NGAP_M1ThresholdEventA2.c +++ b/lib/asn1c/ngap/NGAP_M1ThresholdEventA2.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_M1ThresholdEventA2_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_M1ThresholdEventA2, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P121, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P121, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_M1ThresholdEventA2.h b/lib/asn1c/ngap/NGAP_M1ThresholdEventA2.h index 0e34f55f4..e084a3a05 100644 --- a/lib/asn1c/ngap/NGAP_M1ThresholdEventA2.h +++ b/lib/asn1c/ngap/NGAP_M1ThresholdEventA2.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M1ThresholdType.c b/lib/asn1c/ngap/NGAP_M1ThresholdType.c index 1bb83904a..4930c07ba 100644 --- a/lib/asn1c/ngap/NGAP_M1ThresholdType.c +++ b/lib/asn1c/ngap/NGAP_M1ThresholdType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -70,7 +70,7 @@ asn_TYPE_member_t asn_MBR_NGAP_M1ThresholdType_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_M1ThresholdType, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_M1ThresholdType.h b/lib/asn1c/ngap/NGAP_M1ThresholdType.h index 545547774..c80e48afb 100644 --- a/lib/asn1c/ngap/NGAP_M1ThresholdType.h +++ b/lib/asn1c/ngap/NGAP_M1ThresholdType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M4Configuration.c b/lib/asn1c/ngap/NGAP_M4Configuration.c index c95880688..cad4bdf9c 100644 --- a/lib/asn1c/ngap/NGAP_M4Configuration.c +++ b/lib/asn1c/ngap/NGAP_M4Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_M4Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_M4Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P123, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P123, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_M4Configuration.h b/lib/asn1c/ngap/NGAP_M4Configuration.h index 86528907c..c0f52cf8b 100644 --- a/lib/asn1c/ngap/NGAP_M4Configuration.h +++ b/lib/asn1c/ngap/NGAP_M4Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M4period.c b/lib/asn1c/ngap/NGAP_M4period.c index 2c7263caa..f84e1f132 100644 --- a/lib/asn1c/ngap/NGAP_M4period.c +++ b/lib/asn1c/ngap/NGAP_M4period.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M4period.h b/lib/asn1c/ngap/NGAP_M4period.h index 49c912df5..bb86f9435 100644 --- a/lib/asn1c/ngap/NGAP_M4period.h +++ b/lib/asn1c/ngap/NGAP_M4period.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M5Configuration.c b/lib/asn1c/ngap/NGAP_M5Configuration.c index d37ce749c..52d9f821b 100644 --- a/lib/asn1c/ngap/NGAP_M5Configuration.c +++ b/lib/asn1c/ngap/NGAP_M5Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_M5Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_M5Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P124, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P124, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_M5Configuration.h b/lib/asn1c/ngap/NGAP_M5Configuration.h index 411c5adc4..08b1ebb26 100644 --- a/lib/asn1c/ngap/NGAP_M5Configuration.h +++ b/lib/asn1c/ngap/NGAP_M5Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M5period.c b/lib/asn1c/ngap/NGAP_M5period.c index a643d4ad8..84a819866 100644 --- a/lib/asn1c/ngap/NGAP_M5period.c +++ b/lib/asn1c/ngap/NGAP_M5period.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M5period.h b/lib/asn1c/ngap/NGAP_M5period.h index 98df0f187..e1729da6d 100644 --- a/lib/asn1c/ngap/NGAP_M5period.h +++ b/lib/asn1c/ngap/NGAP_M5period.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M6Configuration.c b/lib/asn1c/ngap/NGAP_M6Configuration.c index 1ee7dc709..fa0a15e31 100644 --- a/lib/asn1c/ngap/NGAP_M6Configuration.c +++ b/lib/asn1c/ngap/NGAP_M6Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_M6Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_M6Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P125, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P125, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_M6Configuration.h b/lib/asn1c/ngap/NGAP_M6Configuration.h index ae9b6c353..452354ea8 100644 --- a/lib/asn1c/ngap/NGAP_M6Configuration.h +++ b/lib/asn1c/ngap/NGAP_M6Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M6report-Interval.c b/lib/asn1c/ngap/NGAP_M6report-Interval.c index a411d03f6..ff70f781b 100644 --- a/lib/asn1c/ngap/NGAP_M6report-Interval.c +++ b/lib/asn1c/ngap/NGAP_M6report-Interval.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M6report-Interval.h b/lib/asn1c/ngap/NGAP_M6report-Interval.h index ec8814c47..dcfd95d35 100644 --- a/lib/asn1c/ngap/NGAP_M6report-Interval.h +++ b/lib/asn1c/ngap/NGAP_M6report-Interval.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M7Configuration.c b/lib/asn1c/ngap/NGAP_M7Configuration.c index 3884cb790..8c6f85ccb 100644 --- a/lib/asn1c/ngap/NGAP_M7Configuration.c +++ b/lib/asn1c/ngap/NGAP_M7Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_M7Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_M7Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P126, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P126, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_M7Configuration.h b/lib/asn1c/ngap/NGAP_M7Configuration.h index 46de514b0..99d46771a 100644 --- a/lib/asn1c/ngap/NGAP_M7Configuration.h +++ b/lib/asn1c/ngap/NGAP_M7Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M7period.c b/lib/asn1c/ngap/NGAP_M7period.c index 7037b4e07..a2ae2f24e 100644 --- a/lib/asn1c/ngap/NGAP_M7period.c +++ b/lib/asn1c/ngap/NGAP_M7period.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_M7period.h b/lib/asn1c/ngap/NGAP_M7period.h index 854f4bf5c..8719cfacc 100644 --- a/lib/asn1c/ngap/NGAP_M7period.h +++ b/lib/asn1c/ngap/NGAP_M7period.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDT-Activation.c b/lib/asn1c/ngap/NGAP_MDT-Activation.c index c880f5065..0c45faed5 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Activation.c +++ b/lib/asn1c/ngap/NGAP_MDT-Activation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDT-Activation.h b/lib/asn1c/ngap/NGAP_MDT-Activation.h index c169e45be..c70d28ac4 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Activation.h +++ b/lib/asn1c/ngap/NGAP_MDT-Activation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDT-Configuration-EUTRA.c b/lib/asn1c/ngap/NGAP_MDT-Configuration-EUTRA.c index c70ef94ac..f25891635 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Configuration-EUTRA.c +++ b/lib/asn1c/ngap/NGAP_MDT-Configuration-EUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -81,7 +81,7 @@ asn_TYPE_member_t asn_MBR_NGAP_MDT_Configuration_EUTRA_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_MDT_Configuration_EUTRA, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P119, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P119, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_MDT-Configuration-EUTRA.h b/lib/asn1c/ngap/NGAP_MDT-Configuration-EUTRA.h index b5eb7ce58..d9c8bd781 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Configuration-EUTRA.h +++ b/lib/asn1c/ngap/NGAP_MDT-Configuration-EUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDT-Configuration-NR.c b/lib/asn1c/ngap/NGAP_MDT-Configuration-NR.c index 3387dc7a7..a83caf822 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Configuration-NR.c +++ b/lib/asn1c/ngap/NGAP_MDT-Configuration-NR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -81,7 +81,7 @@ asn_TYPE_member_t asn_MBR_NGAP_MDT_Configuration_NR_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_MDT_Configuration_NR, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P118, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P118, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_MDT-Configuration-NR.h b/lib/asn1c/ngap/NGAP_MDT-Configuration-NR.h index 499cd1dab..263c04bb4 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Configuration-NR.h +++ b/lib/asn1c/ngap/NGAP_MDT-Configuration-NR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDT-Configuration.c b/lib/asn1c/ngap/NGAP_MDT-Configuration.c index 5983a2b76..ada62cc11 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Configuration.c +++ b/lib/asn1c/ngap/NGAP_MDT-Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -48,7 +48,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_MDT_Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_MDT_Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P117, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P117, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_MDT-Configuration.h b/lib/asn1c/ngap/NGAP_MDT-Configuration.h index 8a61718e1..477576262 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Configuration.h +++ b/lib/asn1c/ngap/NGAP_MDT-Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDT-Location-Info.c b/lib/asn1c/ngap/NGAP_MDT-Location-Info.c index 6d4726cb5..861588019 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Location-Info.c +++ b/lib/asn1c/ngap/NGAP_MDT-Location-Info.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_MDT_Location_Info_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_MDT_Location_Info, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P127, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P127, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_MDT-Location-Info.h b/lib/asn1c/ngap/NGAP_MDT-Location-Info.h index e97f7a0ab..ccefcfec5 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Location-Info.h +++ b/lib/asn1c/ngap/NGAP_MDT-Location-Info.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDT-Location-Information.c b/lib/asn1c/ngap/NGAP_MDT-Location-Information.c index d0ea6ffe0..aed670c5e 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Location-Information.c +++ b/lib/asn1c/ngap/NGAP_MDT-Location-Information.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDT-Location-Information.h b/lib/asn1c/ngap/NGAP_MDT-Location-Information.h index 7eca78d2f..fd0e04d40 100644 --- a/lib/asn1c/ngap/NGAP_MDT-Location-Information.h +++ b/lib/asn1c/ngap/NGAP_MDT-Location-Information.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDTModeEutra.c b/lib/asn1c/ngap/NGAP_MDTModeEutra.c index 593b1ebfb..ee9804a82 100644 --- a/lib/asn1c/ngap/NGAP_MDTModeEutra.c +++ b/lib/asn1c/ngap/NGAP_MDTModeEutra.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDTModeEutra.h b/lib/asn1c/ngap/NGAP_MDTModeEutra.h index ca371f0cf..1a26363d5 100644 --- a/lib/asn1c/ngap/NGAP_MDTModeEutra.h +++ b/lib/asn1c/ngap/NGAP_MDTModeEutra.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDTModeNr.c b/lib/asn1c/ngap/NGAP_MDTModeNr.c index 48a50214b..073321bc8 100644 --- a/lib/asn1c/ngap/NGAP_MDTModeNr.c +++ b/lib/asn1c/ngap/NGAP_MDTModeNr.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_MDTModeNr_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_MDTModeNr, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_MDTModeNr.h b/lib/asn1c/ngap/NGAP_MDTModeNr.h index aa0f5a09c..02c3b6f6b 100644 --- a/lib/asn1c/ngap/NGAP_MDTModeNr.h +++ b/lib/asn1c/ngap/NGAP_MDTModeNr.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDTPLMNList.c b/lib/asn1c/ngap/NGAP_MDTPLMNList.c index 07fd46c80..24004d7c4 100644 --- a/lib/asn1c/ngap/NGAP_MDTPLMNList.c +++ b/lib/asn1c/ngap/NGAP_MDTPLMNList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MDTPLMNList.h b/lib/asn1c/ngap/NGAP_MDTPLMNList.h index 016b379d2..579b2878f 100644 --- a/lib/asn1c/ngap/NGAP_MDTPLMNList.h +++ b/lib/asn1c/ngap/NGAP_MDTPLMNList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MICOModeIndication.c b/lib/asn1c/ngap/NGAP_MICOModeIndication.c index 18e4a29c7..a45819a78 100644 --- a/lib/asn1c/ngap/NGAP_MICOModeIndication.c +++ b/lib/asn1c/ngap/NGAP_MICOModeIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MICOModeIndication.h b/lib/asn1c/ngap/NGAP_MICOModeIndication.h index 5e1fa959b..57ed32711 100644 --- a/lib/asn1c/ngap/NGAP_MICOModeIndication.h +++ b/lib/asn1c/ngap/NGAP_MICOModeIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MaskedIMEISV.c b/lib/asn1c/ngap/NGAP_MaskedIMEISV.c index 2de4be568..0193b18a7 100644 --- a/lib/asn1c/ngap/NGAP_MaskedIMEISV.c +++ b/lib/asn1c/ngap/NGAP_MaskedIMEISV.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MaskedIMEISV.h b/lib/asn1c/ngap/NGAP_MaskedIMEISV.h index 8922cd924..e75d1d8bf 100644 --- a/lib/asn1c/ngap/NGAP_MaskedIMEISV.h +++ b/lib/asn1c/ngap/NGAP_MaskedIMEISV.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MaximumDataBurstVolume.c b/lib/asn1c/ngap/NGAP_MaximumDataBurstVolume.c index 04fdb7774..9b720e003 100644 --- a/lib/asn1c/ngap/NGAP_MaximumDataBurstVolume.c +++ b/lib/asn1c/ngap/NGAP_MaximumDataBurstVolume.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MaximumDataBurstVolume.h b/lib/asn1c/ngap/NGAP_MaximumDataBurstVolume.h index 2faeee3d2..96982d7ee 100644 --- a/lib/asn1c/ngap/NGAP_MaximumDataBurstVolume.h +++ b/lib/asn1c/ngap/NGAP_MaximumDataBurstVolume.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MaximumIntegrityProtectedDataRate.c b/lib/asn1c/ngap/NGAP_MaximumIntegrityProtectedDataRate.c index c75da1806..fd0a76ce4 100644 --- a/lib/asn1c/ngap/NGAP_MaximumIntegrityProtectedDataRate.c +++ b/lib/asn1c/ngap/NGAP_MaximumIntegrityProtectedDataRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MaximumIntegrityProtectedDataRate.h b/lib/asn1c/ngap/NGAP_MaximumIntegrityProtectedDataRate.h index ec81b823d..20f15804e 100644 --- a/lib/asn1c/ngap/NGAP_MaximumIntegrityProtectedDataRate.h +++ b/lib/asn1c/ngap/NGAP_MaximumIntegrityProtectedDataRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MeasurementThresholdL1LoggedMDT.c b/lib/asn1c/ngap/NGAP_MeasurementThresholdL1LoggedMDT.c index b9f8a029a..51bb74a5f 100644 --- a/lib/asn1c/ngap/NGAP_MeasurementThresholdL1LoggedMDT.c +++ b/lib/asn1c/ngap/NGAP_MeasurementThresholdL1LoggedMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -53,7 +53,7 @@ asn_TYPE_member_t asn_MBR_NGAP_MeasurementThresholdL1LoggedMDT_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_MeasurementThresholdL1LoggedMDT, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_MeasurementThresholdL1LoggedMDT.h b/lib/asn1c/ngap/NGAP_MeasurementThresholdL1LoggedMDT.h index 1c78be9bb..ee59042d1 100644 --- a/lib/asn1c/ngap/NGAP_MeasurementThresholdL1LoggedMDT.h +++ b/lib/asn1c/ngap/NGAP_MeasurementThresholdL1LoggedMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MeasurementsToActivate.c b/lib/asn1c/ngap/NGAP_MeasurementsToActivate.c index b97a82a90..4109a3463 100644 --- a/lib/asn1c/ngap/NGAP_MeasurementsToActivate.c +++ b/lib/asn1c/ngap/NGAP_MeasurementsToActivate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MeasurementsToActivate.h b/lib/asn1c/ngap/NGAP_MeasurementsToActivate.h index 1dbd9e9f4..89aa88f79 100644 --- a/lib/asn1c/ngap/NGAP_MeasurementsToActivate.h +++ b/lib/asn1c/ngap/NGAP_MeasurementsToActivate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MessageIdentifier.c b/lib/asn1c/ngap/NGAP_MessageIdentifier.c index c89a6825c..231bac6da 100644 --- a/lib/asn1c/ngap/NGAP_MessageIdentifier.c +++ b/lib/asn1c/ngap/NGAP_MessageIdentifier.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MessageIdentifier.h b/lib/asn1c/ngap/NGAP_MessageIdentifier.h index 47fa72879..ba35a44a2 100644 --- a/lib/asn1c/ngap/NGAP_MessageIdentifier.h +++ b/lib/asn1c/ngap/NGAP_MessageIdentifier.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MicoAllPLMN.c b/lib/asn1c/ngap/NGAP_MicoAllPLMN.c new file mode 100644 index 000000000..3c422cd13 --- /dev/null +++ b/lib/asn1c/ngap/NGAP_MicoAllPLMN.c @@ -0,0 +1,63 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#include "NGAP_MicoAllPLMN.h" + +/* + * This type is implemented using NativeEnumerated, + * so here we adjust the DEF accordingly. + */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +static asn_per_constraints_t asn_PER_type_NGAP_MicoAllPLMN_constr_1 CC_NOTUSED = { + { APC_CONSTRAINED | APC_EXTENSIBLE, 0, 0, 0, 0 } /* (0..0,...) */, + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +static const asn_INTEGER_enum_map_t asn_MAP_NGAP_MicoAllPLMN_value2enum_1[] = { + { 0, 4, "true" } + /* This list is extensible */ +}; +static const unsigned int asn_MAP_NGAP_MicoAllPLMN_enum2value_1[] = { + 0 /* true(0) */ + /* This list is extensible */ +}; +static const asn_INTEGER_specifics_t asn_SPC_NGAP_MicoAllPLMN_specs_1 = { + asn_MAP_NGAP_MicoAllPLMN_value2enum_1, /* "tag" => N; sorted by tag */ + asn_MAP_NGAP_MicoAllPLMN_enum2value_1, /* N => "tag"; sorted by N */ + 1, /* Number of elements in the maps */ + 2, /* Extensions before this member */ + 1, /* Strict enumeration */ + 0, /* Native long size */ + 0 +}; +static const ber_tlv_tag_t asn_DEF_NGAP_MicoAllPLMN_tags_1[] = { + (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)) +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_MicoAllPLMN = { + "MicoAllPLMN", + "MicoAllPLMN", + &asn_OP_NativeEnumerated, + asn_DEF_NGAP_MicoAllPLMN_tags_1, + sizeof(asn_DEF_NGAP_MicoAllPLMN_tags_1) + /sizeof(asn_DEF_NGAP_MicoAllPLMN_tags_1[0]), /* 1 */ + asn_DEF_NGAP_MicoAllPLMN_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_MicoAllPLMN_tags_1) + /sizeof(asn_DEF_NGAP_MicoAllPLMN_tags_1[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_type_NGAP_MicoAllPLMN_constr_1, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + NativeEnumerated_constraint + }, + 0, 0, /* Defined elsewhere */ + &asn_SPC_NGAP_MicoAllPLMN_specs_1 /* Additional specs */ +}; + diff --git a/lib/asn1c/ngap/NGAP_MicoAllPLMN.h b/lib/asn1c/ngap/NGAP_MicoAllPLMN.h new file mode 100644 index 000000000..c76f34948 --- /dev/null +++ b/lib/asn1c/ngap/NGAP_MicoAllPLMN.h @@ -0,0 +1,45 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#ifndef _NGAP_MicoAllPLMN_H_ +#define _NGAP_MicoAllPLMN_H_ + + +#include + +/* Including external dependencies */ +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* Dependencies */ +typedef enum NGAP_MicoAllPLMN { + NGAP_MicoAllPLMN_true = 0 + /* + * Enumeration is extensible + */ +} e_NGAP_MicoAllPLMN; + +/* NGAP_MicoAllPLMN */ +typedef long NGAP_MicoAllPLMN_t; + +/* Implementation */ +extern asn_TYPE_descriptor_t asn_DEF_NGAP_MicoAllPLMN; +asn_struct_free_f NGAP_MicoAllPLMN_free; +asn_struct_print_f NGAP_MicoAllPLMN_print; +asn_constr_check_f NGAP_MicoAllPLMN_constraint; +per_type_decoder_f NGAP_MicoAllPLMN_decode_aper; +per_type_encoder_f NGAP_MicoAllPLMN_encode_aper; + +#ifdef __cplusplus +} +#endif + +#endif /* _NGAP_MicoAllPLMN_H_ */ +#include diff --git a/lib/asn1c/ngap/NGAP_MobilityInformation.c b/lib/asn1c/ngap/NGAP_MobilityInformation.c index fba5cbe78..4951db647 100644 --- a/lib/asn1c/ngap/NGAP_MobilityInformation.c +++ b/lib/asn1c/ngap/NGAP_MobilityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MobilityInformation.h b/lib/asn1c/ngap/NGAP_MobilityInformation.h index 246fc476f..97c0168ea 100644 --- a/lib/asn1c/ngap/NGAP_MobilityInformation.h +++ b/lib/asn1c/ngap/NGAP_MobilityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_MobilityRestrictionList.c b/lib/asn1c/ngap/NGAP_MobilityRestrictionList.c index bf902798c..77f5d7758 100644 --- a/lib/asn1c/ngap/NGAP_MobilityRestrictionList.c +++ b/lib/asn1c/ngap/NGAP_MobilityRestrictionList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -101,7 +101,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_MobilityRestrictionList_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_MobilityRestrictionList, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P116, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P116, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_MobilityRestrictionList.h b/lib/asn1c/ngap/NGAP_MobilityRestrictionList.h index 67fcf23f5..79488eece 100644 --- a/lib/asn1c/ngap/NGAP_MobilityRestrictionList.h +++ b/lib/asn1c/ngap/NGAP_MobilityRestrictionList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_N3IWF-ID.c b/lib/asn1c/ngap/NGAP_N3IWF-ID.c index 75039cfff..9b73dd3c7 100644 --- a/lib/asn1c/ngap/NGAP_N3IWF-ID.c +++ b/lib/asn1c/ngap/NGAP_N3IWF-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_N3IWF_ID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_N3IWF_ID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_N3IWF-ID.h b/lib/asn1c/ngap/NGAP_N3IWF-ID.h index db57c7688..d4a89f270 100644 --- a/lib/asn1c/ngap/NGAP_N3IWF-ID.h +++ b/lib/asn1c/ngap/NGAP_N3IWF-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NAS-PDU.c b/lib/asn1c/ngap/NGAP_NAS-PDU.c index 2ae38fc42..ddf1c4e8c 100644 --- a/lib/asn1c/ngap/NGAP_NAS-PDU.c +++ b/lib/asn1c/ngap/NGAP_NAS-PDU.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NAS-PDU.h b/lib/asn1c/ngap/NGAP_NAS-PDU.h index 5ce0d0ad8..bfa57cf49 100644 --- a/lib/asn1c/ngap/NGAP_NAS-PDU.h +++ b/lib/asn1c/ngap/NGAP_NAS-PDU.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NASNonDeliveryIndication.c b/lib/asn1c/ngap/NGAP_NASNonDeliveryIndication.c index 25d808b58..a0b9a5f85 100644 --- a/lib/asn1c/ngap/NGAP_NASNonDeliveryIndication.c +++ b/lib/asn1c/ngap/NGAP_NASNonDeliveryIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NASNonDeliveryIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_NASNonDeliveryIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P49, + &asn_DEF_NGAP_ProtocolIE_Container_9574P49, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NASNonDeliveryIndication.h b/lib/asn1c/ngap/NGAP_NASNonDeliveryIndication.h index 16c49b53e..90f85b2e7 100644 --- a/lib/asn1c/ngap/NGAP_NASNonDeliveryIndication.h +++ b/lib/asn1c/ngap/NGAP_NASNonDeliveryIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_NASNonDeliveryIndication */ typedef struct NGAP_NASNonDeliveryIndication { - NGAP_ProtocolIE_Container_9520P49_t protocolIEs; + NGAP_ProtocolIE_Container_9574P49_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_NASSecurityParametersFromNGRAN.c b/lib/asn1c/ngap/NGAP_NASSecurityParametersFromNGRAN.c index 62637e7f6..a5f11bf3c 100644 --- a/lib/asn1c/ngap/NGAP_NASSecurityParametersFromNGRAN.c +++ b/lib/asn1c/ngap/NGAP_NASSecurityParametersFromNGRAN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NASSecurityParametersFromNGRAN.h b/lib/asn1c/ngap/NGAP_NASSecurityParametersFromNGRAN.h index b769d571c..83101c43a 100644 --- a/lib/asn1c/ngap/NGAP_NASSecurityParametersFromNGRAN.h +++ b/lib/asn1c/ngap/NGAP_NASSecurityParametersFromNGRAN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-DefaultPagingDRX.c b/lib/asn1c/ngap/NGAP_NB-IoT-DefaultPagingDRX.c index 42be42f79..6a532eca3 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-DefaultPagingDRX.c +++ b/lib/asn1c/ngap/NGAP_NB-IoT-DefaultPagingDRX.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-DefaultPagingDRX.h b/lib/asn1c/ngap/NGAP_NB-IoT-DefaultPagingDRX.h index 782aef383..dd7759df6 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-DefaultPagingDRX.h +++ b/lib/asn1c/ngap/NGAP_NB-IoT-DefaultPagingDRX.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-TimeWindow.c b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-TimeWindow.c index 7206cd725..07392410c 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-TimeWindow.c +++ b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-TimeWindow.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-TimeWindow.h b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-TimeWindow.h index d58ba1ce3..92554b5fc 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-TimeWindow.h +++ b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-TimeWindow.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXCycle.c b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXCycle.c index 4d1d2f7c8..36643d2d4 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXCycle.c +++ b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXCycle.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXCycle.h b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXCycle.h index 275a79929..1c19841cc 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXCycle.h +++ b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXCycle.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXInfo.c b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXInfo.c index efbe943d4..553cb62e8 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXInfo.c +++ b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_NB_IoT_Paging_eDRXInfo_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_NB_IoT_Paging_eDRXInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P128, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P128, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXInfo.h b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXInfo.h index 23758c6f4..572e51670 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXInfo.h +++ b/lib/asn1c/ngap/NGAP_NB-IoT-Paging-eDRXInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-PagingDRX.c b/lib/asn1c/ngap/NGAP_NB-IoT-PagingDRX.c index 5c1072234..900e0641b 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-PagingDRX.c +++ b/lib/asn1c/ngap/NGAP_NB-IoT-PagingDRX.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-PagingDRX.h b/lib/asn1c/ngap/NGAP_NB-IoT-PagingDRX.h index 90e833dd7..c0f167333 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-PagingDRX.h +++ b/lib/asn1c/ngap/NGAP_NB-IoT-PagingDRX.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-UEPriority.c b/lib/asn1c/ngap/NGAP_NB-IoT-UEPriority.c index e36fbf700..3b46c29f9 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-UEPriority.c +++ b/lib/asn1c/ngap/NGAP_NB-IoT-UEPriority.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NB-IoT-UEPriority.h b/lib/asn1c/ngap/NGAP_NB-IoT-UEPriority.h index 882b06a80..47b87d423 100644 --- a/lib/asn1c/ngap/NGAP_NB-IoT-UEPriority.h +++ b/lib/asn1c/ngap/NGAP_NB-IoT-UEPriority.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGAP-PDU.c b/lib/asn1c/ngap/NGAP_NGAP-PDU.c index b179f35e9..62b8a2da2 100644 --- a/lib/asn1c/ngap/NGAP_NGAP-PDU.c +++ b/lib/asn1c/ngap/NGAP_NGAP-PDU.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Descriptions" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGAP-PDU.h b/lib/asn1c/ngap/NGAP_NGAP-PDU.h index 4beece2cf..cef42573a 100644 --- a/lib/asn1c/ngap/NGAP_NGAP-PDU.h +++ b/lib/asn1c/ngap/NGAP_NGAP-PDU.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Descriptions" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGRAN-CGI.c b/lib/asn1c/ngap/NGAP_NGRAN-CGI.c index c52089d89..bac1305c5 100644 --- a/lib/asn1c/ngap/NGAP_NGRAN-CGI.c +++ b/lib/asn1c/ngap/NGAP_NGRAN-CGI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NGRAN_CGI_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_NGRAN_CGI, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NGRAN-CGI.h b/lib/asn1c/ngap/NGAP_NGRAN-CGI.h index 8e3912688..562889497 100644 --- a/lib/asn1c/ngap/NGAP_NGRAN-CGI.h +++ b/lib/asn1c/ngap/NGAP_NGRAN-CGI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveItem.c b/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveItem.c index 6792ebb18..6e977b8ae 100644 --- a/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveItem.c +++ b/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NGRAN_TNLAssociationToRemoveItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_NGRAN_TNLAssociationToRemoveItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P129, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P129, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveItem.h b/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveItem.h index c109591f5..c78d9c202 100644 --- a/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveItem.h +++ b/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveList.c b/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveList.c index 8824fadda..68de1b2bf 100644 --- a/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveList.c +++ b/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveList.h b/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveList.h index 5911efbfd..0fbb7883d 100644 --- a/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveList.h +++ b/lib/asn1c/ngap/NGAP_NGRAN-TNLAssociationToRemoveList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGRANTraceID.c b/lib/asn1c/ngap/NGAP_NGRANTraceID.c index 68139bc9f..698b15275 100644 --- a/lib/asn1c/ngap/NGAP_NGRANTraceID.c +++ b/lib/asn1c/ngap/NGAP_NGRANTraceID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGRANTraceID.h b/lib/asn1c/ngap/NGAP_NGRANTraceID.h index e794f1217..a63e17b83 100644 --- a/lib/asn1c/ngap/NGAP_NGRANTraceID.h +++ b/lib/asn1c/ngap/NGAP_NGRANTraceID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NGReset.c b/lib/asn1c/ngap/NGAP_NGReset.c index a2bf00566..a01868276 100644 --- a/lib/asn1c/ngap/NGAP_NGReset.c +++ b/lib/asn1c/ngap/NGAP_NGReset.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NGReset_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_NGReset, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P61, + &asn_DEF_NGAP_ProtocolIE_Container_9574P61, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NGReset.h b/lib/asn1c/ngap/NGAP_NGReset.h index 23ffb0424..f9efd8bad 100644 --- a/lib/asn1c/ngap/NGAP_NGReset.h +++ b/lib/asn1c/ngap/NGAP_NGReset.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_NGReset */ typedef struct NGAP_NGReset { - NGAP_ProtocolIE_Container_9520P61_t protocolIEs; + NGAP_ProtocolIE_Container_9574P61_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_NGResetAcknowledge.c b/lib/asn1c/ngap/NGAP_NGResetAcknowledge.c index f4955e059..d610ce44e 100644 --- a/lib/asn1c/ngap/NGAP_NGResetAcknowledge.c +++ b/lib/asn1c/ngap/NGAP_NGResetAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NGResetAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_NGResetAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P62, + &asn_DEF_NGAP_ProtocolIE_Container_9574P62, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NGResetAcknowledge.h b/lib/asn1c/ngap/NGAP_NGResetAcknowledge.h index 07c7bef53..559fb27b0 100644 --- a/lib/asn1c/ngap/NGAP_NGResetAcknowledge.h +++ b/lib/asn1c/ngap/NGAP_NGResetAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_NGResetAcknowledge */ typedef struct NGAP_NGResetAcknowledge { - NGAP_ProtocolIE_Container_9520P62_t protocolIEs; + NGAP_ProtocolIE_Container_9574P62_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_NGSetupFailure.c b/lib/asn1c/ngap/NGAP_NGSetupFailure.c index 3daa8f13f..211daf4f3 100644 --- a/lib/asn1c/ngap/NGAP_NGSetupFailure.c +++ b/lib/asn1c/ngap/NGAP_NGSetupFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NGSetupFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_NGSetupFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P53, + &asn_DEF_NGAP_ProtocolIE_Container_9574P53, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NGSetupFailure.h b/lib/asn1c/ngap/NGAP_NGSetupFailure.h index 6e6ca5960..594882168 100644 --- a/lib/asn1c/ngap/NGAP_NGSetupFailure.h +++ b/lib/asn1c/ngap/NGAP_NGSetupFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_NGSetupFailure */ typedef struct NGAP_NGSetupFailure { - NGAP_ProtocolIE_Container_9520P53_t protocolIEs; + NGAP_ProtocolIE_Container_9574P53_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_NGSetupRequest.c b/lib/asn1c/ngap/NGAP_NGSetupRequest.c index 3881c851e..9f15861ef 100644 --- a/lib/asn1c/ngap/NGAP_NGSetupRequest.c +++ b/lib/asn1c/ngap/NGAP_NGSetupRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NGSetupRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_NGSetupRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P51, + &asn_DEF_NGAP_ProtocolIE_Container_9574P51, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NGSetupRequest.h b/lib/asn1c/ngap/NGAP_NGSetupRequest.h index 39864cc7d..62c590895 100644 --- a/lib/asn1c/ngap/NGAP_NGSetupRequest.h +++ b/lib/asn1c/ngap/NGAP_NGSetupRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_NGSetupRequest */ typedef struct NGAP_NGSetupRequest { - NGAP_ProtocolIE_Container_9520P51_t protocolIEs; + NGAP_ProtocolIE_Container_9574P51_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_NGSetupResponse.c b/lib/asn1c/ngap/NGAP_NGSetupResponse.c index b1b5b48d6..f46203ad7 100644 --- a/lib/asn1c/ngap/NGAP_NGSetupResponse.c +++ b/lib/asn1c/ngap/NGAP_NGSetupResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NGSetupResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_NGSetupResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P52, + &asn_DEF_NGAP_ProtocolIE_Container_9574P52, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NGSetupResponse.h b/lib/asn1c/ngap/NGAP_NGSetupResponse.h index 563f5243a..ba893c633 100644 --- a/lib/asn1c/ngap/NGAP_NGSetupResponse.h +++ b/lib/asn1c/ngap/NGAP_NGSetupResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_NGSetupResponse */ typedef struct NGAP_NGSetupResponse { - NGAP_ProtocolIE_Container_9520P52_t protocolIEs; + NGAP_ProtocolIE_Container_9574P52_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_NID.c b/lib/asn1c/ngap/NGAP_NID.c index fdff9d1a4..3dcfd00ed 100644 --- a/lib/asn1c/ngap/NGAP_NID.c +++ b/lib/asn1c/ngap/NGAP_NID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NID.h b/lib/asn1c/ngap/NGAP_NID.h index ae3d7d0f3..bc89b5aa1 100644 --- a/lib/asn1c/ngap/NGAP_NID.h +++ b/lib/asn1c/ngap/NGAP_NID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NPN-AccessInformation.c b/lib/asn1c/ngap/NGAP_NPN-AccessInformation.c index 2cb4e6bde..6ca16aa2d 100644 --- a/lib/asn1c/ngap/NGAP_NPN-AccessInformation.c +++ b/lib/asn1c/ngap/NGAP_NPN-AccessInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -37,7 +37,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_NPN_AccessInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_NPN_AccessInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NPN-AccessInformation.h b/lib/asn1c/ngap/NGAP_NPN-AccessInformation.h index eb2fb3980..338e48106 100644 --- a/lib/asn1c/ngap/NGAP_NPN-AccessInformation.h +++ b/lib/asn1c/ngap/NGAP_NPN-AccessInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NPN-MobilityInformation.c b/lib/asn1c/ngap/NGAP_NPN-MobilityInformation.c index d7fd12352..2e78b596c 100644 --- a/lib/asn1c/ngap/NGAP_NPN-MobilityInformation.c +++ b/lib/asn1c/ngap/NGAP_NPN-MobilityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_NPN_MobilityInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_NPN_MobilityInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NPN-MobilityInformation.h b/lib/asn1c/ngap/NGAP_NPN-MobilityInformation.h index 50cbea294..ee597dc10 100644 --- a/lib/asn1c/ngap/NGAP_NPN-MobilityInformation.h +++ b/lib/asn1c/ngap/NGAP_NPN-MobilityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NPN-PagingAssistanceInformation.c b/lib/asn1c/ngap/NGAP_NPN-PagingAssistanceInformation.c index 8725a3dfc..b8720156e 100644 --- a/lib/asn1c/ngap/NGAP_NPN-PagingAssistanceInformation.c +++ b/lib/asn1c/ngap/NGAP_NPN-PagingAssistanceInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -37,7 +37,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_NPN_PagingAssistanceInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_NPN_PagingAssistanceInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NPN-PagingAssistanceInformation.h b/lib/asn1c/ngap/NGAP_NPN-PagingAssistanceInformation.h index 39e559190..8ff30e563 100644 --- a/lib/asn1c/ngap/NGAP_NPN-PagingAssistanceInformation.h +++ b/lib/asn1c/ngap/NGAP_NPN-PagingAssistanceInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NPN-Support.c b/lib/asn1c/ngap/NGAP_NPN-Support.c index 9dfb49b02..e3cc5f9d5 100644 --- a/lib/asn1c/ngap/NGAP_NPN-Support.c +++ b/lib/asn1c/ngap/NGAP_NPN-Support.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -36,7 +36,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_NPN_Support_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_NPN_Support, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NPN-Support.h b/lib/asn1c/ngap/NGAP_NPN-Support.h index 9c422de5f..0390750fd 100644 --- a/lib/asn1c/ngap/NGAP_NPN-Support.h +++ b/lib/asn1c/ngap/NGAP_NPN-Support.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NR-CGI.c b/lib/asn1c/ngap/NGAP_NR-CGI.c index ae1fa9fe2..e8ffcd92f 100644 --- a/lib/asn1c/ngap/NGAP_NR-CGI.c +++ b/lib/asn1c/ngap/NGAP_NR-CGI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NR_CGI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_NR_CGI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P131, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P131, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NR-CGI.h b/lib/asn1c/ngap/NGAP_NR-CGI.h index e7386e9f7..c874e5007 100644 --- a/lib/asn1c/ngap/NGAP_NR-CGI.h +++ b/lib/asn1c/ngap/NGAP_NR-CGI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NR-CGIList.c b/lib/asn1c/ngap/NGAP_NR-CGIList.c index b54eedfc3..1c31699f1 100644 --- a/lib/asn1c/ngap/NGAP_NR-CGIList.c +++ b/lib/asn1c/ngap/NGAP_NR-CGIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NR-CGIList.h b/lib/asn1c/ngap/NGAP_NR-CGIList.h index b3b1d713c..68cebaad5 100644 --- a/lib/asn1c/ngap/NGAP_NR-CGIList.h +++ b/lib/asn1c/ngap/NGAP_NR-CGIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NR-CGIListForWarning.c b/lib/asn1c/ngap/NGAP_NR-CGIListForWarning.c index 5b44b42fa..3ffa0d2aa 100644 --- a/lib/asn1c/ngap/NGAP_NR-CGIListForWarning.c +++ b/lib/asn1c/ngap/NGAP_NR-CGIListForWarning.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NR-CGIListForWarning.h b/lib/asn1c/ngap/NGAP_NR-CGIListForWarning.h index 09de9bb0a..79775ceb1 100644 --- a/lib/asn1c/ngap/NGAP_NR-CGIListForWarning.h +++ b/lib/asn1c/ngap/NGAP_NR-CGIListForWarning.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NR-PCI.c b/lib/asn1c/ngap/NGAP_NR-PCI.c index d3573cf8a..4cefbe09e 100644 --- a/lib/asn1c/ngap/NGAP_NR-PCI.c +++ b/lib/asn1c/ngap/NGAP_NR-PCI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NR-PCI.h b/lib/asn1c/ngap/NGAP_NR-PCI.h index 19ebb18c1..139b9d772 100644 --- a/lib/asn1c/ngap/NGAP_NR-PCI.h +++ b/lib/asn1c/ngap/NGAP_NR-PCI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRARFCN.c b/lib/asn1c/ngap/NGAP_NRARFCN.c index d2ad9d766..ce22d7fd8 100644 --- a/lib/asn1c/ngap/NGAP_NRARFCN.c +++ b/lib/asn1c/ngap/NGAP_NRARFCN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRARFCN.h b/lib/asn1c/ngap/NGAP_NRARFCN.h index 3e9f1d515..e798bec59 100644 --- a/lib/asn1c/ngap/NGAP_NRARFCN.h +++ b/lib/asn1c/ngap/NGAP_NRARFCN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRCellIdentity.c b/lib/asn1c/ngap/NGAP_NRCellIdentity.c index 8ad525a10..cb526fba7 100644 --- a/lib/asn1c/ngap/NGAP_NRCellIdentity.c +++ b/lib/asn1c/ngap/NGAP_NRCellIdentity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRCellIdentity.h b/lib/asn1c/ngap/NGAP_NRCellIdentity.h index 42db5e7eb..3aa2899f1 100644 --- a/lib/asn1c/ngap/NGAP_NRCellIdentity.h +++ b/lib/asn1c/ngap/NGAP_NRCellIdentity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRFrequencyBand-List.c b/lib/asn1c/ngap/NGAP_NRFrequencyBand-List.c index 10fffa8d2..2a2377807 100644 --- a/lib/asn1c/ngap/NGAP_NRFrequencyBand-List.c +++ b/lib/asn1c/ngap/NGAP_NRFrequencyBand-List.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRFrequencyBand-List.h b/lib/asn1c/ngap/NGAP_NRFrequencyBand-List.h index 2fc1e27cc..e7714a818 100644 --- a/lib/asn1c/ngap/NGAP_NRFrequencyBand-List.h +++ b/lib/asn1c/ngap/NGAP_NRFrequencyBand-List.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRFrequencyBand.c b/lib/asn1c/ngap/NGAP_NRFrequencyBand.c index 6eec3a3c1..e5643ab2f 100644 --- a/lib/asn1c/ngap/NGAP_NRFrequencyBand.c +++ b/lib/asn1c/ngap/NGAP_NRFrequencyBand.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRFrequencyBand.h b/lib/asn1c/ngap/NGAP_NRFrequencyBand.h index 692f345e5..2ec643ab0 100644 --- a/lib/asn1c/ngap/NGAP_NRFrequencyBand.h +++ b/lib/asn1c/ngap/NGAP_NRFrequencyBand.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRFrequencyBandItem.c b/lib/asn1c/ngap/NGAP_NRFrequencyBandItem.c index 9d51ee078..113f14cde 100644 --- a/lib/asn1c/ngap/NGAP_NRFrequencyBandItem.c +++ b/lib/asn1c/ngap/NGAP_NRFrequencyBandItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NRFrequencyBandItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_NRFrequencyBandItem, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P132, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P132, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NRFrequencyBandItem.h b/lib/asn1c/ngap/NGAP_NRFrequencyBandItem.h index 04f46dbe6..86f7a57d4 100644 --- a/lib/asn1c/ngap/NGAP_NRFrequencyBandItem.h +++ b/lib/asn1c/ngap/NGAP_NRFrequencyBandItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRFrequencyInfo.c b/lib/asn1c/ngap/NGAP_NRFrequencyInfo.c index f4b0833b1..b18087cd7 100644 --- a/lib/asn1c/ngap/NGAP_NRFrequencyInfo.c +++ b/lib/asn1c/ngap/NGAP_NRFrequencyInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NRFrequencyInfo_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_NRFrequencyInfo, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P133, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P133, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NRFrequencyInfo.h b/lib/asn1c/ngap/NGAP_NRFrequencyInfo.h index 515cda764..b21ac26df 100644 --- a/lib/asn1c/ngap/NGAP_NRFrequencyInfo.h +++ b/lib/asn1c/ngap/NGAP_NRFrequencyInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRMobilityHistoryReport.c b/lib/asn1c/ngap/NGAP_NRMobilityHistoryReport.c index 079801a62..f6ec3afdb 100644 --- a/lib/asn1c/ngap/NGAP_NRMobilityHistoryReport.c +++ b/lib/asn1c/ngap/NGAP_NRMobilityHistoryReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRMobilityHistoryReport.h b/lib/asn1c/ngap/NGAP_NRMobilityHistoryReport.h index 2e481726d..808fbbda3 100644 --- a/lib/asn1c/ngap/NGAP_NRMobilityHistoryReport.h +++ b/lib/asn1c/ngap/NGAP_NRMobilityHistoryReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRPPa-PDU.c b/lib/asn1c/ngap/NGAP_NRPPa-PDU.c index 5c15810af..35633eae1 100644 --- a/lib/asn1c/ngap/NGAP_NRPPa-PDU.c +++ b/lib/asn1c/ngap/NGAP_NRPPa-PDU.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRPPa-PDU.h b/lib/asn1c/ngap/NGAP_NRPPa-PDU.h index 77bb84a2c..0ef75bf7e 100644 --- a/lib/asn1c/ngap/NGAP_NRPPa-PDU.h +++ b/lib/asn1c/ngap/NGAP_NRPPa-PDU.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRUERLFReportContainer.c b/lib/asn1c/ngap/NGAP_NRUERLFReportContainer.c index c8eb991d2..16ad4e779 100644 --- a/lib/asn1c/ngap/NGAP_NRUERLFReportContainer.c +++ b/lib/asn1c/ngap/NGAP_NRUERLFReportContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRUERLFReportContainer.h b/lib/asn1c/ngap/NGAP_NRUERLFReportContainer.h index e9c68e1f9..90f73b461 100644 --- a/lib/asn1c/ngap/NGAP_NRUERLFReportContainer.h +++ b/lib/asn1c/ngap/NGAP_NRUERLFReportContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRUESidelinkAggregateMaximumBitrate.c b/lib/asn1c/ngap/NGAP_NRUESidelinkAggregateMaximumBitrate.c index 7d6285d69..1cc44a958 100644 --- a/lib/asn1c/ngap/NGAP_NRUESidelinkAggregateMaximumBitrate.c +++ b/lib/asn1c/ngap/NGAP_NRUESidelinkAggregateMaximumBitrate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_NRUESidelinkAggregateMaximumBitrate_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_NRUESidelinkAggregateMaximumBitrate, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P135, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P135, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NRUESidelinkAggregateMaximumBitrate.h b/lib/asn1c/ngap/NGAP_NRUESidelinkAggregateMaximumBitrate.h index a048b3486..f6500d542 100644 --- a/lib/asn1c/ngap/NGAP_NRUESidelinkAggregateMaximumBitrate.h +++ b/lib/asn1c/ngap/NGAP_NRUESidelinkAggregateMaximumBitrate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRV2XServicesAuthorized.c b/lib/asn1c/ngap/NGAP_NRV2XServicesAuthorized.c index af9e4f195..2512d569b 100644 --- a/lib/asn1c/ngap/NGAP_NRV2XServicesAuthorized.c +++ b/lib/asn1c/ngap/NGAP_NRV2XServicesAuthorized.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_NRV2XServicesAuthorized_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_NRV2XServicesAuthorized, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P134, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P134, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NRV2XServicesAuthorized.h b/lib/asn1c/ngap/NGAP_NRV2XServicesAuthorized.h index 63f16c389..a90a08f6f 100644 --- a/lib/asn1c/ngap/NGAP_NRV2XServicesAuthorized.h +++ b/lib/asn1c/ngap/NGAP_NRV2XServicesAuthorized.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRencryptionAlgorithms.c b/lib/asn1c/ngap/NGAP_NRencryptionAlgorithms.c index 2abb8d66a..0d9e3ed43 100644 --- a/lib/asn1c/ngap/NGAP_NRencryptionAlgorithms.c +++ b/lib/asn1c/ngap/NGAP_NRencryptionAlgorithms.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRencryptionAlgorithms.h b/lib/asn1c/ngap/NGAP_NRencryptionAlgorithms.h index 6a390b541..1f17865b1 100644 --- a/lib/asn1c/ngap/NGAP_NRencryptionAlgorithms.h +++ b/lib/asn1c/ngap/NGAP_NRencryptionAlgorithms.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRintegrityProtectionAlgorithms.c b/lib/asn1c/ngap/NGAP_NRintegrityProtectionAlgorithms.c index ab4f65708..75e3c129a 100644 --- a/lib/asn1c/ngap/NGAP_NRintegrityProtectionAlgorithms.c +++ b/lib/asn1c/ngap/NGAP_NRintegrityProtectionAlgorithms.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NRintegrityProtectionAlgorithms.h b/lib/asn1c/ngap/NGAP_NRintegrityProtectionAlgorithms.h index 67887523f..6d119628a 100644 --- a/lib/asn1c/ngap/NGAP_NRintegrityProtectionAlgorithms.h +++ b/lib/asn1c/ngap/NGAP_NRintegrityProtectionAlgorithms.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NetworkInstance.c b/lib/asn1c/ngap/NGAP_NetworkInstance.c index 0609b8282..ba7ec8081 100644 --- a/lib/asn1c/ngap/NGAP_NetworkInstance.c +++ b/lib/asn1c/ngap/NGAP_NetworkInstance.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NetworkInstance.h b/lib/asn1c/ngap/NGAP_NetworkInstance.h index 52ac09db4..3784111d1 100644 --- a/lib/asn1c/ngap/NGAP_NetworkInstance.h +++ b/lib/asn1c/ngap/NGAP_NetworkInstance.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NewSecurityContextInd.c b/lib/asn1c/ngap/NGAP_NewSecurityContextInd.c index 425cb6daf..bb9130ef5 100644 --- a/lib/asn1c/ngap/NGAP_NewSecurityContextInd.c +++ b/lib/asn1c/ngap/NGAP_NewSecurityContextInd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NewSecurityContextInd.h b/lib/asn1c/ngap/NGAP_NewSecurityContextInd.h index 9b044e5d4..e43467924 100644 --- a/lib/asn1c/ngap/NGAP_NewSecurityContextInd.h +++ b/lib/asn1c/ngap/NGAP_NewSecurityContextInd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NextHopChainingCount.c b/lib/asn1c/ngap/NGAP_NextHopChainingCount.c index 6477e6500..0a44e7c16 100644 --- a/lib/asn1c/ngap/NGAP_NextHopChainingCount.c +++ b/lib/asn1c/ngap/NGAP_NextHopChainingCount.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NextHopChainingCount.h b/lib/asn1c/ngap/NGAP_NextHopChainingCount.h index 18cef5939..8f8208244 100644 --- a/lib/asn1c/ngap/NGAP_NextHopChainingCount.h +++ b/lib/asn1c/ngap/NGAP_NextHopChainingCount.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NextPagingAreaScope.c b/lib/asn1c/ngap/NGAP_NextPagingAreaScope.c index c440c3a94..7ac64b844 100644 --- a/lib/asn1c/ngap/NGAP_NextPagingAreaScope.c +++ b/lib/asn1c/ngap/NGAP_NextPagingAreaScope.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NextPagingAreaScope.h b/lib/asn1c/ngap/NGAP_NextPagingAreaScope.h index fad28832d..03f4dfab1 100644 --- a/lib/asn1c/ngap/NGAP_NextPagingAreaScope.h +++ b/lib/asn1c/ngap/NGAP_NextPagingAreaScope.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NgENB-ID.c b/lib/asn1c/ngap/NGAP_NgENB-ID.c index d477f98c0..1d0dffa71 100644 --- a/lib/asn1c/ngap/NGAP_NgENB-ID.c +++ b/lib/asn1c/ngap/NGAP_NgENB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -184,7 +184,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NgENB_ID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_NgENB_ID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NgENB-ID.h b/lib/asn1c/ngap/NGAP_NgENB-ID.h index abca6630c..0726ad766 100644 --- a/lib/asn1c/ngap/NGAP_NgENB-ID.h +++ b/lib/asn1c/ngap/NGAP_NgENB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NonDynamic5QIDescriptor.c b/lib/asn1c/ngap/NGAP_NonDynamic5QIDescriptor.c index 0896dde1c..62814b60b 100644 --- a/lib/asn1c/ngap/NGAP_NonDynamic5QIDescriptor.c +++ b/lib/asn1c/ngap/NGAP_NonDynamic5QIDescriptor.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ asn_TYPE_member_t asn_MBR_NGAP_NonDynamic5QIDescriptor_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_NonDynamic5QIDescriptor, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P130, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P130, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_NonDynamic5QIDescriptor.h b/lib/asn1c/ngap/NGAP_NonDynamic5QIDescriptor.h index af56e47b8..d7335240b 100644 --- a/lib/asn1c/ngap/NGAP_NonDynamic5QIDescriptor.h +++ b/lib/asn1c/ngap/NGAP_NonDynamic5QIDescriptor.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NotAllowedTACs.c b/lib/asn1c/ngap/NGAP_NotAllowedTACs.c index 3ec840980..6cf76e229 100644 --- a/lib/asn1c/ngap/NGAP_NotAllowedTACs.c +++ b/lib/asn1c/ngap/NGAP_NotAllowedTACs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NotAllowedTACs.h b/lib/asn1c/ngap/NGAP_NotAllowedTACs.h index 032aa37fa..1708fa11c 100644 --- a/lib/asn1c/ngap/NGAP_NotAllowedTACs.h +++ b/lib/asn1c/ngap/NGAP_NotAllowedTACs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NotificationCause.c b/lib/asn1c/ngap/NGAP_NotificationCause.c index 8d8e4be51..f10d21a20 100644 --- a/lib/asn1c/ngap/NGAP_NotificationCause.c +++ b/lib/asn1c/ngap/NGAP_NotificationCause.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NotificationCause.h b/lib/asn1c/ngap/NGAP_NotificationCause.h index da9fe16e0..f99cee603 100644 --- a/lib/asn1c/ngap/NGAP_NotificationCause.h +++ b/lib/asn1c/ngap/NGAP_NotificationCause.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NotificationControl.c b/lib/asn1c/ngap/NGAP_NotificationControl.c index e49aabd18..e808d1ee5 100644 --- a/lib/asn1c/ngap/NGAP_NotificationControl.c +++ b/lib/asn1c/ngap/NGAP_NotificationControl.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NotificationControl.h b/lib/asn1c/ngap/NGAP_NotificationControl.h index 057ea3b81..db647817e 100644 --- a/lib/asn1c/ngap/NGAP_NotificationControl.h +++ b/lib/asn1c/ngap/NGAP_NotificationControl.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NotifySourceNGRANNode.c b/lib/asn1c/ngap/NGAP_NotifySourceNGRANNode.c index 9e6fef0bc..cba007c6b 100644 --- a/lib/asn1c/ngap/NGAP_NotifySourceNGRANNode.c +++ b/lib/asn1c/ngap/NGAP_NotifySourceNGRANNode.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NotifySourceNGRANNode.h b/lib/asn1c/ngap/NGAP_NotifySourceNGRANNode.h index 0ce2f4b91..533fd0a9b 100644 --- a/lib/asn1c/ngap/NGAP_NotifySourceNGRANNode.h +++ b/lib/asn1c/ngap/NGAP_NotifySourceNGRANNode.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NumberOfBroadcasts.c b/lib/asn1c/ngap/NGAP_NumberOfBroadcasts.c index 28c780cba..f7e36c766 100644 --- a/lib/asn1c/ngap/NGAP_NumberOfBroadcasts.c +++ b/lib/asn1c/ngap/NGAP_NumberOfBroadcasts.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NumberOfBroadcasts.h b/lib/asn1c/ngap/NGAP_NumberOfBroadcasts.h index 1cd48233b..f10ed2b8d 100644 --- a/lib/asn1c/ngap/NGAP_NumberOfBroadcasts.h +++ b/lib/asn1c/ngap/NGAP_NumberOfBroadcasts.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NumberOfBroadcastsRequested.c b/lib/asn1c/ngap/NGAP_NumberOfBroadcastsRequested.c index f4b8ea936..400600f63 100644 --- a/lib/asn1c/ngap/NGAP_NumberOfBroadcastsRequested.c +++ b/lib/asn1c/ngap/NGAP_NumberOfBroadcastsRequested.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_NumberOfBroadcastsRequested.h b/lib/asn1c/ngap/NGAP_NumberOfBroadcastsRequested.h index f25cb8710..326dac3b6 100644 --- a/lib/asn1c/ngap/NGAP_NumberOfBroadcastsRequested.h +++ b/lib/asn1c/ngap/NGAP_NumberOfBroadcastsRequested.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_OverloadAction.c b/lib/asn1c/ngap/NGAP_OverloadAction.c index 20d6c47e9..13df632ea 100644 --- a/lib/asn1c/ngap/NGAP_OverloadAction.c +++ b/lib/asn1c/ngap/NGAP_OverloadAction.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_OverloadAction.h b/lib/asn1c/ngap/NGAP_OverloadAction.h index 9c4a9b58a..97ba717dc 100644 --- a/lib/asn1c/ngap/NGAP_OverloadAction.h +++ b/lib/asn1c/ngap/NGAP_OverloadAction.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_OverloadResponse.c b/lib/asn1c/ngap/NGAP_OverloadResponse.c index cfd259711..539b91fa2 100644 --- a/lib/asn1c/ngap/NGAP_OverloadResponse.c +++ b/lib/asn1c/ngap/NGAP_OverloadResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -36,7 +36,7 @@ asn_TYPE_member_t asn_MBR_NGAP_OverloadResponse_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_OverloadResponse, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_OverloadResponse.h b/lib/asn1c/ngap/NGAP_OverloadResponse.h index 686192a26..e61928bea 100644 --- a/lib/asn1c/ngap/NGAP_OverloadResponse.h +++ b/lib/asn1c/ngap/NGAP_OverloadResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_OverloadStart.c b/lib/asn1c/ngap/NGAP_OverloadStart.c index 611fd27a8..91f9faecf 100644 --- a/lib/asn1c/ngap/NGAP_OverloadStart.c +++ b/lib/asn1c/ngap/NGAP_OverloadStart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_OverloadStart_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_OverloadStart, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P64, + &asn_DEF_NGAP_ProtocolIE_Container_9574P64, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_OverloadStart.h b/lib/asn1c/ngap/NGAP_OverloadStart.h index cfd5a1320..cbc5b4cd7 100644 --- a/lib/asn1c/ngap/NGAP_OverloadStart.h +++ b/lib/asn1c/ngap/NGAP_OverloadStart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_OverloadStart */ typedef struct NGAP_OverloadStart { - NGAP_ProtocolIE_Container_9520P64_t protocolIEs; + NGAP_ProtocolIE_Container_9574P64_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_OverloadStartNSSAIItem.c b/lib/asn1c/ngap/NGAP_OverloadStartNSSAIItem.c index c9592a61a..725e814a4 100644 --- a/lib/asn1c/ngap/NGAP_OverloadStartNSSAIItem.c +++ b/lib/asn1c/ngap/NGAP_OverloadStartNSSAIItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_NGAP_OverloadStartNSSAIItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_OverloadStartNSSAIItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P136, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P136, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_OverloadStartNSSAIItem.h b/lib/asn1c/ngap/NGAP_OverloadStartNSSAIItem.h index 73c3ed299..1724bb2fe 100644 --- a/lib/asn1c/ngap/NGAP_OverloadStartNSSAIItem.h +++ b/lib/asn1c/ngap/NGAP_OverloadStartNSSAIItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_OverloadStartNSSAIList.c b/lib/asn1c/ngap/NGAP_OverloadStartNSSAIList.c index 0a2f8dc47..dd462899e 100644 --- a/lib/asn1c/ngap/NGAP_OverloadStartNSSAIList.c +++ b/lib/asn1c/ngap/NGAP_OverloadStartNSSAIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_OverloadStartNSSAIList.h b/lib/asn1c/ngap/NGAP_OverloadStartNSSAIList.h index 8296b86b4..ec52d151a 100644 --- a/lib/asn1c/ngap/NGAP_OverloadStartNSSAIList.h +++ b/lib/asn1c/ngap/NGAP_OverloadStartNSSAIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_OverloadStop.c b/lib/asn1c/ngap/NGAP_OverloadStop.c index d29f11880..f9657b825 100644 --- a/lib/asn1c/ngap/NGAP_OverloadStop.c +++ b/lib/asn1c/ngap/NGAP_OverloadStop.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_OverloadStop_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_OverloadStop, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P65, + &asn_DEF_NGAP_ProtocolIE_Container_9574P65, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_OverloadStop.h b/lib/asn1c/ngap/NGAP_OverloadStop.h index 534188e83..795179a2f 100644 --- a/lib/asn1c/ngap/NGAP_OverloadStop.h +++ b/lib/asn1c/ngap/NGAP_OverloadStop.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_OverloadStop */ typedef struct NGAP_OverloadStop { - NGAP_ProtocolIE_Container_9520P65_t protocolIEs; + NGAP_ProtocolIE_Container_9574P65_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PC5FlowBitRates.c b/lib/asn1c/ngap/NGAP_PC5FlowBitRates.c index 64504eae1..a855ebbf0 100644 --- a/lib/asn1c/ngap/NGAP_PC5FlowBitRates.c +++ b/lib/asn1c/ngap/NGAP_PC5FlowBitRates.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PC5FlowBitRates_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PC5FlowBitRates, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P147, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P147, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PC5FlowBitRates.h b/lib/asn1c/ngap/NGAP_PC5FlowBitRates.h index b70f79cf7..a7eacacde 100644 --- a/lib/asn1c/ngap/NGAP_PC5FlowBitRates.h +++ b/lib/asn1c/ngap/NGAP_PC5FlowBitRates.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PC5QoSFlowItem.c b/lib/asn1c/ngap/NGAP_PC5QoSFlowItem.c index 34aa7c431..4c42102a6 100644 --- a/lib/asn1c/ngap/NGAP_PC5QoSFlowItem.c +++ b/lib/asn1c/ngap/NGAP_PC5QoSFlowItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PC5QoSFlowItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PC5QoSFlowItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P146, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P146, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PC5QoSFlowItem.h b/lib/asn1c/ngap/NGAP_PC5QoSFlowItem.h index 3e9ea182d..9aae72e99 100644 --- a/lib/asn1c/ngap/NGAP_PC5QoSFlowItem.h +++ b/lib/asn1c/ngap/NGAP_PC5QoSFlowItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PC5QoSFlowList.c b/lib/asn1c/ngap/NGAP_PC5QoSFlowList.c index 1cabab205..b60df399e 100644 --- a/lib/asn1c/ngap/NGAP_PC5QoSFlowList.c +++ b/lib/asn1c/ngap/NGAP_PC5QoSFlowList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PC5QoSFlowList.h b/lib/asn1c/ngap/NGAP_PC5QoSFlowList.h index c48c8543a..76864dfbb 100644 --- a/lib/asn1c/ngap/NGAP_PC5QoSFlowList.h +++ b/lib/asn1c/ngap/NGAP_PC5QoSFlowList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PC5QoSParameters.c b/lib/asn1c/ngap/NGAP_PC5QoSParameters.c index ca892420d..6c9937435 100644 --- a/lib/asn1c/ngap/NGAP_PC5QoSParameters.c +++ b/lib/asn1c/ngap/NGAP_PC5QoSParameters.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PC5QoSParameters_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PC5QoSParameters, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P145, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P145, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PC5QoSParameters.h b/lib/asn1c/ngap/NGAP_PC5QoSParameters.h index 5a2e23439..dddc7dd3a 100644 --- a/lib/asn1c/ngap/NGAP_PC5QoSParameters.h +++ b/lib/asn1c/ngap/NGAP_PC5QoSParameters.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PCIListForMDT.c b/lib/asn1c/ngap/NGAP_PCIListForMDT.c index f7a916a92..946ee9d69 100644 --- a/lib/asn1c/ngap/NGAP_PCIListForMDT.c +++ b/lib/asn1c/ngap/NGAP_PCIListForMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PCIListForMDT.h b/lib/asn1c/ngap/NGAP_PCIListForMDT.h index 04c2b3d0e..5ba8372c7 100644 --- a/lib/asn1c/ngap/NGAP_PCIListForMDT.h +++ b/lib/asn1c/ngap/NGAP_PCIListForMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionAggregateMaximumBitRate.c b/lib/asn1c/ngap/NGAP_PDUSessionAggregateMaximumBitRate.c index 53439d847..40721a2fc 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionAggregateMaximumBitRate.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionAggregateMaximumBitRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionAggregateMaximumBitRate_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionAggregateMaximumBitRate, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P148, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P148, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionAggregateMaximumBitRate.h b/lib/asn1c/ngap/NGAP_PDUSessionAggregateMaximumBitRate.h index b667e69b0..fc2f7fe0c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionAggregateMaximumBitRate.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionAggregateMaximumBitRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionID.c b/lib/asn1c/ngap/NGAP_PDUSessionID.c index 87ad5e709..7b94b6a56 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionID.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionID.h b/lib/asn1c/ngap/NGAP_PDUSessionID.h index b62b4882a..2ac0aaf51 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionID.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedItem.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedItem.c index daf9be072..d9aa436bc 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedItem.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceAdmittedItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceAdmittedItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P149, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P149, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedItem.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedItem.h index ca142c3a2..dff6b2189 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedItem.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedList.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedList.c index b23c14f25..9fefade0a 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedList.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedList.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedList.h index 1c98cf8e1..951c11d35 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedList.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceAdmittedList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModCfm.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModCfm.c index 9cbea1386..a58bb48d7 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModCfm.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModCfm.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToModifyItemModCfm_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToModifyItemModCfm, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P150, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P150, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModCfm.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModCfm.h index d2dc60fac..444a37f67 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModCfm.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModCfm.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModRes.c index 551fd64b0..1782c9e52 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToModifyItemModRes_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToModifyItemModRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P151, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P151, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModRes.h index 88f5d30a9..0fb7957dc 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyItemModRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModCfm.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModCfm.c index 83beba2df..48b4b29cd 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModCfm.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModCfm.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModCfm.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModCfm.h index d136f2af9..1ab10e988 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModCfm.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModCfm.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModRes.c index 82f3577eb..80dbf2b8c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModRes.h index 495c8e62d..7d2f8d326 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToModifyListModRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESReq.c index 44297e42d..2d86fc290 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToResumeItemRESReq_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToResumeItemRESReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P152, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P152, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESReq.h index cd65749d9..658d3db37 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESRes.c index faeb13cd0..27a56d279 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToResumeItemRESRes_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToResumeItemRESRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P153, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P153, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESRes.h index 53b72b931..0fe9478a7 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeItemRESRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESReq.c index b6e88f6f7..c9886595c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESReq.h index 5d99ba7b0..8edb739a3 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESRes.c index ea23b940e..f6caf4b5b 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESRes.h index 2d491f558..8660d2d6a 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToResumeListRESRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtFail.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtFail.c index 957fc6908..34568dfce 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtFail.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtFail.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToSetupItemCxtFail_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToSetupItemCxtFail, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P154, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P154, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtFail.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtFail.h index c6248f2a5..e554a5510 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtFail.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtFail.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtRes.c index 7c73b23e4..eeaa08b83 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToSetupItemCxtRes_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToSetupItemCxtRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P155, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P155, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtRes.h index b0be3c11b..a79fca5b0 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemCxtRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemHOAck.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemHOAck.c index 1464efc39..2fd6f2c25 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemHOAck.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemHOAck.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToSetupItemHOAck_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToSetupItemHOAck, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P156, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P156, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemHOAck.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemHOAck.h index 7ef7cc829..a945ca1ca 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemHOAck.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemHOAck.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemPSReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemPSReq.c index 3a1793840..99ce14676 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemPSReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemPSReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToSetupItemPSReq_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToSetupItemPSReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P157, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P157, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemPSReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemPSReq.h index edb35bcff..b59787205 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemPSReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemPSReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemSURes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemSURes.c index 7cfd350bd..a265ef7eb 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemSURes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemSURes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceFailedToSetupItemSURes_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceFailedToSetupItemSURes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P158, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P158, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemSURes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemSURes.h index ed1dad3b7..1840edba2 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemSURes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupItemSURes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtFail.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtFail.c index 8bd4a20c5..b51e4152a 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtFail.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtFail.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtFail.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtFail.h index 31267c9dd..a1a915cf3 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtFail.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtFail.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtRes.c index 54be8523e..6ecf6ccfa 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtRes.h index 1c40d2be0..1d79b2f59 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListCxtRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListHOAck.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListHOAck.c index 13ec5a684..a88728171 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListHOAck.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListHOAck.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListHOAck.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListHOAck.h index 8a47b851e..1affd65ab 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListHOAck.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListHOAck.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListPSReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListPSReq.c index 04269d7a1..ac7ffa819 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListPSReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListPSReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListPSReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListPSReq.h index ed1b9fd9d..774bd91c2 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListPSReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListPSReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListSURes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListSURes.c index 8f11b5fa8..cce91a426 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListSURes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListSURes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListSURes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListSURes.h index 94ad16198..94ee24232 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListSURes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceFailedToSetupListSURes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverItem.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverItem.c index 873faf6a5..8fde515e1 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverItem.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceHandoverItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceHandoverItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P159, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P159, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverItem.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverItem.h index e5d2e6cf2..921b1750d 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverItem.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverList.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverList.c index dc4e30c8b..560cd8546 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverList.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverList.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverList.h index 88e47262a..d198a9ec8 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverList.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceHandoverList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationItem.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationItem.c index f4172cac4..7dc40ff24 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationItem.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceInformationItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceInformationItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P160, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P160, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationItem.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationItem.h index 46a5518a1..661a4ccc9 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationItem.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationList.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationList.c index d7f1e78bc..1eb8d7a69 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationList.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationList.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationList.h index f1b189e6e..ee23803ed 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationList.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceInformationList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelCpl.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelCpl.c index 6ef72528f..e5f31cf74 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelCpl.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelCpl.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceItemCxtRelCpl_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceItemCxtRelCpl, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P161, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P161, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelCpl.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelCpl.h index e650997ba..2fff2686b 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelCpl.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelCpl.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelReq.c index af3496d99..432fef41a 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceItemCxtRelReq_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceItemCxtRelReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P162, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P162, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelReq.h index ffdcfa4a6..d0d3ffc42 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemCxtRelReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemHORqd.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemHORqd.c index 4a94d93be..328368f91 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemHORqd.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemHORqd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceItemHORqd_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceItemHORqd, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P163, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P163, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemHORqd.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemHORqd.h index a1c882f6f..b01aa6bcc 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceItemHORqd.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceItemHORqd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelCpl.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelCpl.c index db76eac1d..7e99ea45e 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelCpl.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelCpl.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelCpl.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelCpl.h index c6f1ad15a..febd5d5cd 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelCpl.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelCpl.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelReq.c index 9355959ec..3840afa53 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelReq.h index 680ce2611..46e49c5b5 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceListCxtRelReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceListHORqd.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceListHORqd.c index 6c6272d2d..0fe17ba8e 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceListHORqd.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceListHORqd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceListHORqd.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceListHORqd.h index 8100cc160..8f34d6328 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceListHORqd.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceListHORqd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirm.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirm.c index bba3e413b..3f74d440e 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirm.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirm.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyConfirm_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceModifyConfirm, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P8, + &asn_DEF_NGAP_ProtocolIE_Container_9574P8, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirm.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirm.h index dc8e66df5..5577ce08c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirm.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirm.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceModifyConfirm */ typedef struct NGAP_PDUSessionResourceModifyConfirm { - NGAP_ProtocolIE_Container_9520P8_t protocolIEs; + NGAP_ProtocolIE_Container_9574P8_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirmTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirmTransfer.c index 8213a4c75..f143ecbb5 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirmTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirmTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -82,7 +82,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyConfirmTransfer_1[ { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyConfirmTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P164, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P164, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirmTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirmTransfer.h index aea5541c5..939335afb 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirmTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyConfirmTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndication.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndication.c index 47fbc2ca2..011fbe1ce 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndication.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceModifyIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P7, + &asn_DEF_NGAP_ProtocolIE_Container_9574P7, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndication.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndication.h index 953dcfeeb..f40f65546 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndication.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceModifyIndication */ typedef struct NGAP_PDUSessionResourceModifyIndication { - NGAP_ProtocolIE_Container_9520P7_t protocolIEs; + NGAP_ProtocolIE_Container_9574P7_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationTransfer.c index 49b6e5b33..9aa50d258 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyIndicationTransfer { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyIndicationTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P167, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P167, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationTransfer.h index a1f90c5a0..cf0f8978b 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer.c index c1dff2ea6..15054776c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyIndicationUnsucces { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P165, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P165, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer.h index b7aa80821..c080d5a26 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModCfm.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModCfm.c index 295a76ef3..4b0680740 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModCfm.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModCfm.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyItemModCfm_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyItemModCfm, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P168, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P168, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModCfm.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModCfm.h index 5e7db32c2..ecf79a7b6 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModCfm.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModCfm.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModInd.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModInd.c index b20368c1a..b07e99079 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModInd.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModInd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyItemModInd_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyItemModInd, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P169, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P169, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModInd.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModInd.h index ccf2bb579..5d57c2a98 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModInd.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModInd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModReq.c index dd7f24100..a79f32753 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -91,7 +91,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyItemModReq_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyItemModReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P170, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P170, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModReq.h index 4b941c708..48779ae5e 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModRes.c index 511069a19..e1236cbc8 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyItemModRes_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyItemModRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P171, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P171, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModRes.h index 41b252457..8f4510b46 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyItemModRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModCfm.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModCfm.c index 4551639f5..411aade6a 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModCfm.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModCfm.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModCfm.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModCfm.h index 3c8b05e6a..7c911705b 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModCfm.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModCfm.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModInd.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModInd.c index 36883780a..98034b921 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModInd.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModInd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModInd.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModInd.h index 05657b5fb..89f7f2051 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModInd.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModInd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModReq.c index b0f32ae84..2973f5153 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModReq.h index 0d9e02e29..074ef02f7 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModRes.c index 7b0b26690..805aaf547 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModRes.h index b2be9df6c..b3b955f05 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyListModRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequest.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequest.c index a77aa500b..0c109bb0d 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequest.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceModifyRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P4, + &asn_DEF_NGAP_ProtocolIE_Container_9574P4, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequest.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequest.h index 2c96a93b5..145244b89 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequest.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceModifyRequest */ typedef struct NGAP_PDUSessionResourceModifyRequest { - NGAP_ProtocolIE_Container_9520P4_t protocolIEs; + NGAP_ProtocolIE_Container_9574P4_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequestTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequestTransfer.c index b9c1537b5..797098926 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequestTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequestTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyRequestTransfer_1[ { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceModifyRequestTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P96, + &asn_DEF_NGAP_ProtocolIE_Container_9574P96, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequestTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequestTransfer.h index 2e8928afb..77a3593b7 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequestTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyRequestTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceModifyRequestTransfer */ typedef struct NGAP_PDUSessionResourceModifyRequestTransfer { - NGAP_ProtocolIE_Container_9520P96_t protocolIEs; + NGAP_ProtocolIE_Container_9574P96_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponse.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponse.c index 15ae55992..0ab368c1d 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponse.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceModifyResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P5, + &asn_DEF_NGAP_ProtocolIE_Container_9574P5, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponse.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponse.h index 74c084401..6d6a9f8f3 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponse.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceModifyResponse */ typedef struct NGAP_PDUSessionResourceModifyResponse { - NGAP_ProtocolIE_Container_9520P5_t protocolIEs; + NGAP_ProtocolIE_Container_9574P5_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponseTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponseTransfer.c index 18e6cd075..d94d7d192 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponseTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponseTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -101,7 +101,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyResponseTransfer_1 { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyResponseTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P166, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P166, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponseTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponseTransfer.h index 467c84520..344aad356 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponseTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyResponseTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyUnsuccessfulTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyUnsuccessfulTransfer.c index 84f055102..e945e4918 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyUnsuccessfulTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyUnsuccessfulTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceModifyUnsuccessfulTransf { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceModifyUnsuccessfulTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P172, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P172, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyUnsuccessfulTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyUnsuccessfulTransfer.h index 5aedfadeb..1b8b7f33c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyUnsuccessfulTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceModifyUnsuccessfulTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotify.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotify.c index 8632bd5a8..4bfc7942e 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotify.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotify.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceNotify_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceNotify, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P6, + &asn_DEF_NGAP_ProtocolIE_Container_9574P6, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotify.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotify.h index a3e6ce1c0..861ad9790 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotify.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotify.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceNotify */ typedef struct NGAP_PDUSessionResourceNotify { - NGAP_ProtocolIE_Container_9520P6_t protocolIEs; + NGAP_ProtocolIE_Container_9574P6_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyItem.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyItem.c index b172a4176..02be4af40 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyItem.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceNotifyItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceNotifyItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P173, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P173, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyItem.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyItem.h index e3cffd5ce..13512abe3 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyItem.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyList.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyList.c index 33fa16258..9dcee0a1b 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyList.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyList.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyList.h index b2af7aa7e..842c45b2b 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyList.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyReleasedTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyReleasedTransfer.c index ddee56965..635452058 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyReleasedTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyReleasedTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceNotifyReleasedTransfer_1 { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceNotifyReleasedTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P174, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P174, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyReleasedTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyReleasedTransfer.h index c99eac9a5..89d2cc7ca 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyReleasedTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyReleasedTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyTransfer.c index e7cafb44a..7219118c2 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -48,7 +48,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceNotifyTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceNotifyTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P175, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P175, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyTransfer.h index 9f74e2bfd..f79b9bcc2 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceNotifyTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommand.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommand.c index e41071665..850f61349 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommand.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommand.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceReleaseCommand_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceReleaseCommand, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P2, + &asn_DEF_NGAP_ProtocolIE_Container_9574P2, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommand.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommand.h index 31a010379..f6bac6c5f 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommand.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommand.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceReleaseCommand */ typedef struct NGAP_PDUSessionResourceReleaseCommand { - NGAP_ProtocolIE_Container_9520P2_t protocolIEs; + NGAP_ProtocolIE_Container_9574P2_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommandTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommandTransfer.c index c2e066871..60a794160 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommandTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommandTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceReleaseCommandTransfer_1 { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceReleaseCommandTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P176, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P176, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommandTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommandTransfer.h index b3abb35af..911b2f62a 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommandTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseCommandTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponse.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponse.c index 94f301737..eee830f93 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponse.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceReleaseResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceReleaseResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P3, + &asn_DEF_NGAP_ProtocolIE_Container_9574P3, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponse.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponse.h index dff35bd24..943d3b363 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponse.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceReleaseResponse */ typedef struct NGAP_PDUSessionResourceReleaseResponse { - NGAP_ProtocolIE_Container_9520P3_t protocolIEs; + NGAP_ProtocolIE_Container_9574P3_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponseTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponseTransfer.c index d0b362661..75511c805 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponseTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponseTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -12,7 +12,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceReleaseResponseTransfer_ { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceReleaseResponseTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P181, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P181, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponseTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponseTransfer.h index f2c275b6b..bba1dd99b 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponseTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleaseResponseTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemNot.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemNot.c index ffdb103c6..86c7c665c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemNot.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemNot.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceReleasedItemNot_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceReleasedItemNot, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P177, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P177, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemNot.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemNot.h index 90dcbe275..2a9b28826 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemNot.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemNot.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSAck.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSAck.c index 1dd896d6f..1f4edd2a4 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSAck.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSAck.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceReleasedItemPSAck_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceReleasedItemPSAck, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P178, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P178, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSAck.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSAck.h index dd7b68f3d..a4ea20a28 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSAck.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSAck.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSFail.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSFail.c index 5715ac189..dab0434c9 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSFail.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSFail.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceReleasedItemPSFail_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceReleasedItemPSFail, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P179, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P179, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSFail.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSFail.h index 6052ae6a3..64373c9f6 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSFail.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemPSFail.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemRelRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemRelRes.c index 178d2ba7b..29cc4e977 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemRelRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemRelRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceReleasedItemRelRes_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceReleasedItemRelRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P180, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P180, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemRelRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemRelRes.h index 925d6df53..02ef42b5c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemRelRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedItemRelRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListNot.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListNot.c index 5e6446314..033013e77 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListNot.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListNot.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListNot.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListNot.h index 0efd48e15..dd76c293f 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListNot.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListNot.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSAck.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSAck.c index a99014e62..c0525eaea 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSAck.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSAck.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSAck.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSAck.h index de938972f..4886f8e14 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSAck.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSAck.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSFail.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSFail.c index 0c7851dd1..8dd8c9ca7 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSFail.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSFail.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSFail.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSFail.h index 2bb4c2105..6ec3b6306 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSFail.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListPSFail.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListRelRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListRelRes.c index aba413949..c3f9582b5 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListRelRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListRelRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListRelRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListRelRes.h index 5173cfc8c..25053fa97 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListRelRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceReleasedListRelRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESReq.c index f988a6837..6e621c7c1 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceResumeItemRESReq_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceResumeItemRESReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P182, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P182, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESReq.h index a20bd278a..aee8ae3d9 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESRes.c index 2329cd857..9687c00e3 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceResumeItemRESRes_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceResumeItemRESRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P183, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P183, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESRes.h index 782326324..be5f3bf33 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeItemRESRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESReq.c index 71c1ce67d..5eca0928d 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESReq.h index a92ade15d..5a18d51c0 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESRes.c index c4005e3b2..32cad2fd5 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESRes.h index fca821e69..09e0d8265 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceResumeListRESRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageItem.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageItem.c index c7bd72532..1b23a7ccf 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageItem.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSecondaryRATUsageItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSecondaryRATUsageItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P184, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P184, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageItem.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageItem.h index a01097963..6b4b84948 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageItem.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageList.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageList.c index 8fb1bb4dd..0d63767da 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageList.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageList.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageList.h index c1f3dc62a..3e86847a5 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageList.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSecondaryRATUsageList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtReq.c index 944dab2b5..a1a750b0d 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -108,7 +108,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemCxtReq_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSetupItemCxtReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P185, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P185, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtReq.h index 2c6425202..fd024090d 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtRes.c index 4e7ecb7cc..a8232ca04 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemCxtRes_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSetupItemCxtRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P186, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P186, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtRes.h index 8db706703..c8a780c5d 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemCxtRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemHOReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemHOReq.c index 163d39560..62d08d334 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemHOReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemHOReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -91,7 +91,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemHOReq_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSetupItemHOReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P187, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P187, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemHOReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemHOReq.h index e767869cc..734ff5d08 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemHOReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemHOReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSUReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSUReq.c index a4c3eef10..e0c6d58aa 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSUReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSUReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -108,7 +108,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemSUReq_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSetupItemSUReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P188, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P188, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSUReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSUReq.h index b9142cbe8..a24c01af0 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSUReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSUReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSURes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSURes.c index c0aa62fde..bc7195840 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSURes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSURes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemSURes_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSetupItemSURes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P189, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P189, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSURes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSURes.h index 1fd984aba..bcba550e8 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSURes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupItemSURes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtReq.c index e6d300a17..fefa282d6 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtReq.h index f63a0ad4b..b669de13f 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtRes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtRes.c index 0c68055e9..0eeba65f5 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtRes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtRes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtRes.h index 5ad2b4b81..a9e47b35f 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtRes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListCxtRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListHOReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListHOReq.c index d4a2d9329..9e8c682da 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListHOReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListHOReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListHOReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListHOReq.h index 3e869984f..f019e39d5 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListHOReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListHOReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSUReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSUReq.c index b94d163e9..b8810709d 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSUReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSUReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSUReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSUReq.h index 2fdacf423..4a849f093 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSUReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSUReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSURes.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSURes.c index 2362cbfd6..c2e87e187 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSURes.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSURes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSURes.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSURes.h index 3f61cf30b..566d1194b 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSURes.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupListSURes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequest.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequest.c index f28d2d52e..129a0fa4c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequest.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceSetupRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P0, + &asn_DEF_NGAP_ProtocolIE_Container_9574P0, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequest.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequest.h index 7899f748c..fcb4702d4 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequest.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceSetupRequest */ typedef struct NGAP_PDUSessionResourceSetupRequest { - NGAP_ProtocolIE_Container_9520P0_t protocolIEs; + NGAP_ProtocolIE_Container_9574P0_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequestTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequestTransfer.c index f60d77834..aa21a308f 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequestTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequestTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupRequestTransfer_1[] { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceSetupRequestTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P97, + &asn_DEF_NGAP_ProtocolIE_Container_9574P97, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequestTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequestTransfer.h index d3c820c03..b07f3e1cc 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequestTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupRequestTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceSetupRequestTransfer */ typedef struct NGAP_PDUSessionResourceSetupRequestTransfer { - NGAP_ProtocolIE_Container_9520P97_t protocolIEs; + NGAP_ProtocolIE_Container_9574P97_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponse.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponse.c index 99971d0a9..cbf4dfe87 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponse.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceSetupResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P1, + &asn_DEF_NGAP_ProtocolIE_Container_9574P1, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponse.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponse.h index 299d79ebf..c8440b7f3 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponse.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PDUSessionResourceSetupResponse */ typedef struct NGAP_PDUSessionResourceSetupResponse { - NGAP_ProtocolIE_Container_9520P1_t protocolIEs; + NGAP_ProtocolIE_Container_9574P1_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponseTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponseTransfer.c index 7ed652cf0..9e8732960 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponseTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponseTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -83,7 +83,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupResponseTransfer_1[ { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSetupResponseTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P190, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P190, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponseTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponseTransfer.h index 92c8ba094..eccdb125c 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponseTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupResponseTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupUnsuccessfulTransfer.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupUnsuccessfulTransfer.c index b6ae20c9a..5795a7b10 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupUnsuccessfulTransfer.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupUnsuccessfulTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupUnsuccessfulTransfe { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSetupUnsuccessfulTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P191, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P191, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupUnsuccessfulTransfer.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupUnsuccessfulTransfer.h index f539a11a1..e8b3a10ea 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupUnsuccessfulTransfer.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSetupUnsuccessfulTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendItemSUSReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendItemSUSReq.c index 09b89bde2..79db09edc 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendItemSUSReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendItemSUSReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSuspendItemSUSReq_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSuspendItemSUSReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P192, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P192, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendItemSUSReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendItemSUSReq.h index dffff3f2c..d093f4e49 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendItemSUSReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendItemSUSReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendListSUSReq.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendListSUSReq.c index 161e71921..0b867bded 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendListSUSReq.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendListSUSReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendListSUSReq.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendListSUSReq.h index e5174e689..e4f474653 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendListSUSReq.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSuspendListSUSReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedItem.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedItem.c index 23cb5e06f..4e8b320ca 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedItem.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSwitchedItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceSwitchedItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P193, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P193, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedItem.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedItem.h index de5b07323..e806978f9 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedItem.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedList.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedList.c index 7618da7c3..f3834eef3 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedList.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedList.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedList.h index 7b54e5ebf..b0f2b54c1 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedList.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceSwitchedList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLItem.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLItem.c index bc146a93c..ed9e8bd71 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLItem.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceToBeSwitchedDLItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceToBeSwitchedDLItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P194, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P194, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLItem.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLItem.h index cb5557311..e217a21bf 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLItem.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLList.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLList.c index 52c3e5ca6..9943263bf 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLList.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLList.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLList.h index db8c8a0b6..9d0affb38 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLList.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToBeSwitchedDLList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemHOCmd.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemHOCmd.c index 3a3e1956a..c007f5275 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemHOCmd.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemHOCmd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceToReleaseItemHOCmd_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceToReleaseItemHOCmd, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P195, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P195, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemHOCmd.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemHOCmd.h index 9c77d9cdf..e2dffd397 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemHOCmd.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemHOCmd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemRelCmd.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemRelCmd.c index d1ab0bef8..8d7612c57 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemRelCmd.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemRelCmd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceToReleaseItemRelCmd_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionResourceToReleaseItemRelCmd, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P196, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P196, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemRelCmd.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemRelCmd.h index e93ec6e90..1057f63a6 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemRelCmd.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseItemRelCmd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListHOCmd.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListHOCmd.c index 3e649a80f..ba1396b35 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListHOCmd.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListHOCmd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListHOCmd.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListHOCmd.h index 5d1ca64e6..d7e6170dd 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListHOCmd.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListHOCmd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListRelCmd.c b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListRelCmd.c index fd25a5dbd..ac1d92820 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListRelCmd.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListRelCmd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListRelCmd.h b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListRelCmd.h index 0cbe2327a..8ba90cb01 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListRelCmd.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionResourceToReleaseListRelCmd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionType.c b/lib/asn1c/ngap/NGAP_PDUSessionType.c index 4f0187fad..b288add37 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionType.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionType.h b/lib/asn1c/ngap/NGAP_PDUSessionType.h index 6cf6436a6..a09469a32 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionType.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PDUSessionUsageReport.c b/lib/asn1c/ngap/NGAP_PDUSessionUsageReport.c index 8315466c1..c0b29ab27 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionUsageReport.c +++ b/lib/asn1c/ngap/NGAP_PDUSessionUsageReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -108,7 +108,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionUsageReport_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PDUSessionUsageReport, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P197, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P197, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PDUSessionUsageReport.h b/lib/asn1c/ngap/NGAP_PDUSessionUsageReport.h index 94b73538f..7bd4a0d5f 100644 --- a/lib/asn1c/ngap/NGAP_PDUSessionUsageReport.h +++ b/lib/asn1c/ngap/NGAP_PDUSessionUsageReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PLMNIdentity.c b/lib/asn1c/ngap/NGAP_PLMNIdentity.c index a205b79a9..9302483f2 100644 --- a/lib/asn1c/ngap/NGAP_PLMNIdentity.c +++ b/lib/asn1c/ngap/NGAP_PLMNIdentity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PLMNIdentity.h b/lib/asn1c/ngap/NGAP_PLMNIdentity.h index 9fb3f6130..1234a9167 100644 --- a/lib/asn1c/ngap/NGAP_PLMNIdentity.h +++ b/lib/asn1c/ngap/NGAP_PLMNIdentity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PLMNSupportItem.c b/lib/asn1c/ngap/NGAP_PLMNSupportItem.c index 859f67de2..1139f3a0d 100644 --- a/lib/asn1c/ngap/NGAP_PLMNSupportItem.c +++ b/lib/asn1c/ngap/NGAP_PLMNSupportItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PLMNSupportItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PLMNSupportItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P198, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P198, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PLMNSupportItem.h b/lib/asn1c/ngap/NGAP_PLMNSupportItem.h index 8595fa906..8d256c9fc 100644 --- a/lib/asn1c/ngap/NGAP_PLMNSupportItem.h +++ b/lib/asn1c/ngap/NGAP_PLMNSupportItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PLMNSupportList.c b/lib/asn1c/ngap/NGAP_PLMNSupportList.c index 69358f234..0403266df 100644 --- a/lib/asn1c/ngap/NGAP_PLMNSupportList.c +++ b/lib/asn1c/ngap/NGAP_PLMNSupportList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PLMNSupportList.h b/lib/asn1c/ngap/NGAP_PLMNSupportList.h index b69ac0877..552ed454d 100644 --- a/lib/asn1c/ngap/NGAP_PLMNSupportList.h +++ b/lib/asn1c/ngap/NGAP_PLMNSupportList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PNI-NPN-MobilityInformation.c b/lib/asn1c/ngap/NGAP_PNI-NPN-MobilityInformation.c index 90cb1575c..066a40b9f 100644 --- a/lib/asn1c/ngap/NGAP_PNI-NPN-MobilityInformation.c +++ b/lib/asn1c/ngap/NGAP_PNI-NPN-MobilityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PNI_NPN_MobilityInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PNI_NPN_MobilityInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P199, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P199, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PNI-NPN-MobilityInformation.h b/lib/asn1c/ngap/NGAP_PNI-NPN-MobilityInformation.h index a468a6044..7c8859ca4 100644 --- a/lib/asn1c/ngap/NGAP_PNI-NPN-MobilityInformation.h +++ b/lib/asn1c/ngap/NGAP_PNI-NPN-MobilityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PWSCancelRequest.c b/lib/asn1c/ngap/NGAP_PWSCancelRequest.c index 7988faf88..524787eab 100644 --- a/lib/asn1c/ngap/NGAP_PWSCancelRequest.c +++ b/lib/asn1c/ngap/NGAP_PWSCancelRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PWSCancelRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PWSCancelRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P70, + &asn_DEF_NGAP_ProtocolIE_Container_9574P70, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PWSCancelRequest.h b/lib/asn1c/ngap/NGAP_PWSCancelRequest.h index 7d793221e..60e61cf7a 100644 --- a/lib/asn1c/ngap/NGAP_PWSCancelRequest.h +++ b/lib/asn1c/ngap/NGAP_PWSCancelRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PWSCancelRequest */ typedef struct NGAP_PWSCancelRequest { - NGAP_ProtocolIE_Container_9520P70_t protocolIEs; + NGAP_ProtocolIE_Container_9574P70_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PWSCancelResponse.c b/lib/asn1c/ngap/NGAP_PWSCancelResponse.c index 8ab6420d0..73e9e583c 100644 --- a/lib/asn1c/ngap/NGAP_PWSCancelResponse.c +++ b/lib/asn1c/ngap/NGAP_PWSCancelResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PWSCancelResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PWSCancelResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P71, + &asn_DEF_NGAP_ProtocolIE_Container_9574P71, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PWSCancelResponse.h b/lib/asn1c/ngap/NGAP_PWSCancelResponse.h index 9ab954bc9..d427553b4 100644 --- a/lib/asn1c/ngap/NGAP_PWSCancelResponse.h +++ b/lib/asn1c/ngap/NGAP_PWSCancelResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PWSCancelResponse */ typedef struct NGAP_PWSCancelResponse { - NGAP_ProtocolIE_Container_9520P71_t protocolIEs; + NGAP_ProtocolIE_Container_9574P71_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PWSFailedCellIDList.c b/lib/asn1c/ngap/NGAP_PWSFailedCellIDList.c index d7c153c9d..375f8bfb7 100644 --- a/lib/asn1c/ngap/NGAP_PWSFailedCellIDList.c +++ b/lib/asn1c/ngap/NGAP_PWSFailedCellIDList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PWSFailedCellIDList_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_PWSFailedCellIDList, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PWSFailedCellIDList.h b/lib/asn1c/ngap/NGAP_PWSFailedCellIDList.h index 703d501c8..c27fe80c3 100644 --- a/lib/asn1c/ngap/NGAP_PWSFailedCellIDList.h +++ b/lib/asn1c/ngap/NGAP_PWSFailedCellIDList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PWSFailureIndication.c b/lib/asn1c/ngap/NGAP_PWSFailureIndication.c index 046488d1c..70f69c72e 100644 --- a/lib/asn1c/ngap/NGAP_PWSFailureIndication.c +++ b/lib/asn1c/ngap/NGAP_PWSFailureIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PWSFailureIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PWSFailureIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P73, + &asn_DEF_NGAP_ProtocolIE_Container_9574P73, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PWSFailureIndication.h b/lib/asn1c/ngap/NGAP_PWSFailureIndication.h index 187e269e4..db03ed25c 100644 --- a/lib/asn1c/ngap/NGAP_PWSFailureIndication.h +++ b/lib/asn1c/ngap/NGAP_PWSFailureIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PWSFailureIndication */ typedef struct NGAP_PWSFailureIndication { - NGAP_ProtocolIE_Container_9520P73_t protocolIEs; + NGAP_ProtocolIE_Container_9574P73_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PWSRestartIndication.c b/lib/asn1c/ngap/NGAP_PWSRestartIndication.c index b2b198440..9bcb9733e 100644 --- a/lib/asn1c/ngap/NGAP_PWSRestartIndication.c +++ b/lib/asn1c/ngap/NGAP_PWSRestartIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PWSRestartIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PWSRestartIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P72, + &asn_DEF_NGAP_ProtocolIE_Container_9574P72, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PWSRestartIndication.h b/lib/asn1c/ngap/NGAP_PWSRestartIndication.h index d6381aca6..c00d29ee6 100644 --- a/lib/asn1c/ngap/NGAP_PWSRestartIndication.h +++ b/lib/asn1c/ngap/NGAP_PWSRestartIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PWSRestartIndication */ typedef struct NGAP_PWSRestartIndication { - NGAP_ProtocolIE_Container_9520P72_t protocolIEs; + NGAP_ProtocolIE_Container_9574P72_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PacketDelayBudget.c b/lib/asn1c/ngap/NGAP_PacketDelayBudget.c index b15aa5ce1..dfc4e85c8 100644 --- a/lib/asn1c/ngap/NGAP_PacketDelayBudget.c +++ b/lib/asn1c/ngap/NGAP_PacketDelayBudget.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PacketDelayBudget.h b/lib/asn1c/ngap/NGAP_PacketDelayBudget.h index 17922d9e2..311ec1313 100644 --- a/lib/asn1c/ngap/NGAP_PacketDelayBudget.h +++ b/lib/asn1c/ngap/NGAP_PacketDelayBudget.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PacketErrorRate.c b/lib/asn1c/ngap/NGAP_PacketErrorRate.c index 41bf3624d..0ed452b2b 100644 --- a/lib/asn1c/ngap/NGAP_PacketErrorRate.c +++ b/lib/asn1c/ngap/NGAP_PacketErrorRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -110,7 +110,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PacketErrorRate_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PacketErrorRate, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P137, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P137, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PacketErrorRate.h b/lib/asn1c/ngap/NGAP_PacketErrorRate.h index a4a5e6da7..d9b3cd8b0 100644 --- a/lib/asn1c/ngap/NGAP_PacketErrorRate.h +++ b/lib/asn1c/ngap/NGAP_PacketErrorRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PacketLossRate.c b/lib/asn1c/ngap/NGAP_PacketLossRate.c index 18ecffca7..a0360bd22 100644 --- a/lib/asn1c/ngap/NGAP_PacketLossRate.c +++ b/lib/asn1c/ngap/NGAP_PacketLossRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PacketLossRate.h b/lib/asn1c/ngap/NGAP_PacketLossRate.h index 81fad1a53..36c61f0b5 100644 --- a/lib/asn1c/ngap/NGAP_PacketLossRate.h +++ b/lib/asn1c/ngap/NGAP_PacketLossRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Paging-Time-Window.c b/lib/asn1c/ngap/NGAP_Paging-Time-Window.c index 45e4719d4..3f96b7570 100644 --- a/lib/asn1c/ngap/NGAP_Paging-Time-Window.c +++ b/lib/asn1c/ngap/NGAP_Paging-Time-Window.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Paging-Time-Window.h b/lib/asn1c/ngap/NGAP_Paging-Time-Window.h index 69cb65cf1..56be0a4ed 100644 --- a/lib/asn1c/ngap/NGAP_Paging-Time-Window.h +++ b/lib/asn1c/ngap/NGAP_Paging-Time-Window.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Paging-eDRX-Cycle.c b/lib/asn1c/ngap/NGAP_Paging-eDRX-Cycle.c index bb578d6de..ee8b4a4e9 100644 --- a/lib/asn1c/ngap/NGAP_Paging-eDRX-Cycle.c +++ b/lib/asn1c/ngap/NGAP_Paging-eDRX-Cycle.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Paging-eDRX-Cycle.h b/lib/asn1c/ngap/NGAP_Paging-eDRX-Cycle.h index 03659b88b..399a81db5 100644 --- a/lib/asn1c/ngap/NGAP_Paging-eDRX-Cycle.h +++ b/lib/asn1c/ngap/NGAP_Paging-eDRX-Cycle.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Paging.c b/lib/asn1c/ngap/NGAP_Paging.c index 3250267b1..87a152b51 100644 --- a/lib/asn1c/ngap/NGAP_Paging.c +++ b/lib/asn1c/ngap/NGAP_Paging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_Paging_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_Paging, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P45, + &asn_DEF_NGAP_ProtocolIE_Container_9574P45, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_Paging.h b/lib/asn1c/ngap/NGAP_Paging.h index e408566ac..d40662dee 100644 --- a/lib/asn1c/ngap/NGAP_Paging.h +++ b/lib/asn1c/ngap/NGAP_Paging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_Paging */ typedef struct NGAP_Paging { - NGAP_ProtocolIE_Container_9520P45_t protocolIEs; + NGAP_ProtocolIE_Container_9574P45_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PagingAssisDataforCEcapabUE.c b/lib/asn1c/ngap/NGAP_PagingAssisDataforCEcapabUE.c index c8b485296..6fe591a00 100644 --- a/lib/asn1c/ngap/NGAP_PagingAssisDataforCEcapabUE.c +++ b/lib/asn1c/ngap/NGAP_PagingAssisDataforCEcapabUE.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PagingAssisDataforCEcapabUE_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PagingAssisDataforCEcapabUE, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P138, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P138, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PagingAssisDataforCEcapabUE.h b/lib/asn1c/ngap/NGAP_PagingAssisDataforCEcapabUE.h index cecfe4192..4a0d76891 100644 --- a/lib/asn1c/ngap/NGAP_PagingAssisDataforCEcapabUE.h +++ b/lib/asn1c/ngap/NGAP_PagingAssisDataforCEcapabUE.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingAttemptCount.c b/lib/asn1c/ngap/NGAP_PagingAttemptCount.c index 36007ace2..6134179f9 100644 --- a/lib/asn1c/ngap/NGAP_PagingAttemptCount.c +++ b/lib/asn1c/ngap/NGAP_PagingAttemptCount.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingAttemptCount.h b/lib/asn1c/ngap/NGAP_PagingAttemptCount.h index 27d53ba3a..b5ce1c532 100644 --- a/lib/asn1c/ngap/NGAP_PagingAttemptCount.h +++ b/lib/asn1c/ngap/NGAP_PagingAttemptCount.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingAttemptInformation.c b/lib/asn1c/ngap/NGAP_PagingAttemptInformation.c index e6292e616..a98e80f4e 100644 --- a/lib/asn1c/ngap/NGAP_PagingAttemptInformation.c +++ b/lib/asn1c/ngap/NGAP_PagingAttemptInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PagingAttemptInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PagingAttemptInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P139, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P139, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PagingAttemptInformation.h b/lib/asn1c/ngap/NGAP_PagingAttemptInformation.h index 6a9be398d..7f938d19b 100644 --- a/lib/asn1c/ngap/NGAP_PagingAttemptInformation.h +++ b/lib/asn1c/ngap/NGAP_PagingAttemptInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingDRX.c b/lib/asn1c/ngap/NGAP_PagingDRX.c index 5d3efeb25..733225e4a 100644 --- a/lib/asn1c/ngap/NGAP_PagingDRX.c +++ b/lib/asn1c/ngap/NGAP_PagingDRX.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingDRX.h b/lib/asn1c/ngap/NGAP_PagingDRX.h index 72bcf2cf3..87f6707be 100644 --- a/lib/asn1c/ngap/NGAP_PagingDRX.h +++ b/lib/asn1c/ngap/NGAP_PagingDRX.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingOrigin.c b/lib/asn1c/ngap/NGAP_PagingOrigin.c index aecba2b38..81059ae9a 100644 --- a/lib/asn1c/ngap/NGAP_PagingOrigin.c +++ b/lib/asn1c/ngap/NGAP_PagingOrigin.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingOrigin.h b/lib/asn1c/ngap/NGAP_PagingOrigin.h index d77bcfaaf..892bd81bd 100644 --- a/lib/asn1c/ngap/NGAP_PagingOrigin.h +++ b/lib/asn1c/ngap/NGAP_PagingOrigin.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingPriority.c b/lib/asn1c/ngap/NGAP_PagingPriority.c index 059f00bf9..10192817d 100644 --- a/lib/asn1c/ngap/NGAP_PagingPriority.c +++ b/lib/asn1c/ngap/NGAP_PagingPriority.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingPriority.h b/lib/asn1c/ngap/NGAP_PagingPriority.h index 7475f1c11..22017dd70 100644 --- a/lib/asn1c/ngap/NGAP_PagingPriority.h +++ b/lib/asn1c/ngap/NGAP_PagingPriority.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingProbabilityInformation.c b/lib/asn1c/ngap/NGAP_PagingProbabilityInformation.c index 56ac614c6..2858aab1a 100644 --- a/lib/asn1c/ngap/NGAP_PagingProbabilityInformation.c +++ b/lib/asn1c/ngap/NGAP_PagingProbabilityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingProbabilityInformation.h b/lib/asn1c/ngap/NGAP_PagingProbabilityInformation.h index bc23d5530..504fac1e7 100644 --- a/lib/asn1c/ngap/NGAP_PagingProbabilityInformation.h +++ b/lib/asn1c/ngap/NGAP_PagingProbabilityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PagingeDRXInformation.c b/lib/asn1c/ngap/NGAP_PagingeDRXInformation.c index 036e2b155..f9ce04728 100644 --- a/lib/asn1c/ngap/NGAP_PagingeDRXInformation.c +++ b/lib/asn1c/ngap/NGAP_PagingeDRXInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PagingeDRXInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PagingeDRXInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P140, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P140, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PagingeDRXInformation.h b/lib/asn1c/ngap/NGAP_PagingeDRXInformation.h index bcb1a31ff..8dd48ea86 100644 --- a/lib/asn1c/ngap/NGAP_PagingeDRXInformation.h +++ b/lib/asn1c/ngap/NGAP_PagingeDRXInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequest.c b/lib/asn1c/ngap/NGAP_PathSwitchRequest.c index d122cc71e..8b589c13a 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequest.c +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PathSwitchRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PathSwitchRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P35, + &asn_DEF_NGAP_ProtocolIE_Container_9574P35, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequest.h b/lib/asn1c/ngap/NGAP_PathSwitchRequest.h index 12f0fd0c6..c73d46e80 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequest.h +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PathSwitchRequest */ typedef struct NGAP_PathSwitchRequest { - NGAP_ProtocolIE_Container_9520P35_t protocolIEs; + NGAP_ProtocolIE_Container_9574P35_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledge.c b/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledge.c index d2c8684aa..e47ddb544 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledge.c +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PathSwitchRequestAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PathSwitchRequestAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P36, + &asn_DEF_NGAP_ProtocolIE_Container_9574P36, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledge.h b/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledge.h index 6d428efe6..362d78301 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledge.h +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PathSwitchRequestAcknowledge */ typedef struct NGAP_PathSwitchRequestAcknowledge { - NGAP_ProtocolIE_Container_9520P36_t protocolIEs; + NGAP_ProtocolIE_Container_9574P36_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledgeTransfer.c b/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledgeTransfer.c index a207185d5..21a24efa7 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledgeTransfer.c +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledgeTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -48,7 +48,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PathSwitchRequestAcknowledgeTransfer_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_PathSwitchRequestAcknowledgeTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P141, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P141, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledgeTransfer.h b/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledgeTransfer.h index 7ebd4b682..4a5b91441 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledgeTransfer.h +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestAcknowledgeTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestFailure.c b/lib/asn1c/ngap/NGAP_PathSwitchRequestFailure.c index 07789955f..3c5d4cbf5 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestFailure.c +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PathSwitchRequestFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PathSwitchRequestFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P37, + &asn_DEF_NGAP_ProtocolIE_Container_9574P37, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestFailure.h b/lib/asn1c/ngap/NGAP_PathSwitchRequestFailure.h index b02c5597f..4afcef831 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestFailure.h +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PathSwitchRequestFailure */ typedef struct NGAP_PathSwitchRequestFailure { - NGAP_ProtocolIE_Container_9520P37_t protocolIEs; + NGAP_ProtocolIE_Container_9574P37_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestSetupFailedTransfer.c b/lib/asn1c/ngap/NGAP_PathSwitchRequestSetupFailedTransfer.c index 84bfa1611..8eb82984d 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestSetupFailedTransfer.c +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestSetupFailedTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PathSwitchRequestSetupFailedTransfer_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_PathSwitchRequestSetupFailedTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P142, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P142, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestSetupFailedTransfer.h b/lib/asn1c/ngap/NGAP_PathSwitchRequestSetupFailedTransfer.h index f503bb6ad..164788cf5 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestSetupFailedTransfer.h +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestSetupFailedTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestTransfer.c b/lib/asn1c/ngap/NGAP_PathSwitchRequestTransfer.c index f7f35e8c4..9a95a7001 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestTransfer.c +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -81,7 +81,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PathSwitchRequestTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_PathSwitchRequestTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P143, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P143, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestTransfer.h b/lib/asn1c/ngap/NGAP_PathSwitchRequestTransfer.h index 8f12c4bb7..efef4ba95 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestTransfer.h +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestUnsuccessfulTransfer.c b/lib/asn1c/ngap/NGAP_PathSwitchRequestUnsuccessfulTransfer.c index 72f25c523..93b85ad54 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestUnsuccessfulTransfer.c +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestUnsuccessfulTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_PathSwitchRequestUnsuccessfulTransfer_1[] { ATF_POINTER, 1, offsetof(struct NGAP_PathSwitchRequestUnsuccessfulTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P144, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P144, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PathSwitchRequestUnsuccessfulTransfer.h b/lib/asn1c/ngap/NGAP_PathSwitchRequestUnsuccessfulTransfer.h index 337ca5184..3c99fc143 100644 --- a/lib/asn1c/ngap/NGAP_PathSwitchRequestUnsuccessfulTransfer.h +++ b/lib/asn1c/ngap/NGAP_PathSwitchRequestUnsuccessfulTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PedestrianUE.c b/lib/asn1c/ngap/NGAP_PedestrianUE.c index 878908cbd..c46a88b43 100644 --- a/lib/asn1c/ngap/NGAP_PedestrianUE.c +++ b/lib/asn1c/ngap/NGAP_PedestrianUE.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PedestrianUE.h b/lib/asn1c/ngap/NGAP_PedestrianUE.h index 7cc5d2b35..5408ccdf7 100644 --- a/lib/asn1c/ngap/NGAP_PedestrianUE.h +++ b/lib/asn1c/ngap/NGAP_PedestrianUE.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PeriodicRegistrationUpdateTimer.c b/lib/asn1c/ngap/NGAP_PeriodicRegistrationUpdateTimer.c index acd7f89e5..2ef176eb6 100644 --- a/lib/asn1c/ngap/NGAP_PeriodicRegistrationUpdateTimer.c +++ b/lib/asn1c/ngap/NGAP_PeriodicRegistrationUpdateTimer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PeriodicRegistrationUpdateTimer.h b/lib/asn1c/ngap/NGAP_PeriodicRegistrationUpdateTimer.h index aee9f42e6..a76296483 100644 --- a/lib/asn1c/ngap/NGAP_PeriodicRegistrationUpdateTimer.h +++ b/lib/asn1c/ngap/NGAP_PeriodicRegistrationUpdateTimer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Periodicity.c b/lib/asn1c/ngap/NGAP_Periodicity.c index f8e93b91a..981fb8e5b 100644 --- a/lib/asn1c/ngap/NGAP_Periodicity.c +++ b/lib/asn1c/ngap/NGAP_Periodicity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Periodicity.h b/lib/asn1c/ngap/NGAP_Periodicity.h index ca77550bf..083aa478c 100644 --- a/lib/asn1c/ngap/NGAP_Periodicity.h +++ b/lib/asn1c/ngap/NGAP_Periodicity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PortNumber.c b/lib/asn1c/ngap/NGAP_PortNumber.c index 885a9f62e..c6b084076 100644 --- a/lib/asn1c/ngap/NGAP_PortNumber.c +++ b/lib/asn1c/ngap/NGAP_PortNumber.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PortNumber.h b/lib/asn1c/ngap/NGAP_PortNumber.h index 58c41be58..38487349a 100644 --- a/lib/asn1c/ngap/NGAP_PortNumber.h +++ b/lib/asn1c/ngap/NGAP_PortNumber.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Pre-emptionCapability.c b/lib/asn1c/ngap/NGAP_Pre-emptionCapability.c index d65455f8f..ec964be39 100644 --- a/lib/asn1c/ngap/NGAP_Pre-emptionCapability.c +++ b/lib/asn1c/ngap/NGAP_Pre-emptionCapability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Pre-emptionCapability.h b/lib/asn1c/ngap/NGAP_Pre-emptionCapability.h index 8ec7fe550..d226a23a0 100644 --- a/lib/asn1c/ngap/NGAP_Pre-emptionCapability.h +++ b/lib/asn1c/ngap/NGAP_Pre-emptionCapability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Pre-emptionVulnerability.c b/lib/asn1c/ngap/NGAP_Pre-emptionVulnerability.c index ace1ada4d..66ed7009f 100644 --- a/lib/asn1c/ngap/NGAP_Pre-emptionVulnerability.c +++ b/lib/asn1c/ngap/NGAP_Pre-emptionVulnerability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Pre-emptionVulnerability.h b/lib/asn1c/ngap/NGAP_Pre-emptionVulnerability.h index fa7eced4b..e1bce21af 100644 --- a/lib/asn1c/ngap/NGAP_Pre-emptionVulnerability.h +++ b/lib/asn1c/ngap/NGAP_Pre-emptionVulnerability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Presence.c b/lib/asn1c/ngap/NGAP_Presence.c index 8e88e8e88..944a5297b 100644 --- a/lib/asn1c/ngap/NGAP_Presence.c +++ b/lib/asn1c/ngap/NGAP_Presence.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Presence.h b/lib/asn1c/ngap/NGAP_Presence.h index 96fbc8f3b..d9316e970 100644 --- a/lib/asn1c/ngap/NGAP_Presence.h +++ b/lib/asn1c/ngap/NGAP_Presence.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PriorityLevelARP.c b/lib/asn1c/ngap/NGAP_PriorityLevelARP.c index 63ca2420d..e212eb0d3 100644 --- a/lib/asn1c/ngap/NGAP_PriorityLevelARP.c +++ b/lib/asn1c/ngap/NGAP_PriorityLevelARP.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PriorityLevelARP.h b/lib/asn1c/ngap/NGAP_PriorityLevelARP.h index 3c4695407..5afb5aab6 100644 --- a/lib/asn1c/ngap/NGAP_PriorityLevelARP.h +++ b/lib/asn1c/ngap/NGAP_PriorityLevelARP.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PriorityLevelQos.c b/lib/asn1c/ngap/NGAP_PriorityLevelQos.c index b0072aa60..d66e537d6 100644 --- a/lib/asn1c/ngap/NGAP_PriorityLevelQos.c +++ b/lib/asn1c/ngap/NGAP_PriorityLevelQos.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PriorityLevelQos.h b/lib/asn1c/ngap/NGAP_PriorityLevelQos.h index e54a0210b..572e5d3f9 100644 --- a/lib/asn1c/ngap/NGAP_PriorityLevelQos.h +++ b/lib/asn1c/ngap/NGAP_PriorityLevelQos.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PrivacyIndicator.c b/lib/asn1c/ngap/NGAP_PrivacyIndicator.c index 667c58f86..dc8260148 100644 --- a/lib/asn1c/ngap/NGAP_PrivacyIndicator.c +++ b/lib/asn1c/ngap/NGAP_PrivacyIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PrivacyIndicator.h b/lib/asn1c/ngap/NGAP_PrivacyIndicator.h index 5cefd9ce6..f2c6ed354 100644 --- a/lib/asn1c/ngap/NGAP_PrivacyIndicator.h +++ b/lib/asn1c/ngap/NGAP_PrivacyIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PrivateIE-Container.c b/lib/asn1c/ngap/NGAP_PrivateIE-Container.c index c018305d0..1382a5810 100644 --- a/lib/asn1c/ngap/NGAP_PrivateIE-Container.c +++ b/lib/asn1c/ngap/NGAP_PrivateIE-Container.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -9,13 +9,13 @@ #include "NGAP_PrivateIE-Field.h" #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_PrivateIE_Container_9587P0_constr_1 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_PrivateIE_Container_9641P0_constr_1 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ -asn_TYPE_member_t asn_MBR_NGAP_PrivateIE_Container_9587P0_1[] = { +asn_TYPE_member_t asn_MBR_NGAP_PrivateIE_Container_9641P0_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -34,35 +34,35 @@ asn_TYPE_member_t asn_MBR_NGAP_PrivateIE_Container_9587P0_1[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_PrivateIE_Container_9587P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_PrivateIE_Container_9641P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_PrivateIE_Container_9587P0_specs_1 = { - sizeof(struct NGAP_PrivateIE_Container_9587P0), - offsetof(struct NGAP_PrivateIE_Container_9587P0, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_PrivateIE_Container_9641P0_specs_1 = { + sizeof(struct NGAP_PrivateIE_Container_9641P0), + offsetof(struct NGAP_PrivateIE_Container_9641P0, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_PrivateIE_Container_9587P0 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_PrivateIE_Container_9641P0 = { "PrivateIE-Container", "PrivateIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_PrivateIE_Container_9587P0_tags_1, - sizeof(asn_DEF_NGAP_PrivateIE_Container_9587P0_tags_1) - /sizeof(asn_DEF_NGAP_PrivateIE_Container_9587P0_tags_1[0]), /* 1 */ - asn_DEF_NGAP_PrivateIE_Container_9587P0_tags_1, /* Same as above */ - sizeof(asn_DEF_NGAP_PrivateIE_Container_9587P0_tags_1) - /sizeof(asn_DEF_NGAP_PrivateIE_Container_9587P0_tags_1[0]), /* 1 */ + asn_DEF_NGAP_PrivateIE_Container_9641P0_tags_1, + sizeof(asn_DEF_NGAP_PrivateIE_Container_9641P0_tags_1) + /sizeof(asn_DEF_NGAP_PrivateIE_Container_9641P0_tags_1[0]), /* 1 */ + asn_DEF_NGAP_PrivateIE_Container_9641P0_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_PrivateIE_Container_9641P0_tags_1) + /sizeof(asn_DEF_NGAP_PrivateIE_Container_9641P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_PrivateIE_Container_9587P0_constr_1, + &asn_PER_type_NGAP_PrivateIE_Container_9641P0_constr_1, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_PrivateIE_Container_9587P0_1, + asn_MBR_NGAP_PrivateIE_Container_9641P0_1, 1, /* Single element */ - &asn_SPC_NGAP_PrivateIE_Container_9587P0_specs_1 /* Additional specs */ + &asn_SPC_NGAP_PrivateIE_Container_9641P0_specs_1 /* Additional specs */ }; diff --git a/lib/asn1c/ngap/NGAP_PrivateIE-Container.h b/lib/asn1c/ngap/NGAP_PrivateIE-Container.h index 004852238..2769ab02b 100644 --- a/lib/asn1c/ngap/NGAP_PrivateIE-Container.h +++ b/lib/asn1c/ngap/NGAP_PrivateIE-Container.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -23,18 +23,18 @@ extern "C" { struct NGAP_PrivateMessageIEs; /* NGAP_PrivateIE-Container */ -typedef struct NGAP_PrivateIE_Container_9587P0 { +typedef struct NGAP_PrivateIE_Container_9641P0 { A_SEQUENCE_OF(struct NGAP_PrivateMessageIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_PrivateIE_Container_9587P0_t; +} NGAP_PrivateIE_Container_9641P0_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_NGAP_PrivateIE_Container_9587P0; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_PrivateIE_Container_9587P0_specs_1; -extern asn_TYPE_member_t asn_MBR_NGAP_PrivateIE_Container_9587P0_1[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_PrivateIE_Container_9587P0_constr_1; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_PrivateIE_Container_9641P0; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_PrivateIE_Container_9641P0_specs_1; +extern asn_TYPE_member_t asn_MBR_NGAP_PrivateIE_Container_9641P0_1[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_PrivateIE_Container_9641P0_constr_1; #ifdef __cplusplus } diff --git a/lib/asn1c/ngap/NGAP_PrivateIE-Field.c b/lib/asn1c/ngap/NGAP_PrivateIE-Field.c index 94c93022d..bfa9d1e6d 100644 --- a/lib/asn1c/ngap/NGAP_PrivateIE-Field.c +++ b/lib/asn1c/ngap/NGAP_PrivateIE-Field.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PrivateIE-Field.h b/lib/asn1c/ngap/NGAP_PrivateIE-Field.h index 8cac9e609..6446cec5f 100644 --- a/lib/asn1c/ngap/NGAP_PrivateIE-Field.h +++ b/lib/asn1c/ngap/NGAP_PrivateIE-Field.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PrivateIE-ID.c b/lib/asn1c/ngap/NGAP_PrivateIE-ID.c index 8a61a6f6d..2a5641ca0 100644 --- a/lib/asn1c/ngap/NGAP_PrivateIE-ID.c +++ b/lib/asn1c/ngap/NGAP_PrivateIE-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PrivateIE-ID.h b/lib/asn1c/ngap/NGAP_PrivateIE-ID.h index 5ddc27387..c92d30a47 100644 --- a/lib/asn1c/ngap/NGAP_PrivateIE-ID.h +++ b/lib/asn1c/ngap/NGAP_PrivateIE-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_PrivateMessage.c b/lib/asn1c/ngap/NGAP_PrivateMessage.c index 4ffb5a83a..cf5a71729 100644 --- a/lib/asn1c/ngap/NGAP_PrivateMessage.c +++ b/lib/asn1c/ngap/NGAP_PrivateMessage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PrivateMessage_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_PrivateMessage, privateIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_PrivateIE_Container_9587P0, + &asn_DEF_NGAP_PrivateIE_Container_9641P0, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_PrivateMessage.h b/lib/asn1c/ngap/NGAP_PrivateMessage.h index ab197fa84..a9b187e8a 100644 --- a/lib/asn1c/ngap/NGAP_PrivateMessage.h +++ b/lib/asn1c/ngap/NGAP_PrivateMessage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_PrivateMessage */ typedef struct NGAP_PrivateMessage { - NGAP_PrivateIE_Container_9587P0_t privateIEs; + NGAP_PrivateIE_Container_9641P0_t privateIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_ProcedureCode.c b/lib/asn1c/ngap/NGAP_ProcedureCode.c index cf496b9f6..962aa9327 100644 --- a/lib/asn1c/ngap/NGAP_ProcedureCode.c +++ b/lib/asn1c/ngap/NGAP_ProcedureCode.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ProcedureCode.h b/lib/asn1c/ngap/NGAP_ProcedureCode.h index 985f36343..9f57752cb 100644 --- a/lib/asn1c/ngap/NGAP_ProcedureCode.h +++ b/lib/asn1c/ngap/NGAP_ProcedureCode.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ProcedureStageChoice.c b/lib/asn1c/ngap/NGAP_ProcedureStageChoice.c index 9b59cf92b..1ad2920bf 100644 --- a/lib/asn1c/ngap/NGAP_ProcedureStageChoice.c +++ b/lib/asn1c/ngap/NGAP_ProcedureStageChoice.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -37,7 +37,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ProcedureStageChoice_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_ProcedureStageChoice, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ProcedureStageChoice.h b/lib/asn1c/ngap/NGAP_ProcedureStageChoice.h index c0e134ed5..f2cc5e0c6 100644 --- a/lib/asn1c/ngap/NGAP_ProcedureStageChoice.h +++ b/lib/asn1c/ngap/NGAP_ProcedureStageChoice.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ProtocolExtensionContainer.c b/lib/asn1c/ngap/NGAP_ProtocolExtensionContainer.c index edb070ab6..821b99a2b 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolExtensionContainer.c +++ b/lib/asn1c/ngap/NGAP_ProtocolExtensionContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -9,2036 +9,2043 @@ #include "NGAP_ProtocolExtensionField.h" #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P0_constr_1 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P0_constr_1 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P1_constr_3 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P1_constr_3 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P2_constr_5 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P2_constr_5 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P3_constr_7 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P3_constr_7 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P4_constr_9 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P4_constr_9 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P5_constr_11 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P5_constr_11 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P6_constr_13 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P6_constr_13 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P7_constr_15 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P7_constr_15 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P8_constr_17 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P8_constr_17 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P9_constr_19 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P9_constr_19 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P10_constr_21 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P10_constr_21 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P11_constr_23 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P11_constr_23 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P12_constr_25 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P12_constr_25 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P13_constr_27 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P13_constr_27 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P14_constr_29 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P14_constr_29 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P15_constr_31 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P15_constr_31 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P16_constr_33 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P16_constr_33 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P17_constr_35 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P17_constr_35 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P18_constr_37 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P18_constr_37 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P19_constr_39 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P19_constr_39 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P20_constr_41 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P20_constr_41 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P21_constr_43 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P21_constr_43 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P22_constr_45 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P22_constr_45 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P23_constr_47 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P23_constr_47 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P24_constr_49 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P24_constr_49 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P25_constr_51 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P25_constr_51 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P26_constr_53 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P26_constr_53 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P27_constr_55 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P27_constr_55 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P28_constr_57 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P28_constr_57 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P29_constr_59 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P29_constr_59 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P30_constr_61 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P30_constr_61 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P31_constr_63 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P31_constr_63 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P32_constr_65 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P32_constr_65 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P33_constr_67 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P33_constr_67 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P34_constr_69 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P34_constr_69 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P35_constr_71 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P35_constr_71 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P36_constr_73 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P36_constr_73 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P37_constr_75 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P37_constr_75 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P38_constr_77 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P38_constr_77 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P39_constr_79 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P39_constr_79 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P40_constr_81 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P40_constr_81 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P41_constr_83 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P41_constr_83 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P42_constr_85 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P42_constr_85 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P43_constr_87 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P43_constr_87 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P44_constr_89 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P44_constr_89 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P45_constr_91 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P45_constr_91 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P46_constr_93 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P46_constr_93 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P47_constr_95 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P47_constr_95 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P48_constr_97 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P48_constr_97 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P49_constr_99 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P49_constr_99 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P50_constr_101 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P50_constr_101 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P51_constr_103 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P51_constr_103 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P52_constr_105 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P52_constr_105 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P53_constr_107 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P53_constr_107 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P54_constr_109 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P54_constr_109 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P55_constr_111 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P55_constr_111 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P56_constr_113 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P56_constr_113 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P57_constr_115 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P57_constr_115 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P58_constr_117 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P58_constr_117 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P59_constr_119 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P59_constr_119 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P60_constr_121 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P60_constr_121 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P61_constr_123 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P61_constr_123 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P62_constr_125 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P62_constr_125 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P63_constr_127 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P63_constr_127 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P64_constr_129 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P64_constr_129 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P65_constr_131 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P65_constr_131 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P66_constr_133 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P66_constr_133 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P67_constr_135 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P67_constr_135 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P68_constr_137 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P68_constr_137 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P69_constr_139 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P69_constr_139 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P70_constr_141 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P70_constr_141 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P71_constr_143 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P71_constr_143 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P72_constr_145 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P72_constr_145 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P73_constr_147 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P73_constr_147 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P74_constr_149 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P74_constr_149 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P75_constr_151 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P75_constr_151 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P76_constr_153 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P76_constr_153 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P77_constr_155 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P77_constr_155 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P78_constr_157 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P78_constr_157 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P79_constr_159 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P79_constr_159 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P80_constr_161 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P80_constr_161 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P81_constr_163 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P81_constr_163 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P82_constr_165 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P82_constr_165 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P83_constr_167 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P83_constr_167 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P84_constr_169 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P84_constr_169 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P85_constr_171 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P85_constr_171 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P86_constr_173 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P86_constr_173 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P87_constr_175 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P87_constr_175 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P88_constr_177 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P88_constr_177 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P89_constr_179 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P89_constr_179 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P90_constr_181 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P90_constr_181 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P91_constr_183 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P91_constr_183 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P92_constr_185 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P92_constr_185 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P93_constr_187 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P93_constr_187 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P94_constr_189 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P94_constr_189 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P95_constr_191 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P95_constr_191 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P96_constr_193 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P96_constr_193 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P97_constr_195 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P97_constr_195 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P98_constr_197 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P98_constr_197 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P99_constr_199 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P99_constr_199 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P100_constr_201 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P100_constr_201 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P101_constr_203 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P101_constr_203 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P102_constr_205 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P102_constr_205 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P103_constr_207 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P103_constr_207 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P104_constr_209 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P104_constr_209 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P105_constr_211 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P105_constr_211 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P106_constr_213 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P106_constr_213 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P107_constr_215 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P107_constr_215 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P108_constr_217 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P108_constr_217 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P109_constr_219 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P109_constr_219 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P110_constr_221 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P110_constr_221 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P111_constr_223 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P111_constr_223 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P112_constr_225 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P112_constr_225 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P113_constr_227 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P113_constr_227 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P114_constr_229 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P114_constr_229 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P115_constr_231 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P115_constr_231 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P116_constr_233 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P116_constr_233 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P117_constr_235 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P117_constr_235 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P118_constr_237 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P118_constr_237 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P119_constr_239 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P119_constr_239 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P120_constr_241 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P120_constr_241 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P121_constr_243 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P121_constr_243 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P122_constr_245 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P122_constr_245 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P123_constr_247 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P123_constr_247 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P124_constr_249 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P124_constr_249 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P125_constr_251 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P125_constr_251 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P126_constr_253 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P126_constr_253 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P127_constr_255 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P127_constr_255 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P128_constr_257 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P128_constr_257 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P129_constr_259 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P129_constr_259 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P130_constr_261 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P130_constr_261 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P131_constr_263 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P131_constr_263 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P132_constr_265 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P132_constr_265 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P133_constr_267 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P133_constr_267 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P134_constr_269 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P134_constr_269 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P135_constr_271 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P135_constr_271 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P136_constr_273 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P136_constr_273 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P137_constr_275 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P137_constr_275 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P138_constr_277 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P138_constr_277 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P139_constr_279 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P139_constr_279 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P140_constr_281 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P140_constr_281 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P141_constr_283 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P141_constr_283 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P142_constr_285 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P142_constr_285 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P143_constr_287 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P143_constr_287 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P144_constr_289 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P144_constr_289 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P145_constr_291 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P145_constr_291 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P146_constr_293 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P146_constr_293 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P147_constr_295 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P147_constr_295 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P148_constr_297 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P148_constr_297 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P149_constr_299 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P149_constr_299 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P150_constr_301 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P150_constr_301 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P151_constr_303 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P151_constr_303 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P152_constr_305 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P152_constr_305 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P153_constr_307 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P153_constr_307 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P154_constr_309 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P154_constr_309 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P155_constr_311 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P155_constr_311 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P156_constr_313 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P156_constr_313 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P157_constr_315 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P157_constr_315 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P158_constr_317 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P158_constr_317 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P159_constr_319 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P159_constr_319 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P160_constr_321 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P160_constr_321 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P161_constr_323 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P161_constr_323 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P162_constr_325 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P162_constr_325 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P163_constr_327 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P163_constr_327 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P164_constr_329 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P164_constr_329 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P165_constr_331 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P165_constr_331 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P166_constr_333 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P166_constr_333 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P167_constr_335 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P167_constr_335 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P168_constr_337 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P168_constr_337 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P169_constr_339 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P169_constr_339 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P170_constr_341 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P170_constr_341 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P171_constr_343 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P171_constr_343 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P172_constr_345 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P172_constr_345 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P173_constr_347 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P173_constr_347 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P174_constr_349 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P174_constr_349 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P175_constr_351 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P175_constr_351 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P176_constr_353 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P176_constr_353 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P177_constr_355 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P177_constr_355 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P178_constr_357 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P178_constr_357 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P179_constr_359 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P179_constr_359 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P180_constr_361 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P180_constr_361 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P181_constr_363 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P181_constr_363 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P182_constr_365 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P182_constr_365 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P183_constr_367 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P183_constr_367 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P184_constr_369 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P184_constr_369 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P185_constr_371 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P185_constr_371 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P186_constr_373 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P186_constr_373 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P187_constr_375 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P187_constr_375 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P188_constr_377 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P188_constr_377 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P189_constr_379 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P189_constr_379 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P190_constr_381 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P190_constr_381 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P191_constr_383 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P191_constr_383 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P192_constr_385 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P192_constr_385 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P193_constr_387 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P193_constr_387 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P194_constr_389 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P194_constr_389 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P195_constr_391 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P195_constr_391 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P196_constr_393 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P196_constr_393 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P197_constr_395 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P197_constr_395 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P198_constr_397 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P198_constr_397 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P199_constr_399 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P199_constr_399 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P200_constr_401 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P200_constr_401 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P201_constr_403 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P201_constr_403 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P202_constr_405 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P202_constr_405 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P203_constr_407 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P203_constr_407 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P204_constr_409 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P204_constr_409 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P205_constr_411 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P205_constr_411 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P206_constr_413 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P206_constr_413 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P207_constr_415 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P207_constr_415 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P208_constr_417 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P208_constr_417 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P209_constr_419 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P209_constr_419 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P210_constr_421 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P210_constr_421 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P211_constr_423 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P211_constr_423 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P212_constr_425 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P212_constr_425 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P213_constr_427 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P213_constr_427 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P214_constr_429 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P214_constr_429 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P215_constr_431 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P215_constr_431 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P216_constr_433 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P216_constr_433 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P217_constr_435 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P217_constr_435 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P218_constr_437 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P218_constr_437 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P219_constr_439 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P219_constr_439 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P220_constr_441 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P220_constr_441 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P221_constr_443 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P221_constr_443 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P222_constr_445 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P222_constr_445 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P223_constr_447 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P223_constr_447 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P224_constr_449 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P224_constr_449 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P225_constr_451 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P225_constr_451 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P226_constr_453 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P226_constr_453 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P227_constr_455 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P227_constr_455 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P228_constr_457 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P228_constr_457 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P229_constr_459 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P229_constr_459 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P230_constr_461 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P230_constr_461 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P231_constr_463 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P231_constr_463 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P232_constr_465 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P232_constr_465 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P233_constr_467 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P233_constr_467 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P234_constr_469 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P234_constr_469 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P235_constr_471 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P235_constr_471 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P236_constr_473 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P236_constr_473 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P237_constr_475 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P237_constr_475 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P238_constr_477 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P238_constr_477 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P239_constr_479 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P239_constr_479 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P240_constr_481 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P240_constr_481 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P241_constr_483 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P241_constr_483 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P242_constr_485 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P242_constr_485 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P243_constr_487 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P243_constr_487 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P244_constr_489 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P244_constr_489 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P245_constr_491 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P245_constr_491 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P246_constr_493 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P246_constr_493 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P247_constr_495 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P247_constr_495 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P248_constr_497 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P248_constr_497 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P249_constr_499 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P249_constr_499 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P250_constr_501 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P250_constr_501 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P251_constr_503 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P251_constr_503 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P252_constr_505 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P252_constr_505 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P253_constr_507 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P253_constr_507 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P254_constr_509 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P254_constr_509 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P255_constr_511 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P255_constr_511 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P256_constr_513 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P256_constr_513 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P257_constr_515 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P257_constr_515 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P258_constr_517 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P258_constr_517 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P259_constr_519 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P259_constr_519 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P260_constr_521 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P260_constr_521 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P261_constr_523 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P261_constr_523 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P262_constr_525 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P262_constr_525 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P263_constr_527 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P263_constr_527 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P264_constr_529 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P264_constr_529 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P265_constr_531 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P265_constr_531 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P266_constr_533 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P266_constr_533 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P267_constr_535 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P267_constr_535 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P268_constr_537 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P268_constr_537 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P269_constr_539 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P269_constr_539 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P270_constr_541 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P270_constr_541 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P271_constr_543 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P271_constr_543 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P272_constr_545 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P272_constr_545 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P273_constr_547 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P273_constr_547 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P274_constr_549 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P274_constr_549 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P275_constr_551 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P275_constr_551 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P276_constr_553 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P276_constr_553 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P277_constr_555 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P277_constr_555 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P278_constr_557 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P278_constr_557 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P279_constr_559 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P279_constr_559 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P280_constr_561 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P280_constr_561 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P281_constr_563 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P281_constr_563 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P282_constr_565 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P282_constr_565 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P283_constr_567 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P283_constr_567 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P284_constr_569 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P284_constr_569 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P285_constr_571 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P285_constr_571 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P286_constr_573 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P286_constr_573 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P287_constr_575 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P287_constr_575 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P288_constr_577 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P288_constr_577 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P289_constr_579 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P289_constr_579 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P0_1[] = { +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P290_constr_581 CC_NOTUSED = { + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P0_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2057,39 +2064,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P0_1[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P0_specs_1 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P0), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P0, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P0_specs_1 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P0), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P0, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P0 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P0 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P0_tags_1, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P0_tags_1) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P0_tags_1[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P0_tags_1, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P0_tags_1) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P0_tags_1[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P0_tags_1, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P0_tags_1) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P0_tags_1[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P0_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P0_tags_1) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P0_constr_1, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P0_constr_1, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P0_1, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P0_1, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P0_specs_1 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P0_specs_1 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P1_3[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P1_3[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2108,39 +2115,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P1_3[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P1_tags_3[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P1_tags_3[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P1_specs_3 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P1), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P1, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P1_specs_3 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P1), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P1, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P1 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P1 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P1_tags_3, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P1_tags_3) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P1_tags_3[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P1_tags_3, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P1_tags_3) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P1_tags_3[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P1_tags_3, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P1_tags_3) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P1_tags_3[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P1_tags_3, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P1_tags_3) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P1_tags_3[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P1_constr_3, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P1_constr_3, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P1_3, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P1_3, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P1_specs_3 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P1_specs_3 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P2_5[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P2_5[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2159,39 +2166,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P2_5[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P2_tags_5[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P2_tags_5[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P2_specs_5 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P2), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P2, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P2_specs_5 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P2), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P2, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P2 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P2 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P2_tags_5, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P2_tags_5) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P2_tags_5[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P2_tags_5, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P2_tags_5) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P2_tags_5[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P2_tags_5, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P2_tags_5) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P2_tags_5[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P2_tags_5, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P2_tags_5) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P2_tags_5[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P2_constr_5, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P2_constr_5, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P2_5, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P2_5, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P2_specs_5 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P2_specs_5 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P3_7[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P3_7[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2210,39 +2217,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P3_7[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P3_tags_7[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P3_tags_7[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P3_specs_7 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P3), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P3, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P3_specs_7 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P3), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P3, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P3 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P3 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P3_tags_7, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P3_tags_7) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P3_tags_7[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P3_tags_7, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P3_tags_7) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P3_tags_7[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P3_tags_7, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P3_tags_7) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P3_tags_7[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P3_tags_7, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P3_tags_7) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P3_tags_7[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P3_constr_7, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P3_constr_7, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P3_7, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P3_7, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P3_specs_7 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P3_specs_7 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P4_9[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P4_9[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2261,39 +2268,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P4_9[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P4_tags_9[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P4_tags_9[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P4_specs_9 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P4), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P4, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P4_specs_9 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P4), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P4, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P4 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P4 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P4_tags_9, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P4_tags_9) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P4_tags_9[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P4_tags_9, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P4_tags_9) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P4_tags_9[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P4_tags_9, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P4_tags_9) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P4_tags_9[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P4_tags_9, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P4_tags_9) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P4_tags_9[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P4_constr_9, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P4_constr_9, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P4_9, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P4_9, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P4_specs_9 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P4_specs_9 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P5_11[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P5_11[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2312,39 +2319,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P5_11[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P5_tags_11[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P5_tags_11[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P5_specs_11 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P5), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P5, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P5_specs_11 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P5), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P5, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P5 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P5 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P5_tags_11, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P5_tags_11) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P5_tags_11[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P5_tags_11, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P5_tags_11) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P5_tags_11[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P5_tags_11, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P5_tags_11) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P5_tags_11[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P5_tags_11, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P5_tags_11) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P5_tags_11[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P5_constr_11, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P5_constr_11, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P5_11, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P5_11, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P5_specs_11 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P5_specs_11 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P6_13[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P6_13[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2363,39 +2370,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P6_13[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P6_tags_13[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P6_tags_13[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P6_specs_13 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P6), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P6, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P6_specs_13 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P6), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P6, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P6 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P6 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P6_tags_13, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P6_tags_13) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P6_tags_13[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P6_tags_13, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P6_tags_13) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P6_tags_13[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P6_tags_13, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P6_tags_13) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P6_tags_13[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P6_tags_13, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P6_tags_13) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P6_tags_13[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P6_constr_13, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P6_constr_13, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P6_13, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P6_13, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P6_specs_13 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P6_specs_13 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P7_15[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P7_15[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2414,39 +2421,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P7_15[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P7_tags_15[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P7_tags_15[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P7_specs_15 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P7), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P7, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P7_specs_15 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P7), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P7, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P7 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P7 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P7_tags_15, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P7_tags_15) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P7_tags_15[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P7_tags_15, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P7_tags_15) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P7_tags_15[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P7_tags_15, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P7_tags_15) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P7_tags_15[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P7_tags_15, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P7_tags_15) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P7_tags_15[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P7_constr_15, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P7_constr_15, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P7_15, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P7_15, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P7_specs_15 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P7_specs_15 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P8_17[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P8_17[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2465,39 +2472,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P8_17[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P8_tags_17[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P8_tags_17[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P8_specs_17 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P8), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P8, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P8_specs_17 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P8), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P8, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P8 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P8 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P8_tags_17, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P8_tags_17) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P8_tags_17[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P8_tags_17, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P8_tags_17) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P8_tags_17[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P8_tags_17, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P8_tags_17) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P8_tags_17[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P8_tags_17, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P8_tags_17) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P8_tags_17[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P8_constr_17, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P8_constr_17, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P8_17, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P8_17, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P8_specs_17 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P8_specs_17 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P9_19[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P9_19[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2516,39 +2523,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P9_19[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P9_tags_19[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P9_tags_19[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P9_specs_19 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P9), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P9, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P9_specs_19 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P9), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P9, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P9 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P9 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P9_tags_19, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P9_tags_19) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P9_tags_19[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P9_tags_19, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P9_tags_19) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P9_tags_19[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P9_tags_19, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P9_tags_19) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P9_tags_19[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P9_tags_19, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P9_tags_19) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P9_tags_19[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P9_constr_19, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P9_constr_19, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P9_19, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P9_19, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P9_specs_19 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P9_specs_19 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P10_21[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P10_21[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2567,39 +2574,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P10_21[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P10_tags_21[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P10_tags_21[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P10_specs_21 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P10), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P10, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P10_specs_21 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P10), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P10, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P10 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P10 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P10_tags_21, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P10_tags_21) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P10_tags_21[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P10_tags_21, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P10_tags_21) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P10_tags_21[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P10_tags_21, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P10_tags_21) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P10_tags_21[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P10_tags_21, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P10_tags_21) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P10_tags_21[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P10_constr_21, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P10_constr_21, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P10_21, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P10_21, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P10_specs_21 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P10_specs_21 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P11_23[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P11_23[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2618,39 +2625,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P11_23[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P11_tags_23[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P11_tags_23[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P11_specs_23 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P11), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P11, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P11_specs_23 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P11), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P11, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P11 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P11 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P11_tags_23, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P11_tags_23) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P11_tags_23[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P11_tags_23, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P11_tags_23) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P11_tags_23[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P11_tags_23, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P11_tags_23) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P11_tags_23[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P11_tags_23, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P11_tags_23) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P11_tags_23[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P11_constr_23, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P11_constr_23, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P11_23, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P11_23, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P11_specs_23 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P11_specs_23 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P12_25[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P12_25[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2669,39 +2676,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P12_25[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P12_tags_25[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P12_tags_25[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P12_specs_25 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P12), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P12, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P12_specs_25 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P12), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P12, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P12 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P12 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P12_tags_25, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P12_tags_25) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P12_tags_25[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P12_tags_25, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P12_tags_25) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P12_tags_25[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P12_tags_25, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P12_tags_25) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P12_tags_25[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P12_tags_25, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P12_tags_25) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P12_tags_25[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P12_constr_25, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P12_constr_25, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P12_25, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P12_25, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P12_specs_25 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P12_specs_25 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P13_27[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P13_27[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2720,39 +2727,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P13_27[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P13_tags_27[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P13_tags_27[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P13_specs_27 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P13), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P13, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P13_specs_27 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P13), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P13, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P13 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P13 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P13_tags_27, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P13_tags_27) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P13_tags_27[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P13_tags_27, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P13_tags_27) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P13_tags_27[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P13_tags_27, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P13_tags_27) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P13_tags_27[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P13_tags_27, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P13_tags_27) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P13_tags_27[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P13_constr_27, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P13_constr_27, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P13_27, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P13_27, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P13_specs_27 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P13_specs_27 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P14_29[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P14_29[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2771,39 +2778,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P14_29[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P14_tags_29[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P14_tags_29[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P14_specs_29 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P14), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P14, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P14_specs_29 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P14), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P14, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P14 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P14 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P14_tags_29, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P14_tags_29) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P14_tags_29[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P14_tags_29, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P14_tags_29) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P14_tags_29[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P14_tags_29, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P14_tags_29) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P14_tags_29[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P14_tags_29, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P14_tags_29) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P14_tags_29[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P14_constr_29, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P14_constr_29, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P14_29, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P14_29, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P14_specs_29 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P14_specs_29 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P15_31[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P15_31[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2822,39 +2829,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P15_31[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P15_tags_31[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P15_tags_31[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P15_specs_31 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P15), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P15, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P15_specs_31 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P15), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P15, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P15 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P15 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P15_tags_31, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P15_tags_31) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P15_tags_31[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P15_tags_31, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P15_tags_31) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P15_tags_31[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P15_tags_31, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P15_tags_31) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P15_tags_31[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P15_tags_31, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P15_tags_31) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P15_tags_31[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P15_constr_31, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P15_constr_31, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P15_31, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P15_31, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P15_specs_31 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P15_specs_31 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P16_33[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P16_33[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2873,39 +2880,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P16_33[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P16_tags_33[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P16_tags_33[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P16_specs_33 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P16), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P16, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P16_specs_33 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P16), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P16, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P16 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P16 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P16_tags_33, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P16_tags_33) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P16_tags_33[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P16_tags_33, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P16_tags_33) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P16_tags_33[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P16_tags_33, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P16_tags_33) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P16_tags_33[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P16_tags_33, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P16_tags_33) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P16_tags_33[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P16_constr_33, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P16_constr_33, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P16_33, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P16_33, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P16_specs_33 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P16_specs_33 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P17_35[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P17_35[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2924,39 +2931,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P17_35[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P17_tags_35[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P17_tags_35[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P17_specs_35 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P17), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P17, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P17_specs_35 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P17), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P17, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P17 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P17 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P17_tags_35, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P17_tags_35) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P17_tags_35[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P17_tags_35, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P17_tags_35) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P17_tags_35[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P17_tags_35, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P17_tags_35) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P17_tags_35[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P17_tags_35, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P17_tags_35) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P17_tags_35[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P17_constr_35, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P17_constr_35, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P17_35, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P17_35, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P17_specs_35 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P17_specs_35 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P18_37[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P18_37[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2975,39 +2982,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P18_37[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P18_tags_37[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P18_tags_37[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P18_specs_37 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P18), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P18, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P18_specs_37 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P18), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P18, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P18 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P18 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P18_tags_37, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P18_tags_37) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P18_tags_37[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P18_tags_37, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P18_tags_37) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P18_tags_37[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P18_tags_37, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P18_tags_37) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P18_tags_37[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P18_tags_37, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P18_tags_37) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P18_tags_37[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P18_constr_37, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P18_constr_37, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P18_37, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P18_37, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P18_specs_37 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P18_specs_37 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P19_39[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P19_39[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3026,39 +3033,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P19_39[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P19_tags_39[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P19_tags_39[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P19_specs_39 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P19), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P19, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P19_specs_39 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P19), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P19, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P19 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P19 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P19_tags_39, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P19_tags_39) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P19_tags_39[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P19_tags_39, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P19_tags_39) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P19_tags_39[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P19_tags_39, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P19_tags_39) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P19_tags_39[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P19_tags_39, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P19_tags_39) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P19_tags_39[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P19_constr_39, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P19_constr_39, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P19_39, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P19_39, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P19_specs_39 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P19_specs_39 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P20_41[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P20_41[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3077,39 +3084,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P20_41[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P20_tags_41[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P20_tags_41[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P20_specs_41 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P20), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P20, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P20_specs_41 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P20), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P20, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P20 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P20 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P20_tags_41, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P20_tags_41) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P20_tags_41[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P20_tags_41, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P20_tags_41) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P20_tags_41[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P20_tags_41, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P20_tags_41) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P20_tags_41[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P20_tags_41, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P20_tags_41) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P20_tags_41[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P20_constr_41, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P20_constr_41, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P20_41, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P20_41, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P20_specs_41 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P20_specs_41 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P21_43[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P21_43[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3128,39 +3135,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P21_43[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P21_tags_43[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P21_tags_43[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P21_specs_43 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P21), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P21, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P21_specs_43 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P21), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P21, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P21 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P21 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P21_tags_43, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P21_tags_43) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P21_tags_43[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P21_tags_43, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P21_tags_43) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P21_tags_43[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P21_tags_43, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P21_tags_43) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P21_tags_43[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P21_tags_43, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P21_tags_43) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P21_tags_43[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P21_constr_43, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P21_constr_43, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P21_43, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P21_43, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P21_specs_43 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P21_specs_43 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P22_45[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P22_45[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3179,39 +3186,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P22_45[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P22_tags_45[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P22_tags_45[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P22_specs_45 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P22), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P22, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P22_specs_45 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P22), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P22, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P22 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P22 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P22_tags_45, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P22_tags_45) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P22_tags_45[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P22_tags_45, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P22_tags_45) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P22_tags_45[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P22_tags_45, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P22_tags_45) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P22_tags_45[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P22_tags_45, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P22_tags_45) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P22_tags_45[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P22_constr_45, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P22_constr_45, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P22_45, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P22_45, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P22_specs_45 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P22_specs_45 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P23_47[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P23_47[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3230,39 +3237,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P23_47[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P23_tags_47[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P23_tags_47[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P23_specs_47 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P23), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P23, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P23_specs_47 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P23), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P23, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P23 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P23 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P23_tags_47, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P23_tags_47) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P23_tags_47[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P23_tags_47, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P23_tags_47) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P23_tags_47[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P23_tags_47, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P23_tags_47) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P23_tags_47[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P23_tags_47, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P23_tags_47) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P23_tags_47[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P23_constr_47, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P23_constr_47, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P23_47, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P23_47, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P23_specs_47 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P23_specs_47 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P24_49[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P24_49[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3281,39 +3288,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P24_49[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P24_tags_49[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P24_tags_49[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P24_specs_49 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P24), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P24, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P24_specs_49 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P24), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P24, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P24 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P24 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P24_tags_49, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P24_tags_49) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P24_tags_49[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P24_tags_49, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P24_tags_49) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P24_tags_49[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P24_tags_49, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P24_tags_49) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P24_tags_49[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P24_tags_49, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P24_tags_49) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P24_tags_49[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P24_constr_49, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P24_constr_49, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P24_49, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P24_49, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P24_specs_49 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P24_specs_49 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P25_51[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P25_51[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3332,39 +3339,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P25_51[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P25_tags_51[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P25_tags_51[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P25_specs_51 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P25), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P25, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P25_specs_51 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P25), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P25, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P25 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P25 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P25_tags_51, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P25_tags_51) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P25_tags_51[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P25_tags_51, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P25_tags_51) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P25_tags_51[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P25_tags_51, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P25_tags_51) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P25_tags_51[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P25_tags_51, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P25_tags_51) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P25_tags_51[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P25_constr_51, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P25_constr_51, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P25_51, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P25_51, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P25_specs_51 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P25_specs_51 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P26_53[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P26_53[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3383,39 +3390,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P26_53[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P26_tags_53[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P26_tags_53[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P26_specs_53 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P26), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P26, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P26_specs_53 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P26), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P26, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P26 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P26 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P26_tags_53, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P26_tags_53) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P26_tags_53[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P26_tags_53, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P26_tags_53) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P26_tags_53[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P26_tags_53, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P26_tags_53) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P26_tags_53[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P26_tags_53, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P26_tags_53) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P26_tags_53[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P26_constr_53, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P26_constr_53, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P26_53, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P26_53, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P26_specs_53 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P26_specs_53 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P27_55[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P27_55[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3434,39 +3441,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P27_55[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P27_tags_55[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P27_tags_55[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P27_specs_55 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P27), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P27, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P27_specs_55 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P27), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P27, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P27 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P27 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P27_tags_55, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P27_tags_55) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P27_tags_55[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P27_tags_55, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P27_tags_55) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P27_tags_55[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P27_tags_55, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P27_tags_55) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P27_tags_55[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P27_tags_55, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P27_tags_55) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P27_tags_55[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P27_constr_55, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P27_constr_55, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P27_55, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P27_55, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P27_specs_55 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P27_specs_55 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P28_57[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P28_57[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3485,39 +3492,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P28_57[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P28_tags_57[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P28_tags_57[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P28_specs_57 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P28), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P28, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P28_specs_57 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P28), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P28, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P28 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P28 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P28_tags_57, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P28_tags_57) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P28_tags_57[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P28_tags_57, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P28_tags_57) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P28_tags_57[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P28_tags_57, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P28_tags_57) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P28_tags_57[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P28_tags_57, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P28_tags_57) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P28_tags_57[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P28_constr_57, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P28_constr_57, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P28_57, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P28_57, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P28_specs_57 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P28_specs_57 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P29_59[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P29_59[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3536,39 +3543,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P29_59[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P29_tags_59[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P29_tags_59[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P29_specs_59 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P29), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P29, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P29_specs_59 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P29), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P29, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P29 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P29 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P29_tags_59, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P29_tags_59) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P29_tags_59[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P29_tags_59, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P29_tags_59) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P29_tags_59[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P29_tags_59, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P29_tags_59) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P29_tags_59[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P29_tags_59, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P29_tags_59) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P29_tags_59[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P29_constr_59, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P29_constr_59, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P29_59, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P29_59, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P29_specs_59 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P29_specs_59 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P30_61[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P30_61[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3587,39 +3594,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P30_61[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P30_tags_61[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P30_tags_61[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P30_specs_61 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P30), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P30, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P30_specs_61 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P30), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P30, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P30 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P30 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P30_tags_61, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P30_tags_61) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P30_tags_61[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P30_tags_61, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P30_tags_61) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P30_tags_61[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P30_tags_61, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P30_tags_61) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P30_tags_61[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P30_tags_61, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P30_tags_61) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P30_tags_61[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P30_constr_61, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P30_constr_61, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P30_61, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P30_61, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P30_specs_61 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P30_specs_61 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P31_63[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P31_63[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3638,39 +3645,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P31_63[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P31_tags_63[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P31_tags_63[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P31_specs_63 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P31), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P31, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P31_specs_63 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P31), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P31, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P31 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P31 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P31_tags_63, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P31_tags_63) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P31_tags_63[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P31_tags_63, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P31_tags_63) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P31_tags_63[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P31_tags_63, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P31_tags_63) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P31_tags_63[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P31_tags_63, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P31_tags_63) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P31_tags_63[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P31_constr_63, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P31_constr_63, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P31_63, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P31_63, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P31_specs_63 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P31_specs_63 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P32_65[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P32_65[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3689,39 +3696,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P32_65[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P32_tags_65[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P32_tags_65[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P32_specs_65 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P32), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P32, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P32_specs_65 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P32), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P32, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P32 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P32 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P32_tags_65, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P32_tags_65) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P32_tags_65[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P32_tags_65, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P32_tags_65) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P32_tags_65[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P32_tags_65, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P32_tags_65) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P32_tags_65[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P32_tags_65, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P32_tags_65) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P32_tags_65[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P32_constr_65, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P32_constr_65, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P32_65, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P32_65, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P32_specs_65 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P32_specs_65 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P33_67[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P33_67[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3740,39 +3747,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P33_67[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P33_tags_67[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P33_tags_67[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P33_specs_67 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P33), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P33, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P33_specs_67 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P33), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P33, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P33 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P33 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P33_tags_67, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P33_tags_67) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P33_tags_67[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P33_tags_67, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P33_tags_67) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P33_tags_67[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P33_tags_67, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P33_tags_67) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P33_tags_67[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P33_tags_67, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P33_tags_67) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P33_tags_67[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P33_constr_67, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P33_constr_67, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P33_67, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P33_67, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P33_specs_67 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P33_specs_67 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P34_69[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P34_69[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3791,39 +3798,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P34_69[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P34_tags_69[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P34_tags_69[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P34_specs_69 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P34), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P34, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P34_specs_69 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P34), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P34, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P34 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P34 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P34_tags_69, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P34_tags_69) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P34_tags_69[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P34_tags_69, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P34_tags_69) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P34_tags_69[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P34_tags_69, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P34_tags_69) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P34_tags_69[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P34_tags_69, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P34_tags_69) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P34_tags_69[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P34_constr_69, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P34_constr_69, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P34_69, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P34_69, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P34_specs_69 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P34_specs_69 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P35_71[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P35_71[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3842,39 +3849,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P35_71[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P35_tags_71[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P35_tags_71[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P35_specs_71 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P35), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P35, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P35_specs_71 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P35), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P35, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P35 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P35 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P35_tags_71, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P35_tags_71) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P35_tags_71[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P35_tags_71, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P35_tags_71) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P35_tags_71[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P35_tags_71, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P35_tags_71) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P35_tags_71[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P35_tags_71, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P35_tags_71) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P35_tags_71[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P35_constr_71, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P35_constr_71, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P35_71, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P35_71, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P35_specs_71 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P35_specs_71 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P36_73[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P36_73[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3893,39 +3900,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P36_73[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P36_tags_73[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P36_tags_73[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P36_specs_73 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P36), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P36, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P36_specs_73 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P36), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P36, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P36 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P36 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P36_tags_73, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P36_tags_73) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P36_tags_73[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P36_tags_73, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P36_tags_73) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P36_tags_73[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P36_tags_73, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P36_tags_73) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P36_tags_73[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P36_tags_73, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P36_tags_73) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P36_tags_73[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P36_constr_73, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P36_constr_73, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P36_73, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P36_73, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P36_specs_73 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P36_specs_73 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P37_75[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P37_75[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3944,39 +3951,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P37_75[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P37_tags_75[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P37_tags_75[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P37_specs_75 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P37), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P37, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P37_specs_75 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P37), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P37, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P37 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P37 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P37_tags_75, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P37_tags_75) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P37_tags_75[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P37_tags_75, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P37_tags_75) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P37_tags_75[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P37_tags_75, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P37_tags_75) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P37_tags_75[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P37_tags_75, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P37_tags_75) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P37_tags_75[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P37_constr_75, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P37_constr_75, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P37_75, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P37_75, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P37_specs_75 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P37_specs_75 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P38_77[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P38_77[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3995,39 +4002,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P38_77[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P38_tags_77[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P38_tags_77[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P38_specs_77 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P38), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P38, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P38_specs_77 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P38), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P38, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P38 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P38 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P38_tags_77, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P38_tags_77) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P38_tags_77[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P38_tags_77, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P38_tags_77) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P38_tags_77[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P38_tags_77, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P38_tags_77) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P38_tags_77[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P38_tags_77, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P38_tags_77) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P38_tags_77[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P38_constr_77, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P38_constr_77, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P38_77, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P38_77, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P38_specs_77 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P38_specs_77 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P39_79[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P39_79[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4046,39 +4053,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P39_79[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P39_tags_79[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P39_tags_79[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P39_specs_79 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P39), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P39, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P39_specs_79 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P39), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P39, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P39 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P39 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P39_tags_79, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P39_tags_79) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P39_tags_79[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P39_tags_79, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P39_tags_79) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P39_tags_79[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P39_tags_79, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P39_tags_79) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P39_tags_79[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P39_tags_79, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P39_tags_79) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P39_tags_79[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P39_constr_79, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P39_constr_79, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P39_79, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P39_79, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P39_specs_79 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P39_specs_79 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P40_81[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P40_81[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4097,39 +4104,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P40_81[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P40_tags_81[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P40_tags_81[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P40_specs_81 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P40), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P40, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P40_specs_81 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P40), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P40, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P40 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P40 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P40_tags_81, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P40_tags_81) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P40_tags_81[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P40_tags_81, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P40_tags_81) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P40_tags_81[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P40_tags_81, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P40_tags_81) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P40_tags_81[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P40_tags_81, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P40_tags_81) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P40_tags_81[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P40_constr_81, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P40_constr_81, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P40_81, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P40_81, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P40_specs_81 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P40_specs_81 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P41_83[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P41_83[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4148,39 +4155,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P41_83[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P41_tags_83[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P41_tags_83[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P41_specs_83 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P41), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P41, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P41_specs_83 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P41), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P41, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P41 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P41 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P41_tags_83, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P41_tags_83) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P41_tags_83[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P41_tags_83, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P41_tags_83) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P41_tags_83[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P41_tags_83, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P41_tags_83) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P41_tags_83[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P41_tags_83, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P41_tags_83) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P41_tags_83[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P41_constr_83, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P41_constr_83, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P41_83, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P41_83, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P41_specs_83 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P41_specs_83 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P42_85[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P42_85[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4199,39 +4206,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P42_85[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P42_tags_85[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P42_tags_85[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P42_specs_85 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P42), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P42, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P42_specs_85 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P42), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P42, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P42 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P42 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P42_tags_85, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P42_tags_85) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P42_tags_85[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P42_tags_85, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P42_tags_85) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P42_tags_85[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P42_tags_85, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P42_tags_85) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P42_tags_85[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P42_tags_85, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P42_tags_85) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P42_tags_85[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P42_constr_85, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P42_constr_85, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P42_85, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P42_85, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P42_specs_85 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P42_specs_85 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P43_87[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P43_87[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4250,39 +4257,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P43_87[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P43_tags_87[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P43_tags_87[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P43_specs_87 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P43), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P43, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P43_specs_87 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P43), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P43, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P43 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P43 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P43_tags_87, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P43_tags_87) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P43_tags_87[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P43_tags_87, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P43_tags_87) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P43_tags_87[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P43_tags_87, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P43_tags_87) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P43_tags_87[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P43_tags_87, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P43_tags_87) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P43_tags_87[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P43_constr_87, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P43_constr_87, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P43_87, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P43_87, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P43_specs_87 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P43_specs_87 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P44_89[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P44_89[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4301,39 +4308,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P44_89[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P44_tags_89[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P44_tags_89[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P44_specs_89 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P44), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P44, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P44_specs_89 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P44), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P44, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P44 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P44 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P44_tags_89, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P44_tags_89) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P44_tags_89[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P44_tags_89, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P44_tags_89) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P44_tags_89[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P44_tags_89, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P44_tags_89) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P44_tags_89[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P44_tags_89, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P44_tags_89) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P44_tags_89[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P44_constr_89, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P44_constr_89, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P44_89, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P44_89, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P44_specs_89 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P44_specs_89 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P45_91[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P45_91[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4352,39 +4359,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P45_91[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P45_tags_91[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P45_tags_91[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P45_specs_91 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P45), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P45, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P45_specs_91 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P45), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P45, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P45 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P45 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P45_tags_91, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P45_tags_91) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P45_tags_91[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P45_tags_91, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P45_tags_91) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P45_tags_91[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P45_tags_91, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P45_tags_91) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P45_tags_91[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P45_tags_91, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P45_tags_91) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P45_tags_91[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P45_constr_91, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P45_constr_91, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P45_91, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P45_91, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P45_specs_91 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P45_specs_91 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P46_93[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P46_93[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4403,39 +4410,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P46_93[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P46_tags_93[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P46_tags_93[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P46_specs_93 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P46), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P46, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P46_specs_93 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P46), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P46, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P46 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P46 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P46_tags_93, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P46_tags_93) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P46_tags_93[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P46_tags_93, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P46_tags_93) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P46_tags_93[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P46_tags_93, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P46_tags_93) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P46_tags_93[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P46_tags_93, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P46_tags_93) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P46_tags_93[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P46_constr_93, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P46_constr_93, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P46_93, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P46_93, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P46_specs_93 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P46_specs_93 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P47_95[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P47_95[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4454,39 +4461,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P47_95[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P47_tags_95[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P47_tags_95[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P47_specs_95 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P47), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P47, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P47_specs_95 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P47), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P47, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P47 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P47 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P47_tags_95, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P47_tags_95) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P47_tags_95[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P47_tags_95, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P47_tags_95) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P47_tags_95[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P47_tags_95, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P47_tags_95) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P47_tags_95[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P47_tags_95, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P47_tags_95) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P47_tags_95[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P47_constr_95, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P47_constr_95, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P47_95, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P47_95, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P47_specs_95 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P47_specs_95 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P48_97[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P48_97[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4505,39 +4512,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P48_97[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P48_tags_97[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P48_tags_97[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P48_specs_97 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P48), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P48, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P48_specs_97 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P48), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P48, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P48 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P48 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P48_tags_97, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P48_tags_97) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P48_tags_97[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P48_tags_97, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P48_tags_97) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P48_tags_97[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P48_tags_97, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P48_tags_97) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P48_tags_97[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P48_tags_97, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P48_tags_97) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P48_tags_97[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P48_constr_97, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P48_constr_97, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P48_97, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P48_97, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P48_specs_97 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P48_specs_97 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P49_99[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P49_99[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4556,39 +4563,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P49_99[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P49_tags_99[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P49_tags_99[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P49_specs_99 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P49), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P49, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P49_specs_99 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P49), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P49, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P49 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P49 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P49_tags_99, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P49_tags_99) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P49_tags_99[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P49_tags_99, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P49_tags_99) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P49_tags_99[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P49_tags_99, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P49_tags_99) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P49_tags_99[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P49_tags_99, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P49_tags_99) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P49_tags_99[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P49_constr_99, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P49_constr_99, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P49_99, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P49_99, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P49_specs_99 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P49_specs_99 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P50_101[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P50_101[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4607,39 +4614,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P50_101[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P50_tags_101[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P50_tags_101[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P50_specs_101 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P50), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P50, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P50_specs_101 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P50), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P50, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P50 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P50 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P50_tags_101, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P50_tags_101) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P50_tags_101[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P50_tags_101, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P50_tags_101) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P50_tags_101[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P50_tags_101, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P50_tags_101) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P50_tags_101[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P50_tags_101, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P50_tags_101) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P50_tags_101[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P50_constr_101, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P50_constr_101, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P50_101, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P50_101, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P50_specs_101 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P50_specs_101 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P51_103[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P51_103[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4658,39 +4665,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P51_103[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P51_tags_103[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P51_tags_103[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P51_specs_103 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P51), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P51, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P51_specs_103 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P51), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P51, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P51 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P51 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P51_tags_103, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P51_tags_103) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P51_tags_103[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P51_tags_103, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P51_tags_103) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P51_tags_103[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P51_tags_103, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P51_tags_103) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P51_tags_103[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P51_tags_103, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P51_tags_103) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P51_tags_103[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P51_constr_103, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P51_constr_103, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P51_103, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P51_103, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P51_specs_103 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P51_specs_103 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P52_105[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P52_105[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4709,39 +4716,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P52_105[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P52_tags_105[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P52_tags_105[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P52_specs_105 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P52), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P52, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P52_specs_105 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P52), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P52, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P52 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P52 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P52_tags_105, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P52_tags_105) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P52_tags_105[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P52_tags_105, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P52_tags_105) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P52_tags_105[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P52_tags_105, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P52_tags_105) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P52_tags_105[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P52_tags_105, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P52_tags_105) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P52_tags_105[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P52_constr_105, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P52_constr_105, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P52_105, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P52_105, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P52_specs_105 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P52_specs_105 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P53_107[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P53_107[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4760,39 +4767,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P53_107[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P53_tags_107[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P53_tags_107[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P53_specs_107 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P53), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P53, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P53_specs_107 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P53), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P53, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P53 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P53 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P53_tags_107, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P53_tags_107) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P53_tags_107[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P53_tags_107, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P53_tags_107) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P53_tags_107[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P53_tags_107, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P53_tags_107) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P53_tags_107[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P53_tags_107, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P53_tags_107) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P53_tags_107[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P53_constr_107, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P53_constr_107, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P53_107, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P53_107, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P53_specs_107 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P53_specs_107 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P54_109[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P54_109[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4811,39 +4818,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P54_109[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P54_tags_109[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P54_tags_109[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P54_specs_109 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P54), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P54, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P54_specs_109 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P54), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P54, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P54 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P54 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P54_tags_109, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P54_tags_109) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P54_tags_109[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P54_tags_109, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P54_tags_109) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P54_tags_109[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P54_tags_109, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P54_tags_109) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P54_tags_109[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P54_tags_109, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P54_tags_109) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P54_tags_109[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P54_constr_109, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P54_constr_109, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P54_109, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P54_109, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P54_specs_109 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P54_specs_109 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P55_111[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P55_111[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4862,39 +4869,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P55_111[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P55_tags_111[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P55_tags_111[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P55_specs_111 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P55), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P55, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P55_specs_111 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P55), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P55, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P55 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P55 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P55_tags_111, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P55_tags_111) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P55_tags_111[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P55_tags_111, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P55_tags_111) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P55_tags_111[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P55_tags_111, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P55_tags_111) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P55_tags_111[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P55_tags_111, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P55_tags_111) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P55_tags_111[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P55_constr_111, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P55_constr_111, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P55_111, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P55_111, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P55_specs_111 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P55_specs_111 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P56_113[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P56_113[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4913,39 +4920,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P56_113[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P56_tags_113[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P56_tags_113[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P56_specs_113 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P56), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P56, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P56_specs_113 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P56), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P56, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P56 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P56 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P56_tags_113, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P56_tags_113) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P56_tags_113[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P56_tags_113, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P56_tags_113) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P56_tags_113[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P56_tags_113, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P56_tags_113) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P56_tags_113[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P56_tags_113, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P56_tags_113) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P56_tags_113[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P56_constr_113, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P56_constr_113, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P56_113, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P56_113, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P56_specs_113 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P56_specs_113 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P57_115[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P57_115[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4964,39 +4971,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P57_115[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P57_tags_115[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P57_tags_115[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P57_specs_115 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P57), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P57, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P57_specs_115 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P57), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P57, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P57 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P57 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P57_tags_115, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P57_tags_115) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P57_tags_115[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P57_tags_115, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P57_tags_115) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P57_tags_115[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P57_tags_115, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P57_tags_115) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P57_tags_115[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P57_tags_115, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P57_tags_115) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P57_tags_115[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P57_constr_115, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P57_constr_115, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P57_115, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P57_115, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P57_specs_115 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P57_specs_115 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P58_117[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P58_117[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5015,39 +5022,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P58_117[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P58_tags_117[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P58_tags_117[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P58_specs_117 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P58), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P58, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P58_specs_117 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P58), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P58, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P58 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P58 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P58_tags_117, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P58_tags_117) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P58_tags_117[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P58_tags_117, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P58_tags_117) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P58_tags_117[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P58_tags_117, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P58_tags_117) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P58_tags_117[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P58_tags_117, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P58_tags_117) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P58_tags_117[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P58_constr_117, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P58_constr_117, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P58_117, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P58_117, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P58_specs_117 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P58_specs_117 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P59_119[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P59_119[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5066,39 +5073,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P59_119[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P59_tags_119[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P59_tags_119[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P59_specs_119 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P59), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P59, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P59_specs_119 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P59), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P59, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P59 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P59 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P59_tags_119, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P59_tags_119) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P59_tags_119[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P59_tags_119, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P59_tags_119) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P59_tags_119[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P59_tags_119, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P59_tags_119) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P59_tags_119[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P59_tags_119, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P59_tags_119) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P59_tags_119[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P59_constr_119, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P59_constr_119, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P59_119, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P59_119, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P59_specs_119 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P59_specs_119 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P60_121[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P60_121[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5117,39 +5124,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P60_121[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P60_tags_121[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P60_tags_121[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P60_specs_121 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P60), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P60, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P60_specs_121 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P60), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P60, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P60 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P60 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P60_tags_121, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P60_tags_121) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P60_tags_121[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P60_tags_121, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P60_tags_121) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P60_tags_121[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P60_tags_121, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P60_tags_121) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P60_tags_121[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P60_tags_121, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P60_tags_121) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P60_tags_121[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P60_constr_121, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P60_constr_121, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P60_121, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P60_121, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P60_specs_121 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P60_specs_121 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P61_123[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P61_123[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5168,39 +5175,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P61_123[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P61_tags_123[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P61_tags_123[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P61_specs_123 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P61), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P61, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P61_specs_123 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P61), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P61, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P61 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P61 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P61_tags_123, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P61_tags_123) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P61_tags_123[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P61_tags_123, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P61_tags_123) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P61_tags_123[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P61_tags_123, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P61_tags_123) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P61_tags_123[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P61_tags_123, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P61_tags_123) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P61_tags_123[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P61_constr_123, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P61_constr_123, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P61_123, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P61_123, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P61_specs_123 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P61_specs_123 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P62_125[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P62_125[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5219,39 +5226,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P62_125[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P62_tags_125[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P62_tags_125[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P62_specs_125 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P62), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P62, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P62_specs_125 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P62), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P62, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P62 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P62 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P62_tags_125, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P62_tags_125) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P62_tags_125[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P62_tags_125, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P62_tags_125) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P62_tags_125[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P62_tags_125, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P62_tags_125) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P62_tags_125[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P62_tags_125, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P62_tags_125) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P62_tags_125[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P62_constr_125, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P62_constr_125, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P62_125, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P62_125, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P62_specs_125 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P62_specs_125 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P63_127[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P63_127[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5270,39 +5277,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P63_127[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P63_tags_127[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P63_tags_127[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P63_specs_127 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P63), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P63, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P63_specs_127 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P63), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P63, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P63 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P63 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P63_tags_127, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P63_tags_127) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P63_tags_127[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P63_tags_127, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P63_tags_127) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P63_tags_127[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P63_tags_127, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P63_tags_127) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P63_tags_127[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P63_tags_127, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P63_tags_127) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P63_tags_127[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P63_constr_127, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P63_constr_127, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P63_127, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P63_127, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P63_specs_127 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P63_specs_127 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P64_129[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P64_129[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5321,39 +5328,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P64_129[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P64_tags_129[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P64_tags_129[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P64_specs_129 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P64), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P64, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P64_specs_129 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P64), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P64, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P64 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P64 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P64_tags_129, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P64_tags_129) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P64_tags_129[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P64_tags_129, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P64_tags_129) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P64_tags_129[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P64_tags_129, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P64_tags_129) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P64_tags_129[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P64_tags_129, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P64_tags_129) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P64_tags_129[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P64_constr_129, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P64_constr_129, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P64_129, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P64_129, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P64_specs_129 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P64_specs_129 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P65_131[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P65_131[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5372,39 +5379,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P65_131[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P65_tags_131[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P65_tags_131[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P65_specs_131 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P65), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P65, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P65_specs_131 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P65), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P65, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P65 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P65 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P65_tags_131, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P65_tags_131) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P65_tags_131[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P65_tags_131, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P65_tags_131) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P65_tags_131[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P65_tags_131, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P65_tags_131) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P65_tags_131[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P65_tags_131, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P65_tags_131) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P65_tags_131[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P65_constr_131, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P65_constr_131, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P65_131, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P65_131, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P65_specs_131 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P65_specs_131 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P66_133[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P66_133[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5423,39 +5430,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P66_133[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P66_tags_133[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P66_tags_133[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P66_specs_133 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P66), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P66, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P66_specs_133 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P66), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P66, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P66 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P66 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P66_tags_133, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P66_tags_133) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P66_tags_133[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P66_tags_133, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P66_tags_133) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P66_tags_133[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P66_tags_133, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P66_tags_133) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P66_tags_133[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P66_tags_133, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P66_tags_133) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P66_tags_133[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P66_constr_133, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P66_constr_133, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P66_133, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P66_133, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P66_specs_133 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P66_specs_133 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P67_135[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P67_135[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5474,39 +5481,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P67_135[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P67_tags_135[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P67_tags_135[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P67_specs_135 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P67), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P67, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P67_specs_135 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P67), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P67, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P67 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P67 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P67_tags_135, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P67_tags_135) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P67_tags_135[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P67_tags_135, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P67_tags_135) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P67_tags_135[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P67_tags_135, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P67_tags_135) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P67_tags_135[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P67_tags_135, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P67_tags_135) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P67_tags_135[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P67_constr_135, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P67_constr_135, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P67_135, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P67_135, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P67_specs_135 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P67_specs_135 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P68_137[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P68_137[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5525,39 +5532,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P68_137[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P68_tags_137[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P68_tags_137[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P68_specs_137 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P68), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P68, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P68_specs_137 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P68), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P68, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P68 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P68 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P68_tags_137, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P68_tags_137) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P68_tags_137[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P68_tags_137, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P68_tags_137) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P68_tags_137[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P68_tags_137, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P68_tags_137) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P68_tags_137[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P68_tags_137, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P68_tags_137) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P68_tags_137[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P68_constr_137, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P68_constr_137, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P68_137, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P68_137, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P68_specs_137 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P68_specs_137 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P69_139[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P69_139[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5576,39 +5583,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P69_139[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P69_tags_139[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P69_tags_139[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P69_specs_139 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P69), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P69, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P69_specs_139 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P69), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P69, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P69 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P69 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P69_tags_139, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P69_tags_139) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P69_tags_139[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P69_tags_139, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P69_tags_139) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P69_tags_139[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P69_tags_139, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P69_tags_139) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P69_tags_139[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P69_tags_139, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P69_tags_139) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P69_tags_139[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P69_constr_139, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P69_constr_139, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P69_139, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P69_139, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P69_specs_139 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P69_specs_139 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P70_141[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P70_141[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5627,39 +5634,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P70_141[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P70_tags_141[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P70_tags_141[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P70_specs_141 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P70), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P70, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P70_specs_141 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P70), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P70, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P70 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P70 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P70_tags_141, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P70_tags_141) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P70_tags_141[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P70_tags_141, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P70_tags_141) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P70_tags_141[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P70_tags_141, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P70_tags_141) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P70_tags_141[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P70_tags_141, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P70_tags_141) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P70_tags_141[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P70_constr_141, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P70_constr_141, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P70_141, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P70_141, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P70_specs_141 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P70_specs_141 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P71_143[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P71_143[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5678,39 +5685,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P71_143[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P71_tags_143[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P71_tags_143[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P71_specs_143 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P71), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P71, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P71_specs_143 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P71), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P71, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P71 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P71 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P71_tags_143, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P71_tags_143) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P71_tags_143[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P71_tags_143, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P71_tags_143) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P71_tags_143[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P71_tags_143, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P71_tags_143) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P71_tags_143[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P71_tags_143, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P71_tags_143) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P71_tags_143[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P71_constr_143, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P71_constr_143, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P71_143, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P71_143, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P71_specs_143 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P71_specs_143 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P72_145[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P72_145[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5729,39 +5736,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P72_145[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P72_tags_145[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P72_tags_145[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P72_specs_145 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P72), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P72, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P72_specs_145 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P72), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P72, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P72 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P72 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P72_tags_145, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P72_tags_145) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P72_tags_145[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P72_tags_145, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P72_tags_145) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P72_tags_145[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P72_tags_145, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P72_tags_145) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P72_tags_145[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P72_tags_145, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P72_tags_145) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P72_tags_145[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P72_constr_145, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P72_constr_145, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P72_145, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P72_145, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P72_specs_145 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P72_specs_145 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P73_147[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P73_147[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5780,39 +5787,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P73_147[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P73_tags_147[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P73_tags_147[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P73_specs_147 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P73), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P73, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P73_specs_147 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P73), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P73, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P73 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P73 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P73_tags_147, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P73_tags_147) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P73_tags_147[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P73_tags_147, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P73_tags_147) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P73_tags_147[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P73_tags_147, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P73_tags_147) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P73_tags_147[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P73_tags_147, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P73_tags_147) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P73_tags_147[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P73_constr_147, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P73_constr_147, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P73_147, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P73_147, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P73_specs_147 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P73_specs_147 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P74_149[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P74_149[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5831,39 +5838,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P74_149[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P74_tags_149[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P74_tags_149[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P74_specs_149 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P74), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P74, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P74_specs_149 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P74), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P74, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P74 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P74 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P74_tags_149, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P74_tags_149) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P74_tags_149[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P74_tags_149, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P74_tags_149) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P74_tags_149[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P74_tags_149, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P74_tags_149) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P74_tags_149[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P74_tags_149, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P74_tags_149) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P74_tags_149[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P74_constr_149, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P74_constr_149, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P74_149, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P74_149, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P74_specs_149 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P74_specs_149 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P75_151[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P75_151[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5882,39 +5889,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P75_151[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P75_tags_151[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P75_tags_151[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P75_specs_151 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P75), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P75, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P75_specs_151 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P75), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P75, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P75 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P75 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P75_tags_151, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P75_tags_151) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P75_tags_151[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P75_tags_151, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P75_tags_151) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P75_tags_151[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P75_tags_151, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P75_tags_151) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P75_tags_151[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P75_tags_151, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P75_tags_151) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P75_tags_151[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P75_constr_151, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P75_constr_151, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P75_151, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P75_151, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P75_specs_151 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P75_specs_151 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P76_153[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P76_153[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5933,39 +5940,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P76_153[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P76_tags_153[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P76_tags_153[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P76_specs_153 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P76), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P76, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P76_specs_153 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P76), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P76, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P76 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P76 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P76_tags_153, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P76_tags_153) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P76_tags_153[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P76_tags_153, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P76_tags_153) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P76_tags_153[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P76_tags_153, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P76_tags_153) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P76_tags_153[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P76_tags_153, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P76_tags_153) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P76_tags_153[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P76_constr_153, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P76_constr_153, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P76_153, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P76_153, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P76_specs_153 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P76_specs_153 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P77_155[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P77_155[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5984,39 +5991,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P77_155[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P77_tags_155[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P77_tags_155[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P77_specs_155 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P77), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P77, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P77_specs_155 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P77), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P77, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P77 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P77 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P77_tags_155, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P77_tags_155) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P77_tags_155[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P77_tags_155, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P77_tags_155) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P77_tags_155[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P77_tags_155, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P77_tags_155) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P77_tags_155[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P77_tags_155, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P77_tags_155) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P77_tags_155[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P77_constr_155, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P77_constr_155, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P77_155, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P77_155, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P77_specs_155 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P77_specs_155 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P78_157[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P78_157[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6035,39 +6042,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P78_157[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P78_tags_157[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P78_tags_157[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P78_specs_157 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P78), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P78, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P78_specs_157 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P78), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P78, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P78 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P78 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P78_tags_157, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P78_tags_157) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P78_tags_157[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P78_tags_157, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P78_tags_157) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P78_tags_157[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P78_tags_157, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P78_tags_157) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P78_tags_157[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P78_tags_157, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P78_tags_157) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P78_tags_157[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P78_constr_157, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P78_constr_157, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P78_157, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P78_157, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P78_specs_157 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P78_specs_157 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P79_159[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P79_159[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6086,39 +6093,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P79_159[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P79_tags_159[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P79_tags_159[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P79_specs_159 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P79), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P79, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P79_specs_159 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P79), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P79, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P79 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P79 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P79_tags_159, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P79_tags_159) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P79_tags_159[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P79_tags_159, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P79_tags_159) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P79_tags_159[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P79_tags_159, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P79_tags_159) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P79_tags_159[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P79_tags_159, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P79_tags_159) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P79_tags_159[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P79_constr_159, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P79_constr_159, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P79_159, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P79_159, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P79_specs_159 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P79_specs_159 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P80_161[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P80_161[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6137,39 +6144,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P80_161[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P80_tags_161[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P80_tags_161[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P80_specs_161 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P80), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P80, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P80_specs_161 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P80), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P80, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P80 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P80 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P80_tags_161, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P80_tags_161) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P80_tags_161[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P80_tags_161, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P80_tags_161) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P80_tags_161[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P80_tags_161, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P80_tags_161) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P80_tags_161[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P80_tags_161, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P80_tags_161) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P80_tags_161[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P80_constr_161, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P80_constr_161, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P80_161, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P80_161, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P80_specs_161 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P80_specs_161 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P81_163[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P81_163[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6188,39 +6195,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P81_163[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P81_tags_163[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P81_tags_163[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P81_specs_163 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P81), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P81, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P81_specs_163 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P81), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P81, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P81 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P81 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P81_tags_163, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P81_tags_163) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P81_tags_163[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P81_tags_163, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P81_tags_163) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P81_tags_163[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P81_tags_163, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P81_tags_163) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P81_tags_163[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P81_tags_163, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P81_tags_163) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P81_tags_163[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P81_constr_163, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P81_constr_163, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P81_163, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P81_163, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P81_specs_163 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P81_specs_163 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P82_165[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P82_165[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6239,39 +6246,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P82_165[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P82_tags_165[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P82_tags_165[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P82_specs_165 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P82), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P82, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P82_specs_165 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P82), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P82, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P82 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P82 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P82_tags_165, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P82_tags_165) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P82_tags_165[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P82_tags_165, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P82_tags_165) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P82_tags_165[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P82_tags_165, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P82_tags_165) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P82_tags_165[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P82_tags_165, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P82_tags_165) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P82_tags_165[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P82_constr_165, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P82_constr_165, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P82_165, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P82_165, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P82_specs_165 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P82_specs_165 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P83_167[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P83_167[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6290,39 +6297,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P83_167[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P83_tags_167[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P83_tags_167[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P83_specs_167 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P83), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P83, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P83_specs_167 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P83), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P83, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P83 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P83 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P83_tags_167, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P83_tags_167) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P83_tags_167[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P83_tags_167, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P83_tags_167) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P83_tags_167[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P83_tags_167, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P83_tags_167) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P83_tags_167[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P83_tags_167, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P83_tags_167) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P83_tags_167[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P83_constr_167, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P83_constr_167, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P83_167, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P83_167, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P83_specs_167 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P83_specs_167 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P84_169[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P84_169[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6341,39 +6348,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P84_169[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P84_tags_169[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P84_tags_169[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P84_specs_169 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P84), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P84, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P84_specs_169 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P84), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P84, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P84 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P84 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P84_tags_169, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P84_tags_169) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P84_tags_169[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P84_tags_169, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P84_tags_169) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P84_tags_169[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P84_tags_169, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P84_tags_169) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P84_tags_169[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P84_tags_169, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P84_tags_169) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P84_tags_169[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P84_constr_169, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P84_constr_169, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P84_169, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P84_169, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P84_specs_169 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P84_specs_169 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P85_171[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P85_171[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6392,39 +6399,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P85_171[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P85_tags_171[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P85_tags_171[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P85_specs_171 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P85), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P85, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P85_specs_171 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P85), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P85, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P85 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P85 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P85_tags_171, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P85_tags_171) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P85_tags_171[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P85_tags_171, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P85_tags_171) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P85_tags_171[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P85_tags_171, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P85_tags_171) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P85_tags_171[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P85_tags_171, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P85_tags_171) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P85_tags_171[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P85_constr_171, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P85_constr_171, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P85_171, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P85_171, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P85_specs_171 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P85_specs_171 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P86_173[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P86_173[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6443,39 +6450,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P86_173[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P86_tags_173[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P86_tags_173[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P86_specs_173 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P86), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P86, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P86_specs_173 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P86), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P86, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P86 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P86 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P86_tags_173, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P86_tags_173) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P86_tags_173[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P86_tags_173, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P86_tags_173) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P86_tags_173[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P86_tags_173, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P86_tags_173) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P86_tags_173[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P86_tags_173, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P86_tags_173) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P86_tags_173[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P86_constr_173, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P86_constr_173, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P86_173, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P86_173, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P86_specs_173 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P86_specs_173 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P87_175[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P87_175[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6494,39 +6501,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P87_175[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P87_tags_175[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P87_tags_175[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P87_specs_175 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P87), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P87, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P87_specs_175 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P87), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P87, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P87 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P87 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P87_tags_175, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P87_tags_175) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P87_tags_175[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P87_tags_175, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P87_tags_175) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P87_tags_175[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P87_tags_175, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P87_tags_175) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P87_tags_175[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P87_tags_175, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P87_tags_175) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P87_tags_175[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P87_constr_175, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P87_constr_175, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P87_175, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P87_175, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P87_specs_175 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P87_specs_175 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P88_177[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P88_177[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6545,39 +6552,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P88_177[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P88_tags_177[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P88_tags_177[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P88_specs_177 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P88), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P88, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P88_specs_177 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P88), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P88, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P88 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P88 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P88_tags_177, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P88_tags_177) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P88_tags_177[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P88_tags_177, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P88_tags_177) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P88_tags_177[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P88_tags_177, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P88_tags_177) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P88_tags_177[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P88_tags_177, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P88_tags_177) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P88_tags_177[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P88_constr_177, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P88_constr_177, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P88_177, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P88_177, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P88_specs_177 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P88_specs_177 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P89_179[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P89_179[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6596,39 +6603,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P89_179[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P89_tags_179[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P89_tags_179[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P89_specs_179 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P89), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P89, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P89_specs_179 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P89), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P89, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P89 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P89 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P89_tags_179, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P89_tags_179) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P89_tags_179[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P89_tags_179, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P89_tags_179) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P89_tags_179[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P89_tags_179, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P89_tags_179) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P89_tags_179[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P89_tags_179, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P89_tags_179) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P89_tags_179[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P89_constr_179, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P89_constr_179, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P89_179, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P89_179, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P89_specs_179 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P89_specs_179 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P90_181[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P90_181[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6647,39 +6654,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P90_181[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P90_tags_181[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P90_tags_181[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P90_specs_181 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P90), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P90, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P90_specs_181 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P90), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P90, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P90 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P90 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P90_tags_181, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P90_tags_181) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P90_tags_181[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P90_tags_181, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P90_tags_181) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P90_tags_181[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P90_tags_181, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P90_tags_181) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P90_tags_181[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P90_tags_181, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P90_tags_181) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P90_tags_181[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P90_constr_181, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P90_constr_181, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P90_181, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P90_181, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P90_specs_181 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P90_specs_181 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P91_183[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P91_183[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6698,39 +6705,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P91_183[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P91_tags_183[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P91_tags_183[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P91_specs_183 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P91), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P91, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P91_specs_183 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P91), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P91, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P91 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P91 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P91_tags_183, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P91_tags_183) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P91_tags_183[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P91_tags_183, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P91_tags_183) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P91_tags_183[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P91_tags_183, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P91_tags_183) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P91_tags_183[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P91_tags_183, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P91_tags_183) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P91_tags_183[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P91_constr_183, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P91_constr_183, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P91_183, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P91_183, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P91_specs_183 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P91_specs_183 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P92_185[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P92_185[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6749,39 +6756,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P92_185[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P92_tags_185[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P92_tags_185[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P92_specs_185 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P92), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P92, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P92_specs_185 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P92), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P92, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P92 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P92 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P92_tags_185, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P92_tags_185) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P92_tags_185[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P92_tags_185, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P92_tags_185) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P92_tags_185[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P92_tags_185, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P92_tags_185) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P92_tags_185[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P92_tags_185, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P92_tags_185) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P92_tags_185[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P92_constr_185, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P92_constr_185, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P92_185, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P92_185, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P92_specs_185 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P92_specs_185 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P93_187[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P93_187[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6800,39 +6807,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P93_187[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P93_tags_187[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P93_tags_187[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P93_specs_187 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P93), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P93, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P93_specs_187 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P93), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P93, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P93 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P93 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P93_tags_187, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P93_tags_187) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P93_tags_187[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P93_tags_187, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P93_tags_187) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P93_tags_187[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P93_tags_187, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P93_tags_187) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P93_tags_187[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P93_tags_187, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P93_tags_187) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P93_tags_187[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P93_constr_187, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P93_constr_187, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P93_187, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P93_187, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P93_specs_187 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P93_specs_187 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P94_189[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P94_189[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6851,39 +6858,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P94_189[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P94_tags_189[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P94_tags_189[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P94_specs_189 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P94), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P94, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P94_specs_189 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P94), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P94, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P94 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P94 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P94_tags_189, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P94_tags_189) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P94_tags_189[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P94_tags_189, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P94_tags_189) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P94_tags_189[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P94_tags_189, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P94_tags_189) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P94_tags_189[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P94_tags_189, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P94_tags_189) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P94_tags_189[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P94_constr_189, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P94_constr_189, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P94_189, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P94_189, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P94_specs_189 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P94_specs_189 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P95_191[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P95_191[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6902,39 +6909,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P95_191[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P95_tags_191[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P95_tags_191[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P95_specs_191 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P95), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P95, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P95_specs_191 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P95), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P95, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P95 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P95 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P95_tags_191, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P95_tags_191) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P95_tags_191[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P95_tags_191, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P95_tags_191) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P95_tags_191[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P95_tags_191, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P95_tags_191) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P95_tags_191[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P95_tags_191, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P95_tags_191) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P95_tags_191[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P95_constr_191, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P95_constr_191, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P95_191, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P95_191, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P95_specs_191 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P95_specs_191 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P96_193[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P96_193[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6953,39 +6960,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P96_193[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P96_tags_193[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P96_tags_193[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P96_specs_193 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P96), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P96, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P96_specs_193 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P96), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P96, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P96 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P96 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P96_tags_193, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P96_tags_193) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P96_tags_193[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P96_tags_193, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P96_tags_193) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P96_tags_193[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P96_tags_193, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P96_tags_193) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P96_tags_193[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P96_tags_193, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P96_tags_193) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P96_tags_193[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P96_constr_193, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P96_constr_193, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P96_193, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P96_193, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P96_specs_193 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P96_specs_193 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P97_195[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P97_195[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7004,39 +7011,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P97_195[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P97_tags_195[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P97_tags_195[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P97_specs_195 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P97), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P97, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P97_specs_195 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P97), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P97, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P97 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P97 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P97_tags_195, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P97_tags_195) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P97_tags_195[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P97_tags_195, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P97_tags_195) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P97_tags_195[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P97_tags_195, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P97_tags_195) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P97_tags_195[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P97_tags_195, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P97_tags_195) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P97_tags_195[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P97_constr_195, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P97_constr_195, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P97_195, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P97_195, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P97_specs_195 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P97_specs_195 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P98_197[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P98_197[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7055,39 +7062,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P98_197[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P98_tags_197[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P98_tags_197[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P98_specs_197 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P98), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P98, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P98_specs_197 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P98), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P98, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P98 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P98 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P98_tags_197, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P98_tags_197) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P98_tags_197[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P98_tags_197, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P98_tags_197) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P98_tags_197[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P98_tags_197, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P98_tags_197) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P98_tags_197[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P98_tags_197, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P98_tags_197) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P98_tags_197[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P98_constr_197, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P98_constr_197, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P98_197, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P98_197, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P98_specs_197 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P98_specs_197 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P99_199[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P99_199[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7106,39 +7113,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P99_199[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P99_tags_199[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P99_tags_199[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P99_specs_199 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P99), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P99, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P99_specs_199 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P99), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P99, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P99 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P99 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P99_tags_199, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P99_tags_199) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P99_tags_199[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P99_tags_199, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P99_tags_199) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P99_tags_199[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P99_tags_199, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P99_tags_199) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P99_tags_199[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P99_tags_199, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P99_tags_199) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P99_tags_199[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P99_constr_199, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P99_constr_199, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P99_199, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P99_199, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P99_specs_199 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P99_specs_199 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P100_201[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P100_201[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7157,39 +7164,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P100_201[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P100_tags_201[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P100_tags_201[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P100_specs_201 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P100), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P100, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P100_specs_201 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P100), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P100, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P100 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P100 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P100_tags_201, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P100_tags_201) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P100_tags_201[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P100_tags_201, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P100_tags_201) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P100_tags_201[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P100_tags_201, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P100_tags_201) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P100_tags_201[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P100_tags_201, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P100_tags_201) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P100_tags_201[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P100_constr_201, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P100_constr_201, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P100_201, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P100_201, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P100_specs_201 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P100_specs_201 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P101_203[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P101_203[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7208,39 +7215,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P101_203[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P101_tags_203[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P101_tags_203[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P101_specs_203 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P101), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P101, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P101_specs_203 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P101), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P101, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P101 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P101 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P101_tags_203, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P101_tags_203) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P101_tags_203[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P101_tags_203, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P101_tags_203) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P101_tags_203[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P101_tags_203, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P101_tags_203) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P101_tags_203[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P101_tags_203, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P101_tags_203) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P101_tags_203[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P101_constr_203, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P101_constr_203, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P101_203, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P101_203, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P101_specs_203 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P101_specs_203 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P102_205[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P102_205[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7259,39 +7266,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P102_205[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P102_tags_205[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P102_tags_205[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P102_specs_205 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P102), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P102, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P102_specs_205 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P102), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P102, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P102 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P102 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P102_tags_205, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P102_tags_205) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P102_tags_205[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P102_tags_205, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P102_tags_205) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P102_tags_205[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P102_tags_205, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P102_tags_205) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P102_tags_205[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P102_tags_205, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P102_tags_205) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P102_tags_205[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P102_constr_205, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P102_constr_205, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P102_205, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P102_205, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P102_specs_205 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P102_specs_205 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P103_207[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P103_207[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7310,39 +7317,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P103_207[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P103_tags_207[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P103_tags_207[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P103_specs_207 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P103), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P103, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P103_specs_207 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P103), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P103, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P103 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P103 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P103_tags_207, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P103_tags_207) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P103_tags_207[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P103_tags_207, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P103_tags_207) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P103_tags_207[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P103_tags_207, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P103_tags_207) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P103_tags_207[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P103_tags_207, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P103_tags_207) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P103_tags_207[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P103_constr_207, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P103_constr_207, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P103_207, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P103_207, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P103_specs_207 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P103_specs_207 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P104_209[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P104_209[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7361,39 +7368,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P104_209[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P104_tags_209[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P104_tags_209[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P104_specs_209 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P104), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P104, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P104_specs_209 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P104), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P104, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P104 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P104 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P104_tags_209, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P104_tags_209) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P104_tags_209[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P104_tags_209, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P104_tags_209) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P104_tags_209[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P104_tags_209, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P104_tags_209) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P104_tags_209[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P104_tags_209, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P104_tags_209) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P104_tags_209[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P104_constr_209, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P104_constr_209, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P104_209, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P104_209, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P104_specs_209 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P104_specs_209 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P105_211[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P105_211[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7412,39 +7419,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P105_211[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P105_tags_211[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P105_tags_211[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P105_specs_211 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P105), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P105, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P105_specs_211 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P105), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P105, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P105 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P105 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P105_tags_211, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P105_tags_211) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P105_tags_211[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P105_tags_211, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P105_tags_211) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P105_tags_211[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P105_tags_211, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P105_tags_211) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P105_tags_211[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P105_tags_211, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P105_tags_211) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P105_tags_211[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P105_constr_211, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P105_constr_211, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P105_211, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P105_211, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P105_specs_211 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P105_specs_211 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P106_213[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P106_213[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7463,39 +7470,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P106_213[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P106_tags_213[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P106_tags_213[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P106_specs_213 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P106), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P106, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P106_specs_213 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P106), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P106, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P106 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P106 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P106_tags_213, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P106_tags_213) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P106_tags_213[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P106_tags_213, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P106_tags_213) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P106_tags_213[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P106_tags_213, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P106_tags_213) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P106_tags_213[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P106_tags_213, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P106_tags_213) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P106_tags_213[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P106_constr_213, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P106_constr_213, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P106_213, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P106_213, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P106_specs_213 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P106_specs_213 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P107_215[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P107_215[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7514,39 +7521,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P107_215[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P107_tags_215[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P107_tags_215[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P107_specs_215 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P107), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P107, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P107_specs_215 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P107), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P107, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P107 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P107 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P107_tags_215, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P107_tags_215) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P107_tags_215[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P107_tags_215, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P107_tags_215) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P107_tags_215[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P107_tags_215, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P107_tags_215) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P107_tags_215[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P107_tags_215, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P107_tags_215) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P107_tags_215[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P107_constr_215, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P107_constr_215, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P107_215, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P107_215, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P107_specs_215 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P107_specs_215 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P108_217[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P108_217[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7565,39 +7572,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P108_217[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P108_tags_217[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P108_tags_217[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P108_specs_217 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P108), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P108, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P108_specs_217 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P108), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P108, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P108 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P108 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P108_tags_217, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P108_tags_217) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P108_tags_217[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P108_tags_217, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P108_tags_217) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P108_tags_217[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P108_tags_217, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P108_tags_217) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P108_tags_217[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P108_tags_217, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P108_tags_217) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P108_tags_217[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P108_constr_217, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P108_constr_217, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P108_217, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P108_217, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P108_specs_217 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P108_specs_217 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P109_219[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P109_219[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7616,39 +7623,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P109_219[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P109_tags_219[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P109_tags_219[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P109_specs_219 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P109), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P109, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P109_specs_219 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P109), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P109, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P109 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P109 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P109_tags_219, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P109_tags_219) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P109_tags_219[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P109_tags_219, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P109_tags_219) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P109_tags_219[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P109_tags_219, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P109_tags_219) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P109_tags_219[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P109_tags_219, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P109_tags_219) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P109_tags_219[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P109_constr_219, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P109_constr_219, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P109_219, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P109_219, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P109_specs_219 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P109_specs_219 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P110_221[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P110_221[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7667,39 +7674,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P110_221[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P110_tags_221[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P110_tags_221[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P110_specs_221 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P110), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P110, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P110_specs_221 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P110), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P110, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P110 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P110 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P110_tags_221, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P110_tags_221) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P110_tags_221[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P110_tags_221, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P110_tags_221) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P110_tags_221[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P110_tags_221, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P110_tags_221) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P110_tags_221[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P110_tags_221, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P110_tags_221) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P110_tags_221[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P110_constr_221, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P110_constr_221, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P110_221, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P110_221, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P110_specs_221 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P110_specs_221 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P111_223[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P111_223[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7718,39 +7725,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P111_223[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P111_tags_223[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P111_tags_223[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P111_specs_223 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P111), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P111, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P111_specs_223 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P111), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P111, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P111 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P111 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P111_tags_223, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P111_tags_223) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P111_tags_223[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P111_tags_223, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P111_tags_223) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P111_tags_223[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P111_tags_223, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P111_tags_223) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P111_tags_223[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P111_tags_223, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P111_tags_223) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P111_tags_223[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P111_constr_223, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P111_constr_223, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P111_223, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P111_223, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P111_specs_223 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P111_specs_223 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P112_225[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P112_225[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7769,39 +7776,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P112_225[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P112_tags_225[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P112_tags_225[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P112_specs_225 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P112), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P112, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P112_specs_225 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P112), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P112, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P112 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P112 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P112_tags_225, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P112_tags_225) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P112_tags_225[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P112_tags_225, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P112_tags_225) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P112_tags_225[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P112_tags_225, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P112_tags_225) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P112_tags_225[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P112_tags_225, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P112_tags_225) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P112_tags_225[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P112_constr_225, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P112_constr_225, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P112_225, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P112_225, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P112_specs_225 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P112_specs_225 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P113_227[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P113_227[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7820,39 +7827,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P113_227[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P113_tags_227[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P113_tags_227[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P113_specs_227 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P113), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P113, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P113_specs_227 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P113), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P113, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P113 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P113 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P113_tags_227, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P113_tags_227) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P113_tags_227[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P113_tags_227, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P113_tags_227) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P113_tags_227[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P113_tags_227, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P113_tags_227) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P113_tags_227[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P113_tags_227, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P113_tags_227) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P113_tags_227[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P113_constr_227, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P113_constr_227, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P113_227, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P113_227, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P113_specs_227 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P113_specs_227 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P114_229[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P114_229[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7871,39 +7878,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P114_229[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P114_tags_229[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P114_tags_229[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P114_specs_229 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P114), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P114, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P114_specs_229 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P114), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P114, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P114 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P114 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P114_tags_229, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P114_tags_229) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P114_tags_229[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P114_tags_229, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P114_tags_229) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P114_tags_229[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P114_tags_229, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P114_tags_229) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P114_tags_229[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P114_tags_229, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P114_tags_229) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P114_tags_229[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P114_constr_229, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P114_constr_229, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P114_229, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P114_229, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P114_specs_229 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P114_specs_229 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P115_231[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P115_231[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7922,39 +7929,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P115_231[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P115_tags_231[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P115_tags_231[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P115_specs_231 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P115), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P115, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P115_specs_231 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P115), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P115, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P115 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P115 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P115_tags_231, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P115_tags_231) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P115_tags_231[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P115_tags_231, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P115_tags_231) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P115_tags_231[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P115_tags_231, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P115_tags_231) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P115_tags_231[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P115_tags_231, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P115_tags_231) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P115_tags_231[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P115_constr_231, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P115_constr_231, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P115_231, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P115_231, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P115_specs_231 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P115_specs_231 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P116_233[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P116_233[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7973,39 +7980,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P116_233[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P116_tags_233[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P116_tags_233[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P116_specs_233 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P116), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P116, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P116_specs_233 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P116), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P116, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P116 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P116 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P116_tags_233, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P116_tags_233) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P116_tags_233[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P116_tags_233, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P116_tags_233) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P116_tags_233[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P116_tags_233, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P116_tags_233) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P116_tags_233[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P116_tags_233, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P116_tags_233) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P116_tags_233[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P116_constr_233, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P116_constr_233, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P116_233, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P116_233, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P116_specs_233 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P116_specs_233 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P117_235[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P117_235[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8024,39 +8031,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P117_235[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P117_tags_235[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P117_tags_235[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P117_specs_235 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P117), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P117, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P117_specs_235 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P117), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P117, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P117 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P117 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P117_tags_235, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P117_tags_235) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P117_tags_235[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P117_tags_235, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P117_tags_235) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P117_tags_235[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P117_tags_235, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P117_tags_235) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P117_tags_235[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P117_tags_235, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P117_tags_235) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P117_tags_235[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P117_constr_235, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P117_constr_235, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P117_235, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P117_235, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P117_specs_235 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P117_specs_235 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P118_237[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P118_237[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8075,39 +8082,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P118_237[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P118_tags_237[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P118_tags_237[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P118_specs_237 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P118), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P118, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P118_specs_237 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P118), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P118, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P118 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P118 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P118_tags_237, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P118_tags_237) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P118_tags_237[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P118_tags_237, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P118_tags_237) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P118_tags_237[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P118_tags_237, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P118_tags_237) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P118_tags_237[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P118_tags_237, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P118_tags_237) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P118_tags_237[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P118_constr_237, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P118_constr_237, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P118_237, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P118_237, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P118_specs_237 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P118_specs_237 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P119_239[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P119_239[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8126,39 +8133,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P119_239[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P119_tags_239[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P119_tags_239[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P119_specs_239 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P119), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P119, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P119_specs_239 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P119), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P119, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P119 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P119 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P119_tags_239, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P119_tags_239) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P119_tags_239[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P119_tags_239, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P119_tags_239) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P119_tags_239[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P119_tags_239, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P119_tags_239) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P119_tags_239[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P119_tags_239, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P119_tags_239) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P119_tags_239[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P119_constr_239, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P119_constr_239, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P119_239, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P119_239, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P119_specs_239 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P119_specs_239 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P120_241[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P120_241[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8177,39 +8184,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P120_241[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P120_tags_241[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P120_tags_241[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P120_specs_241 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P120), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P120, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P120_specs_241 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P120), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P120, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P120 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P120 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P120_tags_241, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P120_tags_241) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P120_tags_241[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P120_tags_241, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P120_tags_241) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P120_tags_241[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P120_tags_241, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P120_tags_241) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P120_tags_241[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P120_tags_241, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P120_tags_241) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P120_tags_241[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P120_constr_241, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P120_constr_241, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P120_241, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P120_241, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P120_specs_241 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P120_specs_241 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P121_243[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P121_243[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8228,39 +8235,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P121_243[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P121_tags_243[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P121_tags_243[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P121_specs_243 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P121), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P121, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P121_specs_243 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P121), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P121, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P121 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P121 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P121_tags_243, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P121_tags_243) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P121_tags_243[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P121_tags_243, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P121_tags_243) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P121_tags_243[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P121_tags_243, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P121_tags_243) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P121_tags_243[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P121_tags_243, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P121_tags_243) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P121_tags_243[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P121_constr_243, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P121_constr_243, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P121_243, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P121_243, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P121_specs_243 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P121_specs_243 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P122_245[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P122_245[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8279,39 +8286,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P122_245[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P122_tags_245[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P122_tags_245[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P122_specs_245 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P122), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P122, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P122_specs_245 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P122), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P122, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P122 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P122 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P122_tags_245, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P122_tags_245) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P122_tags_245[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P122_tags_245, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P122_tags_245) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P122_tags_245[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P122_tags_245, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P122_tags_245) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P122_tags_245[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P122_tags_245, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P122_tags_245) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P122_tags_245[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P122_constr_245, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P122_constr_245, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P122_245, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P122_245, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P122_specs_245 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P122_specs_245 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P123_247[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P123_247[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8330,39 +8337,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P123_247[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P123_tags_247[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P123_tags_247[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P123_specs_247 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P123), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P123, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P123_specs_247 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P123), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P123, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P123 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P123 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P123_tags_247, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P123_tags_247) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P123_tags_247[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P123_tags_247, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P123_tags_247) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P123_tags_247[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P123_tags_247, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P123_tags_247) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P123_tags_247[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P123_tags_247, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P123_tags_247) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P123_tags_247[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P123_constr_247, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P123_constr_247, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P123_247, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P123_247, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P123_specs_247 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P123_specs_247 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P124_249[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P124_249[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8381,39 +8388,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P124_249[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P124_tags_249[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P124_tags_249[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P124_specs_249 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P124), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P124, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P124_specs_249 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P124), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P124, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P124 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P124 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P124_tags_249, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P124_tags_249) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P124_tags_249[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P124_tags_249, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P124_tags_249) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P124_tags_249[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P124_tags_249, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P124_tags_249) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P124_tags_249[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P124_tags_249, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P124_tags_249) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P124_tags_249[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P124_constr_249, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P124_constr_249, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P124_249, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P124_249, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P124_specs_249 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P124_specs_249 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P125_251[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P125_251[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8432,39 +8439,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P125_251[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P125_tags_251[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P125_tags_251[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P125_specs_251 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P125), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P125, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P125_specs_251 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P125), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P125, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P125 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P125 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P125_tags_251, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P125_tags_251) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P125_tags_251[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P125_tags_251, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P125_tags_251) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P125_tags_251[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P125_tags_251, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P125_tags_251) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P125_tags_251[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P125_tags_251, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P125_tags_251) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P125_tags_251[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P125_constr_251, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P125_constr_251, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P125_251, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P125_251, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P125_specs_251 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P125_specs_251 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P126_253[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P126_253[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8483,39 +8490,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P126_253[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P126_tags_253[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P126_tags_253[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P126_specs_253 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P126), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P126, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P126_specs_253 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P126), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P126, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P126 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P126 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P126_tags_253, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P126_tags_253) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P126_tags_253[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P126_tags_253, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P126_tags_253) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P126_tags_253[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P126_tags_253, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P126_tags_253) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P126_tags_253[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P126_tags_253, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P126_tags_253) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P126_tags_253[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P126_constr_253, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P126_constr_253, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P126_253, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P126_253, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P126_specs_253 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P126_specs_253 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P127_255[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P127_255[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8534,39 +8541,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P127_255[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P127_tags_255[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P127_tags_255[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P127_specs_255 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P127), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P127, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P127_specs_255 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P127), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P127, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P127 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P127 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P127_tags_255, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P127_tags_255) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P127_tags_255[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P127_tags_255, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P127_tags_255) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P127_tags_255[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P127_tags_255, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P127_tags_255) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P127_tags_255[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P127_tags_255, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P127_tags_255) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P127_tags_255[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P127_constr_255, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P127_constr_255, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P127_255, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P127_255, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P127_specs_255 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P127_specs_255 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P128_257[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P128_257[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8585,39 +8592,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P128_257[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P128_tags_257[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P128_tags_257[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P128_specs_257 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P128), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P128, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P128_specs_257 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P128), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P128, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P128 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P128 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P128_tags_257, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P128_tags_257) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P128_tags_257[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P128_tags_257, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P128_tags_257) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P128_tags_257[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P128_tags_257, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P128_tags_257) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P128_tags_257[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P128_tags_257, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P128_tags_257) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P128_tags_257[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P128_constr_257, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P128_constr_257, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P128_257, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P128_257, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P128_specs_257 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P128_specs_257 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P129_259[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P129_259[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8636,39 +8643,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P129_259[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P129_tags_259[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P129_tags_259[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P129_specs_259 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P129), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P129, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P129_specs_259 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P129), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P129, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P129 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P129 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P129_tags_259, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P129_tags_259) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P129_tags_259[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P129_tags_259, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P129_tags_259) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P129_tags_259[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P129_tags_259, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P129_tags_259) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P129_tags_259[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P129_tags_259, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P129_tags_259) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P129_tags_259[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P129_constr_259, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P129_constr_259, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P129_259, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P129_259, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P129_specs_259 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P129_specs_259 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P130_261[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P130_261[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8687,39 +8694,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P130_261[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P130_tags_261[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P130_tags_261[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P130_specs_261 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P130), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P130, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P130_specs_261 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P130), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P130, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P130 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P130 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P130_tags_261, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P130_tags_261) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P130_tags_261[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P130_tags_261, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P130_tags_261) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P130_tags_261[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P130_tags_261, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P130_tags_261) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P130_tags_261[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P130_tags_261, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P130_tags_261) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P130_tags_261[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P130_constr_261, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P130_constr_261, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P130_261, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P130_261, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P130_specs_261 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P130_specs_261 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P131_263[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P131_263[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8738,39 +8745,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P131_263[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P131_tags_263[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P131_tags_263[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P131_specs_263 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P131), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P131, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P131_specs_263 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P131), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P131, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P131 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P131 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P131_tags_263, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P131_tags_263) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P131_tags_263[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P131_tags_263, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P131_tags_263) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P131_tags_263[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P131_tags_263, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P131_tags_263) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P131_tags_263[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P131_tags_263, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P131_tags_263) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P131_tags_263[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P131_constr_263, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P131_constr_263, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P131_263, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P131_263, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P131_specs_263 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P131_specs_263 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P132_265[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P132_265[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8789,39 +8796,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P132_265[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P132_tags_265[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P132_tags_265[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P132_specs_265 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P132), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P132, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P132_specs_265 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P132), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P132, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P132 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P132 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P132_tags_265, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P132_tags_265) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P132_tags_265[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P132_tags_265, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P132_tags_265) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P132_tags_265[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P132_tags_265, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P132_tags_265) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P132_tags_265[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P132_tags_265, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P132_tags_265) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P132_tags_265[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P132_constr_265, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P132_constr_265, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P132_265, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P132_265, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P132_specs_265 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P132_specs_265 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P133_267[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P133_267[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8840,39 +8847,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P133_267[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P133_tags_267[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P133_tags_267[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P133_specs_267 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P133), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P133, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P133_specs_267 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P133), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P133, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P133 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P133 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P133_tags_267, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P133_tags_267) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P133_tags_267[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P133_tags_267, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P133_tags_267) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P133_tags_267[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P133_tags_267, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P133_tags_267) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P133_tags_267[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P133_tags_267, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P133_tags_267) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P133_tags_267[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P133_constr_267, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P133_constr_267, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P133_267, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P133_267, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P133_specs_267 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P133_specs_267 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P134_269[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P134_269[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8891,39 +8898,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P134_269[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P134_tags_269[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P134_tags_269[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P134_specs_269 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P134), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P134, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P134_specs_269 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P134), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P134, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P134 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P134 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P134_tags_269, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P134_tags_269) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P134_tags_269[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P134_tags_269, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P134_tags_269) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P134_tags_269[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P134_tags_269, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P134_tags_269) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P134_tags_269[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P134_tags_269, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P134_tags_269) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P134_tags_269[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P134_constr_269, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P134_constr_269, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P134_269, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P134_269, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P134_specs_269 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P134_specs_269 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P135_271[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P135_271[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8942,39 +8949,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P135_271[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P135_tags_271[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P135_tags_271[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P135_specs_271 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P135), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P135, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P135_specs_271 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P135), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P135, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P135 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P135 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P135_tags_271, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P135_tags_271) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P135_tags_271[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P135_tags_271, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P135_tags_271) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P135_tags_271[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P135_tags_271, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P135_tags_271) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P135_tags_271[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P135_tags_271, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P135_tags_271) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P135_tags_271[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P135_constr_271, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P135_constr_271, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P135_271, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P135_271, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P135_specs_271 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P135_specs_271 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P136_273[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P136_273[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8993,39 +9000,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P136_273[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P136_tags_273[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P136_tags_273[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P136_specs_273 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P136), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P136, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P136_specs_273 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P136), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P136, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P136 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P136 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P136_tags_273, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P136_tags_273) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P136_tags_273[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P136_tags_273, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P136_tags_273) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P136_tags_273[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P136_tags_273, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P136_tags_273) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P136_tags_273[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P136_tags_273, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P136_tags_273) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P136_tags_273[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P136_constr_273, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P136_constr_273, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P136_273, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P136_273, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P136_specs_273 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P136_specs_273 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P137_275[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P137_275[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9044,39 +9051,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P137_275[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P137_tags_275[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P137_tags_275[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P137_specs_275 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P137), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P137, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P137_specs_275 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P137), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P137, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P137 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P137 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P137_tags_275, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P137_tags_275) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P137_tags_275[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P137_tags_275, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P137_tags_275) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P137_tags_275[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P137_tags_275, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P137_tags_275) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P137_tags_275[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P137_tags_275, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P137_tags_275) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P137_tags_275[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P137_constr_275, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P137_constr_275, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P137_275, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P137_275, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P137_specs_275 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P137_specs_275 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P138_277[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P138_277[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9095,39 +9102,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P138_277[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P138_tags_277[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P138_tags_277[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P138_specs_277 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P138), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P138, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P138_specs_277 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P138), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P138, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P138 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P138 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P138_tags_277, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P138_tags_277) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P138_tags_277[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P138_tags_277, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P138_tags_277) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P138_tags_277[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P138_tags_277, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P138_tags_277) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P138_tags_277[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P138_tags_277, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P138_tags_277) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P138_tags_277[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P138_constr_277, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P138_constr_277, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P138_277, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P138_277, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P138_specs_277 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P138_specs_277 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P139_279[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P139_279[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9146,39 +9153,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P139_279[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P139_tags_279[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P139_tags_279[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P139_specs_279 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P139), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P139, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P139_specs_279 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P139), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P139, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P139 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P139 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P139_tags_279, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P139_tags_279) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P139_tags_279[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P139_tags_279, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P139_tags_279) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P139_tags_279[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P139_tags_279, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P139_tags_279) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P139_tags_279[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P139_tags_279, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P139_tags_279) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P139_tags_279[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P139_constr_279, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P139_constr_279, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P139_279, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P139_279, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P139_specs_279 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P139_specs_279 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P140_281[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P140_281[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9197,39 +9204,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P140_281[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P140_tags_281[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P140_tags_281[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P140_specs_281 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P140), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P140, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P140_specs_281 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P140), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P140, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P140 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P140 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P140_tags_281, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P140_tags_281) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P140_tags_281[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P140_tags_281, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P140_tags_281) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P140_tags_281[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P140_tags_281, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P140_tags_281) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P140_tags_281[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P140_tags_281, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P140_tags_281) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P140_tags_281[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P140_constr_281, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P140_constr_281, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P140_281, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P140_281, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P140_specs_281 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P140_specs_281 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P141_283[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P141_283[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9248,39 +9255,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P141_283[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P141_tags_283[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P141_tags_283[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P141_specs_283 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P141), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P141, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P141_specs_283 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P141), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P141, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P141 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P141 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P141_tags_283, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P141_tags_283) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P141_tags_283[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P141_tags_283, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P141_tags_283) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P141_tags_283[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P141_tags_283, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P141_tags_283) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P141_tags_283[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P141_tags_283, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P141_tags_283) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P141_tags_283[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P141_constr_283, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P141_constr_283, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P141_283, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P141_283, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P141_specs_283 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P141_specs_283 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P142_285[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P142_285[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9299,39 +9306,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P142_285[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P142_tags_285[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P142_tags_285[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P142_specs_285 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P142), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P142, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P142_specs_285 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P142), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P142, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P142 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P142 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P142_tags_285, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P142_tags_285) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P142_tags_285[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P142_tags_285, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P142_tags_285) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P142_tags_285[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P142_tags_285, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P142_tags_285) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P142_tags_285[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P142_tags_285, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P142_tags_285) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P142_tags_285[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P142_constr_285, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P142_constr_285, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P142_285, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P142_285, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P142_specs_285 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P142_specs_285 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P143_287[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P143_287[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9350,39 +9357,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P143_287[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P143_tags_287[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P143_tags_287[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P143_specs_287 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P143), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P143, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P143_specs_287 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P143), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P143, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P143 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P143 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P143_tags_287, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P143_tags_287) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P143_tags_287[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P143_tags_287, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P143_tags_287) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P143_tags_287[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P143_tags_287, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P143_tags_287) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P143_tags_287[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P143_tags_287, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P143_tags_287) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P143_tags_287[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P143_constr_287, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P143_constr_287, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P143_287, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P143_287, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P143_specs_287 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P143_specs_287 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P144_289[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P144_289[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9401,39 +9408,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P144_289[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P144_tags_289[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P144_tags_289[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P144_specs_289 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P144), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P144, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P144_specs_289 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P144), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P144, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P144 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P144 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P144_tags_289, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P144_tags_289) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P144_tags_289[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P144_tags_289, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P144_tags_289) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P144_tags_289[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P144_tags_289, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P144_tags_289) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P144_tags_289[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P144_tags_289, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P144_tags_289) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P144_tags_289[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P144_constr_289, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P144_constr_289, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P144_289, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P144_289, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P144_specs_289 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P144_specs_289 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P145_291[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P145_291[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9452,39 +9459,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P145_291[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P145_tags_291[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P145_tags_291[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P145_specs_291 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P145), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P145, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P145_specs_291 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P145), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P145, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P145 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P145 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P145_tags_291, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P145_tags_291) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P145_tags_291[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P145_tags_291, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P145_tags_291) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P145_tags_291[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P145_tags_291, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P145_tags_291) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P145_tags_291[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P145_tags_291, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P145_tags_291) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P145_tags_291[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P145_constr_291, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P145_constr_291, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P145_291, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P145_291, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P145_specs_291 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P145_specs_291 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P146_293[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P146_293[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9503,39 +9510,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P146_293[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P146_tags_293[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P146_tags_293[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P146_specs_293 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P146), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P146, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P146_specs_293 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P146), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P146, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P146 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P146 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P146_tags_293, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P146_tags_293) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P146_tags_293[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P146_tags_293, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P146_tags_293) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P146_tags_293[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P146_tags_293, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P146_tags_293) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P146_tags_293[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P146_tags_293, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P146_tags_293) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P146_tags_293[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P146_constr_293, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P146_constr_293, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P146_293, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P146_293, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P146_specs_293 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P146_specs_293 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P147_295[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P147_295[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9554,39 +9561,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P147_295[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P147_tags_295[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P147_tags_295[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P147_specs_295 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P147), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P147, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P147_specs_295 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P147), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P147, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P147 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P147 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P147_tags_295, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P147_tags_295) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P147_tags_295[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P147_tags_295, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P147_tags_295) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P147_tags_295[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P147_tags_295, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P147_tags_295) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P147_tags_295[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P147_tags_295, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P147_tags_295) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P147_tags_295[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P147_constr_295, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P147_constr_295, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P147_295, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P147_295, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P147_specs_295 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P147_specs_295 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P148_297[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P148_297[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9605,39 +9612,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P148_297[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P148_tags_297[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P148_tags_297[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P148_specs_297 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P148), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P148, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P148_specs_297 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P148), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P148, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P148 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P148 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P148_tags_297, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P148_tags_297) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P148_tags_297[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P148_tags_297, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P148_tags_297) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P148_tags_297[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P148_tags_297, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P148_tags_297) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P148_tags_297[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P148_tags_297, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P148_tags_297) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P148_tags_297[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P148_constr_297, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P148_constr_297, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P148_297, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P148_297, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P148_specs_297 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P148_specs_297 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P149_299[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P149_299[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9656,39 +9663,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P149_299[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P149_tags_299[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P149_tags_299[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P149_specs_299 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P149), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P149, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P149_specs_299 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P149), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P149, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P149 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P149 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P149_tags_299, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P149_tags_299) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P149_tags_299[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P149_tags_299, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P149_tags_299) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P149_tags_299[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P149_tags_299, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P149_tags_299) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P149_tags_299[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P149_tags_299, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P149_tags_299) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P149_tags_299[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P149_constr_299, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P149_constr_299, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P149_299, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P149_299, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P149_specs_299 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P149_specs_299 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P150_301[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P150_301[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9707,39 +9714,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P150_301[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P150_tags_301[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P150_tags_301[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P150_specs_301 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P150), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P150, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P150_specs_301 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P150), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P150, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P150 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P150 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P150_tags_301, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P150_tags_301) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P150_tags_301[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P150_tags_301, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P150_tags_301) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P150_tags_301[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P150_tags_301, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P150_tags_301) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P150_tags_301[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P150_tags_301, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P150_tags_301) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P150_tags_301[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P150_constr_301, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P150_constr_301, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P150_301, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P150_301, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P150_specs_301 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P150_specs_301 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P151_303[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P151_303[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9758,39 +9765,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P151_303[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P151_tags_303[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P151_tags_303[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P151_specs_303 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P151), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P151, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P151_specs_303 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P151), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P151, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P151 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P151 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P151_tags_303, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P151_tags_303) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P151_tags_303[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P151_tags_303, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P151_tags_303) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P151_tags_303[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P151_tags_303, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P151_tags_303) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P151_tags_303[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P151_tags_303, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P151_tags_303) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P151_tags_303[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P151_constr_303, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P151_constr_303, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P151_303, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P151_303, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P151_specs_303 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P151_specs_303 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P152_305[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P152_305[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9809,39 +9816,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P152_305[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P152_tags_305[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P152_tags_305[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P152_specs_305 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P152), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P152, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P152_specs_305 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P152), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P152, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P152 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P152 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P152_tags_305, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P152_tags_305) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P152_tags_305[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P152_tags_305, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P152_tags_305) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P152_tags_305[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P152_tags_305, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P152_tags_305) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P152_tags_305[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P152_tags_305, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P152_tags_305) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P152_tags_305[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P152_constr_305, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P152_constr_305, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P152_305, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P152_305, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P152_specs_305 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P152_specs_305 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P153_307[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P153_307[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9860,39 +9867,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P153_307[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P153_tags_307[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P153_tags_307[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P153_specs_307 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P153), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P153, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P153_specs_307 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P153), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P153, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P153 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P153 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P153_tags_307, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P153_tags_307) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P153_tags_307[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P153_tags_307, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P153_tags_307) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P153_tags_307[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P153_tags_307, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P153_tags_307) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P153_tags_307[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P153_tags_307, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P153_tags_307) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P153_tags_307[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P153_constr_307, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P153_constr_307, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P153_307, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P153_307, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P153_specs_307 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P153_specs_307 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P154_309[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P154_309[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9911,39 +9918,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P154_309[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P154_tags_309[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P154_tags_309[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P154_specs_309 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P154), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P154, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P154_specs_309 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P154), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P154, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P154 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P154 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P154_tags_309, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P154_tags_309) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P154_tags_309[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P154_tags_309, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P154_tags_309) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P154_tags_309[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P154_tags_309, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P154_tags_309) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P154_tags_309[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P154_tags_309, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P154_tags_309) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P154_tags_309[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P154_constr_309, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P154_constr_309, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P154_309, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P154_309, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P154_specs_309 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P154_specs_309 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P155_311[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P155_311[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9962,39 +9969,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P155_311[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P155_tags_311[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P155_tags_311[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P155_specs_311 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P155), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P155, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P155_specs_311 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P155), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P155, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P155 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P155 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P155_tags_311, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P155_tags_311) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P155_tags_311[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P155_tags_311, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P155_tags_311) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P155_tags_311[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P155_tags_311, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P155_tags_311) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P155_tags_311[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P155_tags_311, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P155_tags_311) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P155_tags_311[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P155_constr_311, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P155_constr_311, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P155_311, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P155_311, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P155_specs_311 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P155_specs_311 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P156_313[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P156_313[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10013,39 +10020,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P156_313[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P156_tags_313[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P156_tags_313[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P156_specs_313 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P156), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P156, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P156_specs_313 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P156), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P156, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P156 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P156 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P156_tags_313, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P156_tags_313) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P156_tags_313[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P156_tags_313, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P156_tags_313) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P156_tags_313[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P156_tags_313, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P156_tags_313) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P156_tags_313[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P156_tags_313, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P156_tags_313) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P156_tags_313[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P156_constr_313, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P156_constr_313, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P156_313, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P156_313, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P156_specs_313 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P156_specs_313 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P157_315[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P157_315[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10064,39 +10071,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P157_315[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P157_tags_315[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P157_tags_315[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P157_specs_315 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P157), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P157, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P157_specs_315 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P157), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P157, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P157 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P157 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P157_tags_315, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P157_tags_315) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P157_tags_315[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P157_tags_315, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P157_tags_315) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P157_tags_315[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P157_tags_315, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P157_tags_315) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P157_tags_315[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P157_tags_315, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P157_tags_315) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P157_tags_315[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P157_constr_315, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P157_constr_315, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P157_315, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P157_315, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P157_specs_315 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P157_specs_315 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P158_317[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P158_317[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10115,39 +10122,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P158_317[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P158_tags_317[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P158_tags_317[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P158_specs_317 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P158), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P158, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P158_specs_317 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P158), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P158, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P158 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P158 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P158_tags_317, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P158_tags_317) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P158_tags_317[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P158_tags_317, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P158_tags_317) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P158_tags_317[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P158_tags_317, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P158_tags_317) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P158_tags_317[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P158_tags_317, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P158_tags_317) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P158_tags_317[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P158_constr_317, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P158_constr_317, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P158_317, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P158_317, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P158_specs_317 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P158_specs_317 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P159_319[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P159_319[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10166,39 +10173,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P159_319[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P159_tags_319[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P159_tags_319[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P159_specs_319 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P159), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P159, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P159_specs_319 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P159), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P159, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P159 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P159 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P159_tags_319, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P159_tags_319) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P159_tags_319[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P159_tags_319, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P159_tags_319) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P159_tags_319[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P159_tags_319, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P159_tags_319) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P159_tags_319[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P159_tags_319, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P159_tags_319) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P159_tags_319[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P159_constr_319, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P159_constr_319, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P159_319, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P159_319, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P159_specs_319 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P159_specs_319 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P160_321[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P160_321[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10217,39 +10224,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P160_321[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P160_tags_321[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P160_tags_321[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P160_specs_321 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P160), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P160, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P160_specs_321 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P160), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P160, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P160 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P160 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P160_tags_321, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P160_tags_321) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P160_tags_321[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P160_tags_321, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P160_tags_321) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P160_tags_321[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P160_tags_321, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P160_tags_321) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P160_tags_321[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P160_tags_321, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P160_tags_321) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P160_tags_321[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P160_constr_321, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P160_constr_321, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P160_321, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P160_321, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P160_specs_321 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P160_specs_321 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P161_323[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P161_323[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10268,39 +10275,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P161_323[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P161_tags_323[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P161_tags_323[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P161_specs_323 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P161), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P161, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P161_specs_323 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P161), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P161, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P161 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P161 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P161_tags_323, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P161_tags_323) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P161_tags_323[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P161_tags_323, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P161_tags_323) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P161_tags_323[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P161_tags_323, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P161_tags_323) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P161_tags_323[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P161_tags_323, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P161_tags_323) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P161_tags_323[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P161_constr_323, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P161_constr_323, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P161_323, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P161_323, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P161_specs_323 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P161_specs_323 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P162_325[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P162_325[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10319,39 +10326,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P162_325[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P162_tags_325[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P162_tags_325[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P162_specs_325 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P162), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P162, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P162_specs_325 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P162), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P162, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P162 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P162 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P162_tags_325, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P162_tags_325) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P162_tags_325[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P162_tags_325, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P162_tags_325) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P162_tags_325[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P162_tags_325, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P162_tags_325) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P162_tags_325[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P162_tags_325, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P162_tags_325) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P162_tags_325[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P162_constr_325, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P162_constr_325, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P162_325, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P162_325, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P162_specs_325 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P162_specs_325 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P163_327[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P163_327[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10370,39 +10377,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P163_327[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P163_tags_327[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P163_tags_327[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P163_specs_327 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P163), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P163, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P163_specs_327 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P163), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P163, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P163 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P163 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P163_tags_327, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P163_tags_327) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P163_tags_327[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P163_tags_327, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P163_tags_327) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P163_tags_327[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P163_tags_327, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P163_tags_327) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P163_tags_327[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P163_tags_327, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P163_tags_327) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P163_tags_327[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P163_constr_327, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P163_constr_327, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P163_327, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P163_327, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P163_specs_327 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P163_specs_327 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P164_329[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P164_329[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10421,39 +10428,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P164_329[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P164_tags_329[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P164_tags_329[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P164_specs_329 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P164), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P164, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P164_specs_329 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P164), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P164, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P164 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P164 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P164_tags_329, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P164_tags_329) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P164_tags_329[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P164_tags_329, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P164_tags_329) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P164_tags_329[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P164_tags_329, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P164_tags_329) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P164_tags_329[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P164_tags_329, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P164_tags_329) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P164_tags_329[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P164_constr_329, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P164_constr_329, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P164_329, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P164_329, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P164_specs_329 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P164_specs_329 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P165_331[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P165_331[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10472,39 +10479,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P165_331[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P165_tags_331[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P165_tags_331[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P165_specs_331 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P165), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P165, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P165_specs_331 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P165), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P165, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P165 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P165 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P165_tags_331, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P165_tags_331) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P165_tags_331[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P165_tags_331, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P165_tags_331) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P165_tags_331[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P165_tags_331, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P165_tags_331) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P165_tags_331[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P165_tags_331, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P165_tags_331) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P165_tags_331[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P165_constr_331, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P165_constr_331, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P165_331, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P165_331, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P165_specs_331 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P165_specs_331 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P166_333[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P166_333[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10523,39 +10530,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P166_333[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P166_tags_333[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P166_tags_333[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P166_specs_333 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P166), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P166, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P166_specs_333 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P166), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P166, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P166 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P166 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P166_tags_333, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P166_tags_333) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P166_tags_333[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P166_tags_333, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P166_tags_333) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P166_tags_333[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P166_tags_333, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P166_tags_333) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P166_tags_333[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P166_tags_333, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P166_tags_333) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P166_tags_333[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P166_constr_333, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P166_constr_333, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P166_333, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P166_333, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P166_specs_333 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P166_specs_333 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P167_335[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P167_335[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10574,39 +10581,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P167_335[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P167_tags_335[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P167_tags_335[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P167_specs_335 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P167), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P167, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P167_specs_335 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P167), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P167, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P167 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P167 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P167_tags_335, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P167_tags_335) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P167_tags_335[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P167_tags_335, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P167_tags_335) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P167_tags_335[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P167_tags_335, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P167_tags_335) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P167_tags_335[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P167_tags_335, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P167_tags_335) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P167_tags_335[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P167_constr_335, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P167_constr_335, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P167_335, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P167_335, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P167_specs_335 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P167_specs_335 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P168_337[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P168_337[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10625,39 +10632,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P168_337[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P168_tags_337[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P168_tags_337[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P168_specs_337 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P168), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P168, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P168_specs_337 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P168), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P168, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P168 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P168 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P168_tags_337, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P168_tags_337) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P168_tags_337[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P168_tags_337, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P168_tags_337) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P168_tags_337[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P168_tags_337, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P168_tags_337) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P168_tags_337[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P168_tags_337, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P168_tags_337) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P168_tags_337[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P168_constr_337, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P168_constr_337, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P168_337, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P168_337, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P168_specs_337 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P168_specs_337 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P169_339[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P169_339[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10676,39 +10683,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P169_339[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P169_tags_339[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P169_tags_339[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P169_specs_339 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P169), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P169, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P169_specs_339 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P169), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P169, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P169 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P169 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P169_tags_339, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P169_tags_339) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P169_tags_339[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P169_tags_339, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P169_tags_339) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P169_tags_339[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P169_tags_339, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P169_tags_339) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P169_tags_339[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P169_tags_339, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P169_tags_339) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P169_tags_339[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P169_constr_339, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P169_constr_339, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P169_339, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P169_339, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P169_specs_339 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P169_specs_339 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P170_341[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P170_341[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10727,39 +10734,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P170_341[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P170_tags_341[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P170_tags_341[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P170_specs_341 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P170), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P170, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P170_specs_341 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P170), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P170, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P170 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P170 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P170_tags_341, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P170_tags_341) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P170_tags_341[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P170_tags_341, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P170_tags_341) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P170_tags_341[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P170_tags_341, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P170_tags_341) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P170_tags_341[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P170_tags_341, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P170_tags_341) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P170_tags_341[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P170_constr_341, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P170_constr_341, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P170_341, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P170_341, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P170_specs_341 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P170_specs_341 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P171_343[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P171_343[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10778,39 +10785,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P171_343[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P171_tags_343[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P171_tags_343[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P171_specs_343 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P171), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P171, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P171_specs_343 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P171), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P171, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P171 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P171 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P171_tags_343, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P171_tags_343) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P171_tags_343[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P171_tags_343, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P171_tags_343) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P171_tags_343[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P171_tags_343, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P171_tags_343) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P171_tags_343[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P171_tags_343, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P171_tags_343) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P171_tags_343[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P171_constr_343, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P171_constr_343, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P171_343, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P171_343, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P171_specs_343 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P171_specs_343 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P172_345[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P172_345[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10829,39 +10836,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P172_345[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P172_tags_345[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P172_tags_345[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P172_specs_345 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P172), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P172, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P172_specs_345 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P172), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P172, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P172 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P172 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P172_tags_345, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P172_tags_345) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P172_tags_345[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P172_tags_345, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P172_tags_345) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P172_tags_345[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P172_tags_345, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P172_tags_345) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P172_tags_345[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P172_tags_345, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P172_tags_345) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P172_tags_345[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P172_constr_345, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P172_constr_345, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P172_345, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P172_345, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P172_specs_345 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P172_specs_345 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P173_347[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P173_347[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10880,39 +10887,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P173_347[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P173_tags_347[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P173_tags_347[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P173_specs_347 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P173), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P173, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P173_specs_347 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P173), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P173, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P173 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P173 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P173_tags_347, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P173_tags_347) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P173_tags_347[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P173_tags_347, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P173_tags_347) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P173_tags_347[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P173_tags_347, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P173_tags_347) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P173_tags_347[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P173_tags_347, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P173_tags_347) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P173_tags_347[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P173_constr_347, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P173_constr_347, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P173_347, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P173_347, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P173_specs_347 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P173_specs_347 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P174_349[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P174_349[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10931,39 +10938,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P174_349[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P174_tags_349[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P174_tags_349[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P174_specs_349 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P174), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P174, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P174_specs_349 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P174), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P174, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P174 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P174 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P174_tags_349, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P174_tags_349) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P174_tags_349[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P174_tags_349, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P174_tags_349) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P174_tags_349[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P174_tags_349, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P174_tags_349) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P174_tags_349[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P174_tags_349, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P174_tags_349) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P174_tags_349[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P174_constr_349, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P174_constr_349, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P174_349, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P174_349, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P174_specs_349 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P174_specs_349 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P175_351[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P175_351[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -10982,39 +10989,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P175_351[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P175_tags_351[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P175_tags_351[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P175_specs_351 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P175), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P175, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P175_specs_351 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P175), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P175, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P175 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P175 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P175_tags_351, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P175_tags_351) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P175_tags_351[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P175_tags_351, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P175_tags_351) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P175_tags_351[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P175_tags_351, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P175_tags_351) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P175_tags_351[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P175_tags_351, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P175_tags_351) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P175_tags_351[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P175_constr_351, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P175_constr_351, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P175_351, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P175_351, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P175_specs_351 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P175_specs_351 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P176_353[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P176_353[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11033,39 +11040,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P176_353[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P176_tags_353[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P176_tags_353[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P176_specs_353 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P176), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P176, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P176_specs_353 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P176), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P176, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P176 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P176 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P176_tags_353, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P176_tags_353) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P176_tags_353[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P176_tags_353, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P176_tags_353) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P176_tags_353[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P176_tags_353, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P176_tags_353) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P176_tags_353[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P176_tags_353, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P176_tags_353) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P176_tags_353[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P176_constr_353, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P176_constr_353, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P176_353, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P176_353, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P176_specs_353 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P176_specs_353 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P177_355[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P177_355[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11084,39 +11091,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P177_355[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P177_tags_355[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P177_tags_355[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P177_specs_355 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P177), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P177, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P177_specs_355 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P177), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P177, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P177 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P177 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P177_tags_355, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P177_tags_355) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P177_tags_355[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P177_tags_355, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P177_tags_355) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P177_tags_355[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P177_tags_355, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P177_tags_355) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P177_tags_355[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P177_tags_355, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P177_tags_355) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P177_tags_355[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P177_constr_355, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P177_constr_355, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P177_355, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P177_355, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P177_specs_355 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P177_specs_355 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P178_357[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P178_357[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11135,39 +11142,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P178_357[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P178_tags_357[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P178_tags_357[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P178_specs_357 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P178), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P178, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P178_specs_357 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P178), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P178, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P178 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P178 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P178_tags_357, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P178_tags_357) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P178_tags_357[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P178_tags_357, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P178_tags_357) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P178_tags_357[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P178_tags_357, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P178_tags_357) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P178_tags_357[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P178_tags_357, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P178_tags_357) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P178_tags_357[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P178_constr_357, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P178_constr_357, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P178_357, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P178_357, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P178_specs_357 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P178_specs_357 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P179_359[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P179_359[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11186,39 +11193,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P179_359[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P179_tags_359[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P179_tags_359[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P179_specs_359 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P179), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P179, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P179_specs_359 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P179), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P179, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P179 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P179 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P179_tags_359, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P179_tags_359) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P179_tags_359[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P179_tags_359, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P179_tags_359) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P179_tags_359[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P179_tags_359, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P179_tags_359) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P179_tags_359[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P179_tags_359, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P179_tags_359) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P179_tags_359[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P179_constr_359, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P179_constr_359, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P179_359, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P179_359, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P179_specs_359 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P179_specs_359 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P180_361[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P180_361[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11237,39 +11244,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P180_361[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P180_tags_361[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P180_tags_361[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P180_specs_361 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P180), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P180, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P180_specs_361 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P180), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P180, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P180 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P180 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P180_tags_361, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P180_tags_361) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P180_tags_361[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P180_tags_361, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P180_tags_361) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P180_tags_361[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P180_tags_361, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P180_tags_361) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P180_tags_361[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P180_tags_361, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P180_tags_361) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P180_tags_361[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P180_constr_361, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P180_constr_361, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P180_361, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P180_361, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P180_specs_361 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P180_specs_361 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P181_363[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P181_363[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11288,39 +11295,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P181_363[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P181_tags_363[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P181_tags_363[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P181_specs_363 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P181), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P181, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P181_specs_363 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P181), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P181, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P181 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P181 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P181_tags_363, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P181_tags_363) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P181_tags_363[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P181_tags_363, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P181_tags_363) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P181_tags_363[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P181_tags_363, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P181_tags_363) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P181_tags_363[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P181_tags_363, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P181_tags_363) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P181_tags_363[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P181_constr_363, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P181_constr_363, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P181_363, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P181_363, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P181_specs_363 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P181_specs_363 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P182_365[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P182_365[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11339,39 +11346,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P182_365[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P182_tags_365[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P182_tags_365[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P182_specs_365 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P182), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P182, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P182_specs_365 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P182), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P182, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P182 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P182 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P182_tags_365, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P182_tags_365) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P182_tags_365[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P182_tags_365, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P182_tags_365) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P182_tags_365[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P182_tags_365, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P182_tags_365) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P182_tags_365[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P182_tags_365, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P182_tags_365) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P182_tags_365[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P182_constr_365, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P182_constr_365, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P182_365, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P182_365, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P182_specs_365 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P182_specs_365 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P183_367[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P183_367[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11390,39 +11397,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P183_367[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P183_tags_367[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P183_tags_367[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P183_specs_367 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P183), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P183, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P183_specs_367 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P183), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P183, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P183 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P183 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P183_tags_367, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P183_tags_367) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P183_tags_367[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P183_tags_367, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P183_tags_367) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P183_tags_367[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P183_tags_367, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P183_tags_367) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P183_tags_367[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P183_tags_367, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P183_tags_367) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P183_tags_367[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P183_constr_367, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P183_constr_367, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P183_367, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P183_367, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P183_specs_367 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P183_specs_367 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P184_369[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P184_369[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11441,39 +11448,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P184_369[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P184_tags_369[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P184_tags_369[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P184_specs_369 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P184), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P184, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P184_specs_369 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P184), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P184, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P184 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P184 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P184_tags_369, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P184_tags_369) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P184_tags_369[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P184_tags_369, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P184_tags_369) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P184_tags_369[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P184_tags_369, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P184_tags_369) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P184_tags_369[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P184_tags_369, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P184_tags_369) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P184_tags_369[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P184_constr_369, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P184_constr_369, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P184_369, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P184_369, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P184_specs_369 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P184_specs_369 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P185_371[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P185_371[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11492,39 +11499,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P185_371[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P185_tags_371[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P185_tags_371[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P185_specs_371 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P185), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P185, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P185_specs_371 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P185), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P185, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P185 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P185 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P185_tags_371, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P185_tags_371) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P185_tags_371[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P185_tags_371, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P185_tags_371) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P185_tags_371[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P185_tags_371, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P185_tags_371) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P185_tags_371[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P185_tags_371, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P185_tags_371) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P185_tags_371[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P185_constr_371, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P185_constr_371, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P185_371, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P185_371, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P185_specs_371 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P185_specs_371 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P186_373[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P186_373[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11543,39 +11550,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P186_373[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P186_tags_373[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P186_tags_373[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P186_specs_373 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P186), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P186, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P186_specs_373 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P186), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P186, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P186 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P186 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P186_tags_373, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P186_tags_373) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P186_tags_373[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P186_tags_373, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P186_tags_373) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P186_tags_373[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P186_tags_373, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P186_tags_373) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P186_tags_373[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P186_tags_373, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P186_tags_373) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P186_tags_373[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P186_constr_373, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P186_constr_373, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P186_373, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P186_373, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P186_specs_373 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P186_specs_373 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P187_375[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P187_375[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11594,39 +11601,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P187_375[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P187_tags_375[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P187_tags_375[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P187_specs_375 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P187), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P187, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P187_specs_375 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P187), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P187, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P187 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P187 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P187_tags_375, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P187_tags_375) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P187_tags_375[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P187_tags_375, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P187_tags_375) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P187_tags_375[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P187_tags_375, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P187_tags_375) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P187_tags_375[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P187_tags_375, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P187_tags_375) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P187_tags_375[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P187_constr_375, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P187_constr_375, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P187_375, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P187_375, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P187_specs_375 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P187_specs_375 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P188_377[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P188_377[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11645,39 +11652,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P188_377[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P188_tags_377[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P188_tags_377[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P188_specs_377 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P188), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P188, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P188_specs_377 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P188), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P188, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P188 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P188 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P188_tags_377, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P188_tags_377) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P188_tags_377[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P188_tags_377, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P188_tags_377) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P188_tags_377[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P188_tags_377, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P188_tags_377) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P188_tags_377[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P188_tags_377, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P188_tags_377) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P188_tags_377[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P188_constr_377, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P188_constr_377, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P188_377, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P188_377, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P188_specs_377 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P188_specs_377 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P189_379[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P189_379[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11696,39 +11703,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P189_379[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P189_tags_379[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P189_tags_379[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P189_specs_379 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P189), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P189, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P189_specs_379 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P189), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P189, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P189 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P189 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P189_tags_379, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P189_tags_379) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P189_tags_379[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P189_tags_379, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P189_tags_379) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P189_tags_379[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P189_tags_379, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P189_tags_379) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P189_tags_379[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P189_tags_379, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P189_tags_379) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P189_tags_379[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P189_constr_379, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P189_constr_379, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P189_379, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P189_379, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P189_specs_379 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P189_specs_379 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P190_381[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P190_381[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11747,39 +11754,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P190_381[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P190_tags_381[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P190_tags_381[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P190_specs_381 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P190), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P190, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P190_specs_381 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P190), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P190, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P190 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P190 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P190_tags_381, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P190_tags_381) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P190_tags_381[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P190_tags_381, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P190_tags_381) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P190_tags_381[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P190_tags_381, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P190_tags_381) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P190_tags_381[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P190_tags_381, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P190_tags_381) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P190_tags_381[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P190_constr_381, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P190_constr_381, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P190_381, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P190_381, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P190_specs_381 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P190_specs_381 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P191_383[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P191_383[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11798,39 +11805,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P191_383[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P191_tags_383[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P191_tags_383[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P191_specs_383 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P191), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P191, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P191_specs_383 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P191), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P191, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P191 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P191 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P191_tags_383, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P191_tags_383) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P191_tags_383[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P191_tags_383, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P191_tags_383) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P191_tags_383[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P191_tags_383, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P191_tags_383) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P191_tags_383[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P191_tags_383, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P191_tags_383) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P191_tags_383[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P191_constr_383, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P191_constr_383, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P191_383, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P191_383, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P191_specs_383 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P191_specs_383 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P192_385[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P192_385[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11849,39 +11856,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P192_385[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P192_tags_385[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P192_tags_385[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P192_specs_385 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P192), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P192, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P192_specs_385 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P192), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P192, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P192 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P192 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P192_tags_385, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P192_tags_385) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P192_tags_385[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P192_tags_385, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P192_tags_385) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P192_tags_385[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P192_tags_385, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P192_tags_385) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P192_tags_385[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P192_tags_385, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P192_tags_385) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P192_tags_385[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P192_constr_385, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P192_constr_385, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P192_385, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P192_385, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P192_specs_385 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P192_specs_385 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P193_387[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P193_387[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11900,39 +11907,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P193_387[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P193_tags_387[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P193_tags_387[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P193_specs_387 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P193), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P193, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P193_specs_387 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P193), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P193, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P193 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P193 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P193_tags_387, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P193_tags_387) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P193_tags_387[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P193_tags_387, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P193_tags_387) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P193_tags_387[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P193_tags_387, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P193_tags_387) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P193_tags_387[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P193_tags_387, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P193_tags_387) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P193_tags_387[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P193_constr_387, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P193_constr_387, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P193_387, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P193_387, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P193_specs_387 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P193_specs_387 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P194_389[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P194_389[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -11951,39 +11958,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P194_389[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P194_tags_389[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P194_tags_389[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P194_specs_389 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P194), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P194, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P194_specs_389 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P194), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P194, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P194 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P194 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P194_tags_389, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P194_tags_389) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P194_tags_389[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P194_tags_389, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P194_tags_389) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P194_tags_389[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P194_tags_389, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P194_tags_389) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P194_tags_389[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P194_tags_389, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P194_tags_389) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P194_tags_389[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P194_constr_389, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P194_constr_389, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P194_389, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P194_389, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P194_specs_389 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P194_specs_389 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P195_391[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P195_391[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12002,39 +12009,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P195_391[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P195_tags_391[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P195_tags_391[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P195_specs_391 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P195), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P195, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P195_specs_391 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P195), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P195, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P195 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P195 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P195_tags_391, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P195_tags_391) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P195_tags_391[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P195_tags_391, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P195_tags_391) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P195_tags_391[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P195_tags_391, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P195_tags_391) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P195_tags_391[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P195_tags_391, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P195_tags_391) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P195_tags_391[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P195_constr_391, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P195_constr_391, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P195_391, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P195_391, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P195_specs_391 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P195_specs_391 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P196_393[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P196_393[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12053,39 +12060,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P196_393[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P196_tags_393[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P196_tags_393[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P196_specs_393 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P196), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P196, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P196_specs_393 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P196), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P196, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P196 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P196 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P196_tags_393, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P196_tags_393) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P196_tags_393[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P196_tags_393, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P196_tags_393) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P196_tags_393[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P196_tags_393, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P196_tags_393) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P196_tags_393[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P196_tags_393, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P196_tags_393) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P196_tags_393[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P196_constr_393, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P196_constr_393, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P196_393, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P196_393, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P196_specs_393 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P196_specs_393 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P197_395[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P197_395[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12104,39 +12111,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P197_395[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P197_tags_395[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P197_tags_395[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P197_specs_395 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P197), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P197, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P197_specs_395 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P197), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P197, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P197 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P197 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P197_tags_395, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P197_tags_395) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P197_tags_395[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P197_tags_395, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P197_tags_395) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P197_tags_395[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P197_tags_395, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P197_tags_395) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P197_tags_395[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P197_tags_395, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P197_tags_395) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P197_tags_395[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P197_constr_395, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P197_constr_395, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P197_395, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P197_395, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P197_specs_395 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P197_specs_395 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P198_397[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P198_397[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12155,39 +12162,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P198_397[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P198_tags_397[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P198_tags_397[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P198_specs_397 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P198), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P198, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P198_specs_397 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P198), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P198, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P198 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P198 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P198_tags_397, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P198_tags_397) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P198_tags_397[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P198_tags_397, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P198_tags_397) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P198_tags_397[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P198_tags_397, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P198_tags_397) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P198_tags_397[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P198_tags_397, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P198_tags_397) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P198_tags_397[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P198_constr_397, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P198_constr_397, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P198_397, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P198_397, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P198_specs_397 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P198_specs_397 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P199_399[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P199_399[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12206,39 +12213,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P199_399[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P199_tags_399[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P199_tags_399[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P199_specs_399 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P199), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P199, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P199_specs_399 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P199), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P199, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P199 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P199 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P199_tags_399, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P199_tags_399) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P199_tags_399[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P199_tags_399, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P199_tags_399) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P199_tags_399[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P199_tags_399, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P199_tags_399) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P199_tags_399[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P199_tags_399, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P199_tags_399) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P199_tags_399[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P199_constr_399, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P199_constr_399, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P199_399, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P199_399, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P199_specs_399 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P199_specs_399 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P200_401[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P200_401[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12257,39 +12264,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P200_401[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P200_tags_401[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P200_tags_401[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P200_specs_401 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P200), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P200, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P200_specs_401 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P200), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P200, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P200 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P200 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P200_tags_401, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P200_tags_401) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P200_tags_401[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P200_tags_401, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P200_tags_401) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P200_tags_401[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P200_tags_401, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P200_tags_401) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P200_tags_401[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P200_tags_401, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P200_tags_401) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P200_tags_401[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P200_constr_401, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P200_constr_401, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P200_401, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P200_401, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P200_specs_401 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P200_specs_401 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P201_403[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P201_403[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12308,39 +12315,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P201_403[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P201_tags_403[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P201_tags_403[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P201_specs_403 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P201), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P201, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P201_specs_403 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P201), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P201, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P201 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P201 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P201_tags_403, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P201_tags_403) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P201_tags_403[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P201_tags_403, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P201_tags_403) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P201_tags_403[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P201_tags_403, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P201_tags_403) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P201_tags_403[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P201_tags_403, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P201_tags_403) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P201_tags_403[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P201_constr_403, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P201_constr_403, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P201_403, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P201_403, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P201_specs_403 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P201_specs_403 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P202_405[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P202_405[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12359,39 +12366,90 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P202_405[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P202_tags_405[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P202_tags_405[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P202_specs_405 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P202), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P202, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P202_specs_405 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P202), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P202, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P202 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P202 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P202_tags_405, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P202_tags_405) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P202_tags_405[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P202_tags_405, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P202_tags_405) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P202_tags_405[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P202_tags_405, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P202_tags_405) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P202_tags_405[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P202_tags_405, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P202_tags_405) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P202_tags_405[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P202_constr_405, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P202_constr_405, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P202_405, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P202_405, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P202_specs_405 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P202_specs_405 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P203_407[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P203_407[] = { + { ATF_POINTER, 0, 0, + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P203_tags_407[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P203_specs_407 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P203), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P203, _asn_ctx), + 0, /* XER encoding is XMLDelimitedItemList */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P203 = { + "ProtocolExtensionContainer", + "ProtocolExtensionContainer", + &asn_OP_SEQUENCE_OF, + asn_DEF_NGAP_ProtocolExtensionContainer_9625P203_tags_407, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P203_tags_407) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P203_tags_407[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P203_tags_407, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P203_tags_407) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P203_tags_407[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P203_constr_407, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_OF_constraint + }, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P203_407, + 1, /* Single element */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P203_specs_407 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P204_409[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12410,39 +12468,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P203_407[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P203_tags_407[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P204_tags_409[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P203_specs_407 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P203), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P203, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P204_specs_409 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P204), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P204, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P203 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P204 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P203_tags_407, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P203_tags_407) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P203_tags_407[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P203_tags_407, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P203_tags_407) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P203_tags_407[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P204_tags_409, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P204_tags_409) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P204_tags_409[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P204_tags_409, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P204_tags_409) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P204_tags_409[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P203_constr_407, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P204_constr_409, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P203_407, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P204_409, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P203_specs_407 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P204_specs_409 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P204_409[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P205_411[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12461,39 +12519,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P204_409[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P204_tags_409[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P205_tags_411[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P204_specs_409 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P204), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P204, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P205_specs_411 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P205), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P205, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P204 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P205 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P204_tags_409, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P204_tags_409) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P204_tags_409[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P204_tags_409, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P204_tags_409) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P204_tags_409[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P205_tags_411, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P205_tags_411) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P205_tags_411[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P205_tags_411, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P205_tags_411) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P205_tags_411[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P204_constr_409, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P205_constr_411, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P204_409, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P205_411, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P204_specs_409 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P205_specs_411 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P205_411[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P206_413[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12512,39 +12570,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P205_411[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P205_tags_411[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P206_tags_413[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P205_specs_411 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P205), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P205, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P206_specs_413 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P206), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P206, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P205 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P206 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P205_tags_411, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P205_tags_411) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P205_tags_411[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P205_tags_411, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P205_tags_411) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P205_tags_411[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P206_tags_413, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P206_tags_413) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P206_tags_413[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P206_tags_413, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P206_tags_413) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P206_tags_413[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P205_constr_411, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P206_constr_413, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P205_411, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P206_413, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P205_specs_411 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P206_specs_413 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P206_413[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P207_415[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12563,39 +12621,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P206_413[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P206_tags_413[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P207_tags_415[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P206_specs_413 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P206), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P206, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P207_specs_415 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P207), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P207, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P206 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P207 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P206_tags_413, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P206_tags_413) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P206_tags_413[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P206_tags_413, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P206_tags_413) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P206_tags_413[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P207_tags_415, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P207_tags_415) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P207_tags_415[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P207_tags_415, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P207_tags_415) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P207_tags_415[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P206_constr_413, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P207_constr_415, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P206_413, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P207_415, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P206_specs_413 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P207_specs_415 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P207_415[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P208_417[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12614,39 +12672,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P207_415[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P207_tags_415[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P208_tags_417[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P207_specs_415 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P207), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P207, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P208_specs_417 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P208), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P208, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P207 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P208 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P207_tags_415, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P207_tags_415) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P207_tags_415[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P207_tags_415, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P207_tags_415) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P207_tags_415[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P208_tags_417, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P208_tags_417) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P208_tags_417[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P208_tags_417, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P208_tags_417) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P208_tags_417[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P207_constr_415, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P208_constr_417, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P207_415, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P208_417, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P207_specs_415 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P208_specs_417 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P208_417[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P209_419[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12665,39 +12723,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P208_417[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P208_tags_417[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P209_tags_419[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P208_specs_417 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P208), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P208, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P209_specs_419 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P209), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P209, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P208 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P209 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P208_tags_417, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P208_tags_417) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P208_tags_417[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P208_tags_417, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P208_tags_417) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P208_tags_417[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P209_tags_419, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P209_tags_419) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P209_tags_419[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P209_tags_419, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P209_tags_419) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P209_tags_419[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P208_constr_417, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P209_constr_419, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P208_417, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P209_419, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P208_specs_417 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P209_specs_419 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P209_419[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P210_421[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12716,39 +12774,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P209_419[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P209_tags_419[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P210_tags_421[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P209_specs_419 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P209), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P209, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P210_specs_421 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P210), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P210, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P209 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P210 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P209_tags_419, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P209_tags_419) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P209_tags_419[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P209_tags_419, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P209_tags_419) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P209_tags_419[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P210_tags_421, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P210_tags_421) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P210_tags_421[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P210_tags_421, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P210_tags_421) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P210_tags_421[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P209_constr_419, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P210_constr_421, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P209_419, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P210_421, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P209_specs_419 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P210_specs_421 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P210_421[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P211_423[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12767,39 +12825,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P210_421[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P210_tags_421[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P211_tags_423[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P210_specs_421 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P210), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P210, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P211_specs_423 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P211), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P211, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P210 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P211 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P210_tags_421, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P210_tags_421) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P210_tags_421[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P210_tags_421, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P210_tags_421) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P210_tags_421[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P211_tags_423, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P211_tags_423) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P211_tags_423[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P211_tags_423, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P211_tags_423) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P211_tags_423[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P210_constr_421, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P211_constr_423, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P210_421, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P211_423, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P210_specs_421 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P211_specs_423 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P211_423[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P212_425[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12818,39 +12876,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P211_423[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P211_tags_423[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P212_tags_425[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P211_specs_423 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P211), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P211, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P212_specs_425 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P212), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P212, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P211 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P212 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P211_tags_423, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P211_tags_423) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P211_tags_423[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P211_tags_423, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P211_tags_423) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P211_tags_423[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P212_tags_425, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P212_tags_425) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P212_tags_425[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P212_tags_425, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P212_tags_425) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P212_tags_425[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P211_constr_423, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P212_constr_425, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P211_423, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P212_425, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P211_specs_423 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P212_specs_425 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P212_425[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P213_427[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12869,39 +12927,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P212_425[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P212_tags_425[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P213_tags_427[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P212_specs_425 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P212), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P212, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P213_specs_427 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P213), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P213, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P212 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P213 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P212_tags_425, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P212_tags_425) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P212_tags_425[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P212_tags_425, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P212_tags_425) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P212_tags_425[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P213_tags_427, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P213_tags_427) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P213_tags_427[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P213_tags_427, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P213_tags_427) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P213_tags_427[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P212_constr_425, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P213_constr_427, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P212_425, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P213_427, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P212_specs_425 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P213_specs_427 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P213_427[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P214_429[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12920,39 +12978,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P213_427[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P213_tags_427[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P214_tags_429[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P213_specs_427 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P213), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P213, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P214_specs_429 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P214), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P214, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P213 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P214 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P213_tags_427, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P213_tags_427) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P213_tags_427[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P213_tags_427, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P213_tags_427) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P213_tags_427[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P214_tags_429, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P214_tags_429) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P214_tags_429[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P214_tags_429, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P214_tags_429) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P214_tags_429[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P213_constr_427, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P214_constr_429, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P213_427, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P214_429, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P213_specs_427 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P214_specs_429 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P214_429[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P215_431[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -12971,39 +13029,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P214_429[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P214_tags_429[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P215_tags_431[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P214_specs_429 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P214), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P214, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P215_specs_431 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P215), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P215, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P214 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P215 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P214_tags_429, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P214_tags_429) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P214_tags_429[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P214_tags_429, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P214_tags_429) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P214_tags_429[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P215_tags_431, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P215_tags_431) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P215_tags_431[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P215_tags_431, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P215_tags_431) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P215_tags_431[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P214_constr_429, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P215_constr_431, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P214_429, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P215_431, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P214_specs_429 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P215_specs_431 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P215_431[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P216_433[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13022,39 +13080,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P215_431[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P215_tags_431[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P216_tags_433[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P215_specs_431 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P215), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P215, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P216_specs_433 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P216), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P216, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P215 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P216 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P215_tags_431, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P215_tags_431) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P215_tags_431[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P215_tags_431, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P215_tags_431) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P215_tags_431[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P216_tags_433, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P216_tags_433) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P216_tags_433[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P216_tags_433, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P216_tags_433) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P216_tags_433[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P215_constr_431, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P216_constr_433, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P215_431, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P216_433, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P215_specs_431 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P216_specs_433 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P216_433[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P217_435[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13073,39 +13131,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P216_433[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P216_tags_433[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P217_tags_435[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P216_specs_433 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P216), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P216, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P217_specs_435 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P217), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P217, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P216 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P217 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P216_tags_433, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P216_tags_433) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P216_tags_433[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P216_tags_433, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P216_tags_433) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P216_tags_433[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P217_tags_435, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P217_tags_435) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P217_tags_435[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P217_tags_435, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P217_tags_435) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P217_tags_435[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P216_constr_433, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P217_constr_435, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P216_433, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P217_435, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P216_specs_433 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P217_specs_435 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P217_435[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P218_437[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13124,39 +13182,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P217_435[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P217_tags_435[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P218_tags_437[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P217_specs_435 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P217), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P217, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P218_specs_437 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P218), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P218, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P217 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P218 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P217_tags_435, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P217_tags_435) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P217_tags_435[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P217_tags_435, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P217_tags_435) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P217_tags_435[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P218_tags_437, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P218_tags_437) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P218_tags_437[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P218_tags_437, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P218_tags_437) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P218_tags_437[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P217_constr_435, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P218_constr_437, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P217_435, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P218_437, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P217_specs_435 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P218_specs_437 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P218_437[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P219_439[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13175,39 +13233,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P218_437[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P218_tags_437[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P219_tags_439[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P218_specs_437 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P218), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P218, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P219_specs_439 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P219), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P219, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P218 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P219 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P218_tags_437, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P218_tags_437) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P218_tags_437[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P218_tags_437, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P218_tags_437) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P218_tags_437[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P219_tags_439, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P219_tags_439) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P219_tags_439[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P219_tags_439, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P219_tags_439) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P219_tags_439[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P218_constr_437, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P219_constr_439, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P218_437, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P219_439, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P218_specs_437 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P219_specs_439 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P219_439[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P220_441[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13226,39 +13284,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P219_439[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P219_tags_439[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P220_tags_441[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P219_specs_439 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P219), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P219, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P220_specs_441 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P220), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P220, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P219 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P220 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P219_tags_439, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P219_tags_439) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P219_tags_439[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P219_tags_439, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P219_tags_439) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P219_tags_439[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P220_tags_441, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P220_tags_441) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P220_tags_441[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P220_tags_441, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P220_tags_441) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P220_tags_441[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P219_constr_439, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P220_constr_441, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P219_439, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P220_441, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P219_specs_439 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P220_specs_441 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P220_441[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P221_443[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13277,39 +13335,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P220_441[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P220_tags_441[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P221_tags_443[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P220_specs_441 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P220), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P220, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P221_specs_443 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P221), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P221, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P220 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P221 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P220_tags_441, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P220_tags_441) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P220_tags_441[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P220_tags_441, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P220_tags_441) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P220_tags_441[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P221_tags_443, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P221_tags_443) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P221_tags_443[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P221_tags_443, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P221_tags_443) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P221_tags_443[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P220_constr_441, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P221_constr_443, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P220_441, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P221_443, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P220_specs_441 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P221_specs_443 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P221_443[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P222_445[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13328,39 +13386,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P221_443[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P221_tags_443[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P222_tags_445[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P221_specs_443 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P221), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P221, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P222_specs_445 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P222), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P222, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P221 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P222 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P221_tags_443, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P221_tags_443) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P221_tags_443[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P221_tags_443, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P221_tags_443) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P221_tags_443[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P222_tags_445, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P222_tags_445) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P222_tags_445[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P222_tags_445, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P222_tags_445) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P222_tags_445[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P221_constr_443, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P222_constr_445, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P221_443, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P222_445, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P221_specs_443 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P222_specs_445 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P222_445[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P223_447[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13379,39 +13437,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P222_445[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P222_tags_445[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P223_tags_447[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P222_specs_445 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P222), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P222, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P223_specs_447 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P223), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P223, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P222 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P223 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P222_tags_445, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P222_tags_445) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P222_tags_445[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P222_tags_445, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P222_tags_445) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P222_tags_445[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P223_tags_447, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P223_tags_447) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P223_tags_447[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P223_tags_447, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P223_tags_447) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P223_tags_447[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P222_constr_445, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P223_constr_447, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P222_445, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P223_447, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P222_specs_445 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P223_specs_447 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P223_447[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P224_449[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13430,39 +13488,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P223_447[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P223_tags_447[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P224_tags_449[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P223_specs_447 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P223), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P223, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P224_specs_449 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P224), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P224, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P223 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P224 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P223_tags_447, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P223_tags_447) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P223_tags_447[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P223_tags_447, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P223_tags_447) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P223_tags_447[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P224_tags_449, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P224_tags_449) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P224_tags_449[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P224_tags_449, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P224_tags_449) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P224_tags_449[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P223_constr_447, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P224_constr_449, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P223_447, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P224_449, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P223_specs_447 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P224_specs_449 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P224_449[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P225_451[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13481,39 +13539,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P224_449[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P224_tags_449[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P225_tags_451[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P224_specs_449 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P224), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P224, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P225_specs_451 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P225), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P225, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P224 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P225 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P224_tags_449, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P224_tags_449) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P224_tags_449[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P224_tags_449, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P224_tags_449) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P224_tags_449[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P225_tags_451, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P225_tags_451) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P225_tags_451[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P225_tags_451, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P225_tags_451) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P225_tags_451[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P224_constr_449, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P225_constr_451, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P224_449, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P225_451, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P224_specs_449 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P225_specs_451 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P225_451[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P226_453[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13532,39 +13590,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P225_451[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P225_tags_451[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P226_tags_453[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P225_specs_451 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P225), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P225, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P226_specs_453 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P226), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P226, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P225 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P226 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P225_tags_451, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P225_tags_451) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P225_tags_451[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P225_tags_451, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P225_tags_451) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P225_tags_451[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P226_tags_453, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P226_tags_453) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P226_tags_453[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P226_tags_453, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P226_tags_453) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P226_tags_453[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P225_constr_451, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P226_constr_453, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P225_451, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P226_453, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P225_specs_451 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P226_specs_453 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P226_453[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P227_455[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13583,39 +13641,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P226_453[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P226_tags_453[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P227_tags_455[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P226_specs_453 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P226), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P226, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P227_specs_455 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P227), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P227, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P226 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P227 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P226_tags_453, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P226_tags_453) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P226_tags_453[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P226_tags_453, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P226_tags_453) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P226_tags_453[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P227_tags_455, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P227_tags_455) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P227_tags_455[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P227_tags_455, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P227_tags_455) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P227_tags_455[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P226_constr_453, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P227_constr_455, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P226_453, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P227_455, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P226_specs_453 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P227_specs_455 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P227_455[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P228_457[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13634,39 +13692,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P227_455[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P227_tags_455[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P228_tags_457[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P227_specs_455 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P227), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P227, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P228_specs_457 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P228), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P228, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P227 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P228 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P227_tags_455, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P227_tags_455) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P227_tags_455[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P227_tags_455, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P227_tags_455) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P227_tags_455[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P228_tags_457, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P228_tags_457) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P228_tags_457[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P228_tags_457, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P228_tags_457) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P228_tags_457[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P227_constr_455, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P228_constr_457, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P227_455, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P228_457, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P227_specs_455 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P228_specs_457 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P228_457[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P229_459[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13685,39 +13743,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P228_457[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P228_tags_457[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P229_tags_459[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P228_specs_457 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P228), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P228, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P229_specs_459 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P229), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P229, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P228 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P229 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P228_tags_457, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P228_tags_457) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P228_tags_457[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P228_tags_457, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P228_tags_457) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P228_tags_457[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P229_tags_459, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P229_tags_459) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P229_tags_459[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P229_tags_459, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P229_tags_459) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P229_tags_459[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P228_constr_457, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P229_constr_459, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P228_457, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P229_459, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P228_specs_457 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P229_specs_459 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P229_459[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P230_461[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13736,39 +13794,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P229_459[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P229_tags_459[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P230_tags_461[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P229_specs_459 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P229), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P229, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P230_specs_461 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P230), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P230, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P229 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P230 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P229_tags_459, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P229_tags_459) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P229_tags_459[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P229_tags_459, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P229_tags_459) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P229_tags_459[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P230_tags_461, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P230_tags_461) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P230_tags_461[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P230_tags_461, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P230_tags_461) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P230_tags_461[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P229_constr_459, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P230_constr_461, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P229_459, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P230_461, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P229_specs_459 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P230_specs_461 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P230_461[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P231_463[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13787,39 +13845,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P230_461[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P230_tags_461[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P231_tags_463[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P230_specs_461 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P230), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P230, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P231_specs_463 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P231), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P231, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P230 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P231 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P230_tags_461, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P230_tags_461) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P230_tags_461[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P230_tags_461, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P230_tags_461) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P230_tags_461[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P231_tags_463, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P231_tags_463) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P231_tags_463[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P231_tags_463, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P231_tags_463) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P231_tags_463[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P230_constr_461, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P231_constr_463, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P230_461, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P231_463, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P230_specs_461 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P231_specs_463 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P231_463[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P232_465[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13838,39 +13896,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P231_463[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P231_tags_463[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P232_tags_465[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P231_specs_463 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P231), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P231, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P232_specs_465 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P232), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P232, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P231 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P232 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P231_tags_463, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P231_tags_463) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P231_tags_463[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P231_tags_463, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P231_tags_463) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P231_tags_463[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P232_tags_465, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P232_tags_465) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P232_tags_465[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P232_tags_465, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P232_tags_465) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P232_tags_465[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P231_constr_463, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P232_constr_465, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P231_463, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P232_465, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P231_specs_463 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P232_specs_465 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P232_465[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P233_467[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13889,39 +13947,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P232_465[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P232_tags_465[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P233_tags_467[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P232_specs_465 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P232), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P232, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P233_specs_467 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P233), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P233, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P232 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P233 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P232_tags_465, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P232_tags_465) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P232_tags_465[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P232_tags_465, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P232_tags_465) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P232_tags_465[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P233_tags_467, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P233_tags_467) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P233_tags_467[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P233_tags_467, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P233_tags_467) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P233_tags_467[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P232_constr_465, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P233_constr_467, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P232_465, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P233_467, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P232_specs_465 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P233_specs_467 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P233_467[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P234_469[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13940,39 +13998,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P233_467[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P233_tags_467[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P234_tags_469[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P233_specs_467 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P233), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P233, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P234_specs_469 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P234), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P234, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P233 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P234 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P233_tags_467, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P233_tags_467) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P233_tags_467[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P233_tags_467, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P233_tags_467) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P233_tags_467[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P234_tags_469, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P234_tags_469) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P234_tags_469[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P234_tags_469, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P234_tags_469) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P234_tags_469[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P233_constr_467, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P234_constr_469, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P233_467, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P234_469, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P233_specs_467 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P234_specs_469 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P234_469[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P235_471[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -13991,39 +14049,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P234_469[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P234_tags_469[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P235_tags_471[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P234_specs_469 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P234), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P234, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P235_specs_471 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P235), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P235, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P234 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P235 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P234_tags_469, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P234_tags_469) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P234_tags_469[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P234_tags_469, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P234_tags_469) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P234_tags_469[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P235_tags_471, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P235_tags_471) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P235_tags_471[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P235_tags_471, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P235_tags_471) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P235_tags_471[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P234_constr_469, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P235_constr_471, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P234_469, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P235_471, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P234_specs_469 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P235_specs_471 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P235_471[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P236_473[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14042,39 +14100,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P235_471[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P235_tags_471[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P236_tags_473[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P235_specs_471 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P235), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P235, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P236_specs_473 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P236), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P236, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P235 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P236 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P235_tags_471, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P235_tags_471) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P235_tags_471[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P235_tags_471, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P235_tags_471) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P235_tags_471[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P236_tags_473, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P236_tags_473) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P236_tags_473[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P236_tags_473, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P236_tags_473) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P236_tags_473[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P235_constr_471, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P236_constr_473, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P235_471, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P236_473, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P235_specs_471 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P236_specs_473 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P236_473[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P237_475[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14093,39 +14151,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P236_473[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P236_tags_473[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P237_tags_475[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P236_specs_473 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P236), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P236, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P237_specs_475 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P237), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P237, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P236 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P237 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P236_tags_473, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P236_tags_473) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P236_tags_473[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P236_tags_473, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P236_tags_473) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P236_tags_473[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P237_tags_475, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P237_tags_475) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P237_tags_475[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P237_tags_475, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P237_tags_475) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P237_tags_475[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P236_constr_473, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P237_constr_475, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P236_473, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P237_475, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P236_specs_473 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P237_specs_475 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P237_475[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P238_477[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14144,39 +14202,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P237_475[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P237_tags_475[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P238_tags_477[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P237_specs_475 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P237), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P237, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P238_specs_477 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P238), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P238, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P237 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P238 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P237_tags_475, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P237_tags_475) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P237_tags_475[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P237_tags_475, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P237_tags_475) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P237_tags_475[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P238_tags_477, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P238_tags_477) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P238_tags_477[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P238_tags_477, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P238_tags_477) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P238_tags_477[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P237_constr_475, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P238_constr_477, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P237_475, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P238_477, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P237_specs_475 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P238_specs_477 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P238_477[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P239_479[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14195,39 +14253,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P238_477[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P238_tags_477[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P239_tags_479[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P238_specs_477 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P238), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P238, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P239_specs_479 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P239), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P239, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P238 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P239 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P238_tags_477, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P238_tags_477) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P238_tags_477[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P238_tags_477, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P238_tags_477) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P238_tags_477[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P239_tags_479, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P239_tags_479) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P239_tags_479[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P239_tags_479, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P239_tags_479) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P239_tags_479[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P238_constr_477, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P239_constr_479, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P238_477, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P239_479, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P238_specs_477 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P239_specs_479 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P239_479[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P240_481[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14246,39 +14304,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P239_479[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P239_tags_479[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P240_tags_481[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P239_specs_479 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P239), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P239, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P240_specs_481 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P240), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P240, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P239 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P240 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P239_tags_479, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P239_tags_479) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P239_tags_479[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P239_tags_479, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P239_tags_479) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P239_tags_479[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P240_tags_481, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P240_tags_481) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P240_tags_481[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P240_tags_481, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P240_tags_481) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P240_tags_481[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P239_constr_479, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P240_constr_481, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P239_479, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P240_481, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P239_specs_479 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P240_specs_481 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P240_481[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P241_483[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14297,39 +14355,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P240_481[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P240_tags_481[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P241_tags_483[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P240_specs_481 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P240), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P240, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P241_specs_483 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P241), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P241, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P240 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P241 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P240_tags_481, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P240_tags_481) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P240_tags_481[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P240_tags_481, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P240_tags_481) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P240_tags_481[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P241_tags_483, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P241_tags_483) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P241_tags_483[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P241_tags_483, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P241_tags_483) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P241_tags_483[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P240_constr_481, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P241_constr_483, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P240_481, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P241_483, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P240_specs_481 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P241_specs_483 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P241_483[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P242_485[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14348,39 +14406,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P241_483[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P241_tags_483[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P242_tags_485[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P241_specs_483 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P241), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P241, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P242_specs_485 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P242), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P242, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P241 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P242 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P241_tags_483, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P241_tags_483) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P241_tags_483[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P241_tags_483, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P241_tags_483) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P241_tags_483[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P242_tags_485, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P242_tags_485) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P242_tags_485[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P242_tags_485, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P242_tags_485) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P242_tags_485[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P241_constr_483, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P242_constr_485, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P241_483, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P242_485, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P241_specs_483 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P242_specs_485 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P242_485[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P243_487[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14399,39 +14457,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P242_485[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P242_tags_485[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P243_tags_487[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P242_specs_485 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P242), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P242, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P243_specs_487 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P243), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P243, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P242 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P243 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P242_tags_485, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P242_tags_485) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P242_tags_485[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P242_tags_485, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P242_tags_485) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P242_tags_485[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P243_tags_487, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P243_tags_487) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P243_tags_487[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P243_tags_487, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P243_tags_487) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P243_tags_487[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P242_constr_485, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P243_constr_487, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P242_485, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P243_487, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P242_specs_485 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P243_specs_487 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P243_487[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P244_489[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14450,39 +14508,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P243_487[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P243_tags_487[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P244_tags_489[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P243_specs_487 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P243), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P243, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P244_specs_489 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P244), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P244, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P243 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P244 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P243_tags_487, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P243_tags_487) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P243_tags_487[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P243_tags_487, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P243_tags_487) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P243_tags_487[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P244_tags_489, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P244_tags_489) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P244_tags_489[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P244_tags_489, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P244_tags_489) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P244_tags_489[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P243_constr_487, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P244_constr_489, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P243_487, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P244_489, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P243_specs_487 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P244_specs_489 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P244_489[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P245_491[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14501,39 +14559,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P244_489[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P244_tags_489[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P245_tags_491[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P244_specs_489 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P244), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P244, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P245_specs_491 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P245), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P245, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P244 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P245 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P244_tags_489, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P244_tags_489) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P244_tags_489[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P244_tags_489, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P244_tags_489) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P244_tags_489[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P245_tags_491, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P245_tags_491) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P245_tags_491[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P245_tags_491, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P245_tags_491) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P245_tags_491[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P244_constr_489, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P245_constr_491, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P244_489, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P245_491, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P244_specs_489 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P245_specs_491 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P245_491[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P246_493[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14552,39 +14610,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P245_491[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P245_tags_491[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P246_tags_493[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P245_specs_491 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P245), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P245, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P246_specs_493 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P246), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P246, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P245 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P246 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P245_tags_491, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P245_tags_491) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P245_tags_491[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P245_tags_491, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P245_tags_491) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P245_tags_491[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P246_tags_493, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P246_tags_493) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P246_tags_493[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P246_tags_493, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P246_tags_493) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P246_tags_493[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P245_constr_491, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P246_constr_493, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P245_491, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P246_493, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P245_specs_491 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P246_specs_493 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P246_493[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P247_495[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14603,39 +14661,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P246_493[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P246_tags_493[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P247_tags_495[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P246_specs_493 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P246), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P246, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P247_specs_495 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P247), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P247, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P246 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P247 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P246_tags_493, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P246_tags_493) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P246_tags_493[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P246_tags_493, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P246_tags_493) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P246_tags_493[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P247_tags_495, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P247_tags_495) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P247_tags_495[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P247_tags_495, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P247_tags_495) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P247_tags_495[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P246_constr_493, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P247_constr_495, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P246_493, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P247_495, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P246_specs_493 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P247_specs_495 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P247_495[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P248_497[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14654,39 +14712,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P247_495[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P247_tags_495[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P248_tags_497[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P247_specs_495 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P247), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P247, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P248_specs_497 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P248), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P248, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P247 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P248 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P247_tags_495, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P247_tags_495) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P247_tags_495[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P247_tags_495, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P247_tags_495) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P247_tags_495[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P248_tags_497, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P248_tags_497) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P248_tags_497[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P248_tags_497, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P248_tags_497) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P248_tags_497[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P247_constr_495, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P248_constr_497, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P247_495, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P248_497, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P247_specs_495 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P248_specs_497 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P248_497[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P249_499[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14705,39 +14763,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P248_497[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P248_tags_497[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P249_tags_499[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P248_specs_497 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P248), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P248, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P249_specs_499 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P249), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P249, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P248 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P249 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P248_tags_497, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P248_tags_497) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P248_tags_497[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P248_tags_497, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P248_tags_497) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P248_tags_497[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P249_tags_499, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P249_tags_499) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P249_tags_499[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P249_tags_499, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P249_tags_499) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P249_tags_499[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P248_constr_497, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P249_constr_499, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P248_497, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P249_499, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P248_specs_497 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P249_specs_499 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P249_499[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P250_501[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14756,39 +14814,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P249_499[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P249_tags_499[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P250_tags_501[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P249_specs_499 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P249), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P249, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P250_specs_501 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P250), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P250, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P249 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P250 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P249_tags_499, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P249_tags_499) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P249_tags_499[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P249_tags_499, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P249_tags_499) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P249_tags_499[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P250_tags_501, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P250_tags_501) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P250_tags_501[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P250_tags_501, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P250_tags_501) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P250_tags_501[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P249_constr_499, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P250_constr_501, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P249_499, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P250_501, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P249_specs_499 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P250_specs_501 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P250_501[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P251_503[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14807,39 +14865,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P250_501[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P250_tags_501[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P251_tags_503[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P250_specs_501 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P250), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P250, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P251_specs_503 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P251), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P251, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P250 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P251 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P250_tags_501, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P250_tags_501) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P250_tags_501[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P250_tags_501, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P250_tags_501) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P250_tags_501[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P251_tags_503, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P251_tags_503) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P251_tags_503[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P251_tags_503, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P251_tags_503) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P251_tags_503[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P250_constr_501, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P251_constr_503, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P250_501, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P251_503, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P250_specs_501 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P251_specs_503 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P251_503[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P252_505[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14858,39 +14916,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P251_503[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P251_tags_503[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P252_tags_505[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P251_specs_503 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P251), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P251, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P252_specs_505 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P252), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P252, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P251 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P252 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P251_tags_503, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P251_tags_503) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P251_tags_503[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P251_tags_503, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P251_tags_503) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P251_tags_503[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P252_tags_505, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P252_tags_505) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P252_tags_505[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P252_tags_505, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P252_tags_505) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P252_tags_505[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P251_constr_503, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P252_constr_505, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P251_503, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P252_505, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P251_specs_503 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P252_specs_505 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P252_505[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P253_507[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14909,39 +14967,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P252_505[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P252_tags_505[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P253_tags_507[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P252_specs_505 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P252), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P252, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P253_specs_507 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P253), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P253, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P252 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P253 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P252_tags_505, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P252_tags_505) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P252_tags_505[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P252_tags_505, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P252_tags_505) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P252_tags_505[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P253_tags_507, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P253_tags_507) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P253_tags_507[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P253_tags_507, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P253_tags_507) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P253_tags_507[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P252_constr_505, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P253_constr_507, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P252_505, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P253_507, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P252_specs_505 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P253_specs_507 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P253_507[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P254_509[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -14960,39 +15018,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P253_507[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P253_tags_507[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P254_tags_509[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P253_specs_507 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P253), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P253, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P254_specs_509 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P254), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P254, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P253 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P254 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P253_tags_507, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P253_tags_507) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P253_tags_507[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P253_tags_507, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P253_tags_507) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P253_tags_507[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P254_tags_509, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P254_tags_509) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P254_tags_509[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P254_tags_509, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P254_tags_509) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P254_tags_509[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P253_constr_507, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P254_constr_509, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P253_507, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P254_509, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P253_specs_507 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P254_specs_509 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P254_509[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P255_511[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15011,39 +15069,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P254_509[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P254_tags_509[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P255_tags_511[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P254_specs_509 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P254), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P254, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P255_specs_511 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P255), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P255, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P254 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P255 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P254_tags_509, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P254_tags_509) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P254_tags_509[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P254_tags_509, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P254_tags_509) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P254_tags_509[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P255_tags_511, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P255_tags_511) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P255_tags_511[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P255_tags_511, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P255_tags_511) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P255_tags_511[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P254_constr_509, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P255_constr_511, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P254_509, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P255_511, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P254_specs_509 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P255_specs_511 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P255_511[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P256_513[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15062,39 +15120,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P255_511[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P255_tags_511[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P256_tags_513[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P255_specs_511 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P255), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P255, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P256_specs_513 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P256), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P256, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P255 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P256 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P255_tags_511, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P255_tags_511) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P255_tags_511[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P255_tags_511, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P255_tags_511) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P255_tags_511[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P256_tags_513, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P256_tags_513) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P256_tags_513[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P256_tags_513, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P256_tags_513) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P256_tags_513[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P255_constr_511, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P256_constr_513, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P255_511, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P256_513, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P255_specs_511 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P256_specs_513 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P256_513[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P257_515[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15113,39 +15171,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P256_513[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P256_tags_513[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P257_tags_515[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P256_specs_513 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P256), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P256, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P257_specs_515 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P257), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P257, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P256 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P257 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P256_tags_513, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P256_tags_513) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P256_tags_513[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P256_tags_513, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P256_tags_513) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P256_tags_513[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P257_tags_515, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P257_tags_515) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P257_tags_515[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P257_tags_515, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P257_tags_515) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P257_tags_515[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P256_constr_513, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P257_constr_515, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P256_513, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P257_515, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P256_specs_513 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P257_specs_515 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P257_515[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P258_517[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15164,39 +15222,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P257_515[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P257_tags_515[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P258_tags_517[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P257_specs_515 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P257), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P257, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P258_specs_517 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P258), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P258, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P257 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P258 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P257_tags_515, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P257_tags_515) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P257_tags_515[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P257_tags_515, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P257_tags_515) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P257_tags_515[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P258_tags_517, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P258_tags_517) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P258_tags_517[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P258_tags_517, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P258_tags_517) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P258_tags_517[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P257_constr_515, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P258_constr_517, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P257_515, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P258_517, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P257_specs_515 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P258_specs_517 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P258_517[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P259_519[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15215,39 +15273,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P258_517[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P258_tags_517[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P259_tags_519[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P258_specs_517 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P258), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P258, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P259_specs_519 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P259), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P259, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P258 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P259 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P258_tags_517, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P258_tags_517) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P258_tags_517[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P258_tags_517, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P258_tags_517) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P258_tags_517[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P259_tags_519, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P259_tags_519) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P259_tags_519[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P259_tags_519, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P259_tags_519) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P259_tags_519[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P258_constr_517, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P259_constr_519, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P258_517, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P259_519, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P258_specs_517 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P259_specs_519 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P259_519[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P260_521[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15266,39 +15324,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P259_519[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P259_tags_519[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P260_tags_521[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P259_specs_519 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P259), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P259, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P260_specs_521 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P260), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P260, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P259 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P260 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P259_tags_519, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P259_tags_519) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P259_tags_519[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P259_tags_519, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P259_tags_519) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P259_tags_519[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P260_tags_521, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P260_tags_521) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P260_tags_521[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P260_tags_521, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P260_tags_521) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P260_tags_521[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P259_constr_519, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P260_constr_521, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P259_519, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P260_521, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P259_specs_519 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P260_specs_521 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P260_521[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P261_523[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15317,39 +15375,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P260_521[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P260_tags_521[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P261_tags_523[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P260_specs_521 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P260), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P260, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P261_specs_523 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P261), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P261, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P260 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P261 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P260_tags_521, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P260_tags_521) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P260_tags_521[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P260_tags_521, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P260_tags_521) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P260_tags_521[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P261_tags_523, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P261_tags_523) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P261_tags_523[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P261_tags_523, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P261_tags_523) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P261_tags_523[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P260_constr_521, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P261_constr_523, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P260_521, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P261_523, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P260_specs_521 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P261_specs_523 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P261_523[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P262_525[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15368,39 +15426,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P261_523[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P261_tags_523[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P262_tags_525[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P261_specs_523 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P261), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P261, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P262_specs_525 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P262), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P262, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P261 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P262 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P261_tags_523, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P261_tags_523) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P261_tags_523[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P261_tags_523, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P261_tags_523) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P261_tags_523[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P262_tags_525, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P262_tags_525) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P262_tags_525[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P262_tags_525, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P262_tags_525) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P262_tags_525[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P261_constr_523, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P262_constr_525, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P261_523, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P262_525, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P261_specs_523 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P262_specs_525 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P262_525[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P263_527[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15419,39 +15477,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P262_525[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P262_tags_525[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P263_tags_527[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P262_specs_525 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P262), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P262, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P263_specs_527 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P263), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P263, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P262 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P263 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P262_tags_525, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P262_tags_525) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P262_tags_525[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P262_tags_525, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P262_tags_525) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P262_tags_525[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P263_tags_527, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P263_tags_527) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P263_tags_527[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P263_tags_527, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P263_tags_527) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P263_tags_527[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P262_constr_525, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P263_constr_527, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P262_525, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P263_527, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P262_specs_525 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P263_specs_527 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P263_527[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P264_529[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15470,39 +15528,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P263_527[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P263_tags_527[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P264_tags_529[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P263_specs_527 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P263), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P263, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P264_specs_529 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P264), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P264, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P263 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P264 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P263_tags_527, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P263_tags_527) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P263_tags_527[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P263_tags_527, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P263_tags_527) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P263_tags_527[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P264_tags_529, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P264_tags_529) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P264_tags_529[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P264_tags_529, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P264_tags_529) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P264_tags_529[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P263_constr_527, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P264_constr_529, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P263_527, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P264_529, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P263_specs_527 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P264_specs_529 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P264_529[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P265_531[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15521,39 +15579,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P264_529[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P264_tags_529[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P265_tags_531[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P264_specs_529 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P264), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P264, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P265_specs_531 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P265), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P265, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P264 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P265 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P264_tags_529, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P264_tags_529) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P264_tags_529[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P264_tags_529, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P264_tags_529) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P264_tags_529[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P265_tags_531, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P265_tags_531) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P265_tags_531[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P265_tags_531, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P265_tags_531) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P265_tags_531[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P264_constr_529, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P265_constr_531, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P264_529, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P265_531, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P264_specs_529 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P265_specs_531 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P265_531[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P266_533[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15572,39 +15630,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P265_531[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P265_tags_531[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P266_tags_533[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P265_specs_531 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P265), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P265, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P266_specs_533 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P266), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P266, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P265 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P266 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P265_tags_531, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P265_tags_531) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P265_tags_531[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P265_tags_531, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P265_tags_531) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P265_tags_531[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P266_tags_533, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P266_tags_533) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P266_tags_533[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P266_tags_533, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P266_tags_533) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P266_tags_533[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P265_constr_531, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P266_constr_533, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P265_531, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P266_533, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P265_specs_531 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P266_specs_533 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P266_533[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P267_535[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15623,39 +15681,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P266_533[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P266_tags_533[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P267_tags_535[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P266_specs_533 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P266), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P266, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P267_specs_535 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P267), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P267, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P266 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P267 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P266_tags_533, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P266_tags_533) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P266_tags_533[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P266_tags_533, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P266_tags_533) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P266_tags_533[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P267_tags_535, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P267_tags_535) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P267_tags_535[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P267_tags_535, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P267_tags_535) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P267_tags_535[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P266_constr_533, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P267_constr_535, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P266_533, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P267_535, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P266_specs_533 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P267_specs_535 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P267_535[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P268_537[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15674,39 +15732,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P267_535[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P267_tags_535[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P268_tags_537[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P267_specs_535 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P267), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P267, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P268_specs_537 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P268), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P268, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P267 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P268 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P267_tags_535, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P267_tags_535) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P267_tags_535[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P267_tags_535, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P267_tags_535) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P267_tags_535[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P268_tags_537, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P268_tags_537) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P268_tags_537[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P268_tags_537, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P268_tags_537) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P268_tags_537[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P267_constr_535, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P268_constr_537, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P267_535, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P268_537, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P267_specs_535 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P268_specs_537 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P268_537[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P269_539[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15725,39 +15783,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P268_537[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P268_tags_537[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P269_tags_539[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P268_specs_537 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P268), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P268, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P269_specs_539 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P269), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P269, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P268 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P269 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P268_tags_537, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P268_tags_537) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P268_tags_537[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P268_tags_537, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P268_tags_537) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P268_tags_537[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P269_tags_539, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P269_tags_539) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P269_tags_539[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P269_tags_539, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P269_tags_539) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P269_tags_539[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P268_constr_537, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P269_constr_539, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P268_537, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P269_539, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P268_specs_537 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P269_specs_539 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P269_539[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P270_541[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15776,39 +15834,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P269_539[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P269_tags_539[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P270_tags_541[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P269_specs_539 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P269), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P269, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P270_specs_541 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P270), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P270, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P269 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P270 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P269_tags_539, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P269_tags_539) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P269_tags_539[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P269_tags_539, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P269_tags_539) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P269_tags_539[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P270_tags_541, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P270_tags_541) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P270_tags_541[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P270_tags_541, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P270_tags_541) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P270_tags_541[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P269_constr_539, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P270_constr_541, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P269_539, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P270_541, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P269_specs_539 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P270_specs_541 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P270_541[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P271_543[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15827,39 +15885,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P270_541[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P270_tags_541[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P271_tags_543[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P270_specs_541 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P270), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P270, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P271_specs_543 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P271), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P271, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P270 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P271 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P270_tags_541, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P270_tags_541) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P270_tags_541[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P270_tags_541, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P270_tags_541) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P270_tags_541[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P271_tags_543, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P271_tags_543) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P271_tags_543[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P271_tags_543, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P271_tags_543) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P271_tags_543[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P270_constr_541, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P271_constr_543, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P270_541, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P271_543, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P270_specs_541 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P271_specs_543 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P271_543[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P272_545[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15878,39 +15936,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P271_543[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P271_tags_543[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P272_tags_545[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P271_specs_543 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P271), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P271, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P272_specs_545 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P272), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P272, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P271 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P272 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P271_tags_543, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P271_tags_543) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P271_tags_543[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P271_tags_543, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P271_tags_543) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P271_tags_543[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P272_tags_545, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P272_tags_545) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P272_tags_545[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P272_tags_545, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P272_tags_545) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P272_tags_545[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P271_constr_543, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P272_constr_545, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P271_543, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P272_545, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P271_specs_543 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P272_specs_545 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P272_545[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P273_547[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15929,39 +15987,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P272_545[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P272_tags_545[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P273_tags_547[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P272_specs_545 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P272), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P272, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P273_specs_547 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P273), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P273, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P272 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P273 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P272_tags_545, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P272_tags_545) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P272_tags_545[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P272_tags_545, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P272_tags_545) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P272_tags_545[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P273_tags_547, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P273_tags_547) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P273_tags_547[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P273_tags_547, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P273_tags_547) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P273_tags_547[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P272_constr_545, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P273_constr_547, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P272_545, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P273_547, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P272_specs_545 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P273_specs_547 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P273_547[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P274_549[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -15980,39 +16038,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P273_547[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P273_tags_547[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P274_tags_549[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P273_specs_547 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P273), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P273, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P274_specs_549 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P274), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P274, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P273 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P274 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P273_tags_547, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P273_tags_547) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P273_tags_547[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P273_tags_547, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P273_tags_547) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P273_tags_547[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P274_tags_549, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P274_tags_549) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P274_tags_549[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P274_tags_549, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P274_tags_549) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P274_tags_549[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P273_constr_547, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P274_constr_549, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P273_547, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P274_549, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P273_specs_547 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P274_specs_549 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P274_549[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P275_551[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16031,39 +16089,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P274_549[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P274_tags_549[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P275_tags_551[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P274_specs_549 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P274), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P274, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P275_specs_551 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P275), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P275, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P274 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P275 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P274_tags_549, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P274_tags_549) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P274_tags_549[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P274_tags_549, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P274_tags_549) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P274_tags_549[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P275_tags_551, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P275_tags_551) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P275_tags_551[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P275_tags_551, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P275_tags_551) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P275_tags_551[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P274_constr_549, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P275_constr_551, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P274_549, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P275_551, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P274_specs_549 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P275_specs_551 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P275_551[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P276_553[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16082,39 +16140,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P275_551[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P275_tags_551[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P276_tags_553[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P275_specs_551 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P275), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P275, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P276_specs_553 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P276), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P276, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P275 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P276 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P275_tags_551, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P275_tags_551) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P275_tags_551[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P275_tags_551, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P275_tags_551) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P275_tags_551[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P276_tags_553, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P276_tags_553) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P276_tags_553[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P276_tags_553, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P276_tags_553) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P276_tags_553[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P275_constr_551, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P276_constr_553, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P275_551, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P276_553, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P275_specs_551 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P276_specs_553 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P276_553[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P277_555[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16133,39 +16191,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P276_553[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P276_tags_553[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P277_tags_555[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P276_specs_553 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P276), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P276, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P277_specs_555 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P277), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P277, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P276 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P277 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P276_tags_553, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P276_tags_553) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P276_tags_553[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P276_tags_553, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P276_tags_553) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P276_tags_553[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P277_tags_555, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P277_tags_555) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P277_tags_555[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P277_tags_555, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P277_tags_555) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P277_tags_555[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P276_constr_553, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P277_constr_555, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P276_553, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P277_555, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P276_specs_553 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P277_specs_555 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P277_555[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P278_557[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16184,39 +16242,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P277_555[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P277_tags_555[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P278_tags_557[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P277_specs_555 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P277), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P277, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P278_specs_557 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P278), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P278, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P277 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P278 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P277_tags_555, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P277_tags_555) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P277_tags_555[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P277_tags_555, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P277_tags_555) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P277_tags_555[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P278_tags_557, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P278_tags_557) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P278_tags_557[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P278_tags_557, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P278_tags_557) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P278_tags_557[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P277_constr_555, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P278_constr_557, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P277_555, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P278_557, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P277_specs_555 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P278_specs_557 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P278_557[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P279_559[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16235,39 +16293,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P278_557[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P278_tags_557[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P279_tags_559[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P278_specs_557 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P278), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P278, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P279_specs_559 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P279), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P279, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P278 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P279 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P278_tags_557, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P278_tags_557) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P278_tags_557[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P278_tags_557, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P278_tags_557) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P278_tags_557[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P279_tags_559, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P279_tags_559) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P279_tags_559[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P279_tags_559, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P279_tags_559) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P279_tags_559[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P278_constr_557, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P279_constr_559, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P278_557, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P279_559, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P278_specs_557 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P279_specs_559 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P279_559[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P280_561[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16286,39 +16344,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P279_559[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P279_tags_559[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P280_tags_561[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P279_specs_559 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P279), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P279, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P280_specs_561 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P280), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P280, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P279 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P280 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P279_tags_559, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P279_tags_559) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P279_tags_559[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P279_tags_559, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P279_tags_559) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P279_tags_559[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P280_tags_561, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P280_tags_561) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P280_tags_561[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P280_tags_561, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P280_tags_561) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P280_tags_561[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P279_constr_559, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P280_constr_561, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P279_559, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P280_561, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P279_specs_559 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P280_specs_561 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P280_561[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P281_563[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16337,39 +16395,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P280_561[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P280_tags_561[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P281_tags_563[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P280_specs_561 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P280), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P280, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P281_specs_563 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P281), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P281, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P280 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P281 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P280_tags_561, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P280_tags_561) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P280_tags_561[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P280_tags_561, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P280_tags_561) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P280_tags_561[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P281_tags_563, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P281_tags_563) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P281_tags_563[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P281_tags_563, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P281_tags_563) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P281_tags_563[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P280_constr_561, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P281_constr_563, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P280_561, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P281_563, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P280_specs_561 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P281_specs_563 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P281_563[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P282_565[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16388,39 +16446,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P281_563[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P281_tags_563[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P282_tags_565[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P281_specs_563 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P281), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P281, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P282_specs_565 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P282), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P282, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P281 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P282 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P281_tags_563, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P281_tags_563) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P281_tags_563[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P281_tags_563, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P281_tags_563) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P281_tags_563[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P282_tags_565, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P282_tags_565) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P282_tags_565[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P282_tags_565, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P282_tags_565) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P282_tags_565[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P281_constr_563, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P282_constr_565, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P281_563, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P282_565, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P281_specs_563 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P282_specs_565 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P282_565[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P283_567[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16439,39 +16497,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P282_565[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P282_tags_565[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P283_tags_567[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P282_specs_565 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P282), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P282, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P283_specs_567 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P283), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P283, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P282 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P283 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P282_tags_565, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P282_tags_565) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P282_tags_565[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P282_tags_565, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P282_tags_565) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P282_tags_565[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P283_tags_567, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P283_tags_567) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P283_tags_567[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P283_tags_567, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P283_tags_567) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P283_tags_567[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P282_constr_565, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P283_constr_567, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P282_565, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P283_567, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P282_specs_565 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P283_specs_567 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P283_567[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P284_569[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16490,39 +16548,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P283_567[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P283_tags_567[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P284_tags_569[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P283_specs_567 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P283), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P283, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P284_specs_569 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P284), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P284, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P283 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P284 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P283_tags_567, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P283_tags_567) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P283_tags_567[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P283_tags_567, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P283_tags_567) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P283_tags_567[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P284_tags_569, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P284_tags_569) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P284_tags_569[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P284_tags_569, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P284_tags_569) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P284_tags_569[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P283_constr_567, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P284_constr_569, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P283_567, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P284_569, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P283_specs_567 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P284_specs_569 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P284_569[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P285_571[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16541,39 +16599,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P284_569[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P284_tags_569[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P285_tags_571[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P284_specs_569 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P284), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P284, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P285_specs_571 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P285), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P285, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P284 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P285 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P284_tags_569, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P284_tags_569) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P284_tags_569[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P284_tags_569, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P284_tags_569) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P284_tags_569[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P285_tags_571, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P285_tags_571) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P285_tags_571[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P285_tags_571, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P285_tags_571) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P285_tags_571[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P284_constr_569, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P285_constr_571, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P284_569, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P285_571, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P284_specs_569 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P285_specs_571 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P285_571[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P286_573[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16592,39 +16650,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P285_571[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P285_tags_571[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P286_tags_573[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P285_specs_571 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P285), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P285, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P286_specs_573 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P286), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P286, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P285 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P286 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P285_tags_571, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P285_tags_571) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P285_tags_571[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P285_tags_571, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P285_tags_571) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P285_tags_571[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P286_tags_573, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P286_tags_573) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P286_tags_573[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P286_tags_573, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P286_tags_573) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P286_tags_573[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P285_constr_571, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P286_constr_573, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P285_571, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P286_573, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P285_specs_571 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P286_specs_573 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P286_573[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P287_575[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16643,39 +16701,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P286_573[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P286_tags_573[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P287_tags_575[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P286_specs_573 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P286), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P286, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P287_specs_575 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P287), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P287, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P286 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P287 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P286_tags_573, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P286_tags_573) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P286_tags_573[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P286_tags_573, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P286_tags_573) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P286_tags_573[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P287_tags_575, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P287_tags_575) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P287_tags_575[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P287_tags_575, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P287_tags_575) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P287_tags_575[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P286_constr_573, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P287_constr_575, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P286_573, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P287_575, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P286_specs_573 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P287_specs_575 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P287_575[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P288_577[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16694,39 +16752,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P287_575[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P287_tags_575[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P288_tags_577[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P287_specs_575 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P287), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P287, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P288_specs_577 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P288), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P288, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P287 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P288 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P287_tags_575, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P287_tags_575) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P287_tags_575[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P287_tags_575, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P287_tags_575) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P287_tags_575[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P288_tags_577, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P288_tags_577) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P288_tags_577[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P288_tags_577, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P288_tags_577) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P288_tags_577[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P287_constr_575, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P288_constr_577, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P287_575, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P288_577, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P287_specs_575 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P288_specs_577 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P288_577[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P289_579[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16745,39 +16803,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P288_577[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P288_tags_577[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P289_tags_579[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P288_specs_577 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P288), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P288, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P289_specs_579 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P289), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P289, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P288 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P289 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P288_tags_577, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P288_tags_577) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P288_tags_577[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P288_tags_577, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P288_tags_577) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P288_tags_577[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P289_tags_579, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P289_tags_579) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P289_tags_579[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P289_tags_579, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P289_tags_579) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P289_tags_579[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P288_constr_577, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P289_constr_579, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P288_577, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P289_579, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P288_specs_577 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P289_specs_579 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P289_579[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P290_581[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -16796,35 +16854,35 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P289_579[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P289_tags_579[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P290_tags_581[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P289_specs_579 = { - sizeof(struct NGAP_ProtocolExtensionContainer_9571P289), - offsetof(struct NGAP_ProtocolExtensionContainer_9571P289, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P290_specs_581 = { + sizeof(struct NGAP_ProtocolExtensionContainer_9625P290), + offsetof(struct NGAP_ProtocolExtensionContainer_9625P290, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P289 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P290 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolExtensionContainer_9571P289_tags_579, - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P289_tags_579) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P289_tags_579[0]), /* 1 */ - asn_DEF_NGAP_ProtocolExtensionContainer_9571P289_tags_579, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P289_tags_579) - /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9571P289_tags_579[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P290_tags_581, + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P290_tags_581) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P290_tags_581[0]), /* 1 */ + asn_DEF_NGAP_ProtocolExtensionContainer_9625P290_tags_581, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P290_tags_581) + /sizeof(asn_DEF_NGAP_ProtocolExtensionContainer_9625P290_tags_581[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolExtensionContainer_9571P289_constr_579, + &asn_PER_type_NGAP_ProtocolExtensionContainer_9625P290_constr_581, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolExtensionContainer_9571P289_579, + asn_MBR_NGAP_ProtocolExtensionContainer_9625P290_581, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolExtensionContainer_9571P289_specs_579 /* Additional specs */ + &asn_SPC_NGAP_ProtocolExtensionContainer_9625P290_specs_581 /* Additional specs */ }; diff --git a/lib/asn1c/ngap/NGAP_ProtocolExtensionContainer.h b/lib/asn1c/ngap/NGAP_ProtocolExtensionContainer.h index b4b5668ec..19d14dcaf 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolExtensionContainer.h +++ b/lib/asn1c/ngap/NGAP_ProtocolExtensionContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -223,6 +223,7 @@ struct NGAP_PNI_NPN_MobilityInformation_ExtIEs; struct NGAP_QosFlowAcceptedItem_ExtIEs; struct NGAP_QosFlowAddOrModifyRequestItem_ExtIEs; struct NGAP_QosFlowAddOrModifyResponseItem_ExtIEs; +struct NGAP_QosFlowFeedbackItem_ExtIEs; struct NGAP_QosFlowInformationItem_ExtIEs; struct NGAP_QosFlowLevelQosParameters_ExtIEs; struct NGAP_QosFlowWithCauseItem_ExtIEs; @@ -312,2908 +313,2918 @@ struct NGAP_XnExtTLA_Item_ExtIEs; struct NGAP_XnTNLConfigurationInfo_ExtIEs; /* NGAP_ProtocolExtensionContainer */ -typedef struct NGAP_ProtocolExtensionContainer_9571P0 { +typedef struct NGAP_ProtocolExtensionContainer_9625P0 { A_SEQUENCE_OF(struct NGAP_AdditionalDLUPTNLInformationForHOItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P0_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P1 { +} NGAP_ProtocolExtensionContainer_9625P0_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P1 { A_SEQUENCE_OF(struct NGAP_AllocationAndRetentionPriority_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P1_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P2 { +} NGAP_ProtocolExtensionContainer_9625P1_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P2 { A_SEQUENCE_OF(struct NGAP_AllowedNSSAI_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P2_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P3 { +} NGAP_ProtocolExtensionContainer_9625P2_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P3 { A_SEQUENCE_OF(struct NGAP_Allowed_PNI_NPN_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P3_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P4 { +} NGAP_ProtocolExtensionContainer_9625P3_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P4 { A_SEQUENCE_OF(struct NGAP_AlternativeQoSParaSetItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P4_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P5 { +} NGAP_ProtocolExtensionContainer_9625P4_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P5 { A_SEQUENCE_OF(struct NGAP_AMF_TNLAssociationSetupItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P5_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P6 { +} NGAP_ProtocolExtensionContainer_9625P5_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P6 { A_SEQUENCE_OF(struct NGAP_AMF_TNLAssociationToAddItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P6_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P7 { +} NGAP_ProtocolExtensionContainer_9625P6_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P7 { A_SEQUENCE_OF(struct NGAP_AMF_TNLAssociationToRemoveItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P7_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P8 { +} NGAP_ProtocolExtensionContainer_9625P7_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P8 { A_SEQUENCE_OF(struct NGAP_AMF_TNLAssociationToUpdateItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P8_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P9 { +} NGAP_ProtocolExtensionContainer_9625P8_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P9 { A_SEQUENCE_OF(struct NGAP_AreaOfInterest_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P9_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P10 { +} NGAP_ProtocolExtensionContainer_9625P9_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P10 { A_SEQUENCE_OF(struct NGAP_AreaOfInterestCellItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P10_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P11 { +} NGAP_ProtocolExtensionContainer_9625P10_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P11 { A_SEQUENCE_OF(struct NGAP_AreaOfInterestItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P11_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P12 { +} NGAP_ProtocolExtensionContainer_9625P11_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P12 { A_SEQUENCE_OF(struct NGAP_AreaOfInterestRANNodeItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P12_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P13 { +} NGAP_ProtocolExtensionContainer_9625P12_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P13 { A_SEQUENCE_OF(struct NGAP_AreaOfInterestTAIItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P13_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P14 { +} NGAP_ProtocolExtensionContainer_9625P13_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P14 { A_SEQUENCE_OF(struct NGAP_AssistanceDataForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P14_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P15 { +} NGAP_ProtocolExtensionContainer_9625P14_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P15 { A_SEQUENCE_OF(struct NGAP_AssistanceDataForRecommendedCells_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P15_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P16 { +} NGAP_ProtocolExtensionContainer_9625P15_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P16 { A_SEQUENCE_OF(struct NGAP_AssociatedQosFlowItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P16_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P17 { +} NGAP_ProtocolExtensionContainer_9625P16_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P17 { A_SEQUENCE_OF(struct NGAP_AreaScopeOfNeighCellsItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P17_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P18 { +} NGAP_ProtocolExtensionContainer_9625P17_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P18 { A_SEQUENCE_OF(struct NGAP_BroadcastPLMNItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P18_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P19 { +} NGAP_ProtocolExtensionContainer_9625P18_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P19 { A_SEQUENCE_OF(struct NGAP_BluetoothMeasurementConfiguration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P19_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P20 { +} NGAP_ProtocolExtensionContainer_9625P19_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P20 { A_SEQUENCE_OF(struct NGAP_BluetoothMeasConfigNameItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P20_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P21 { +} NGAP_ProtocolExtensionContainer_9625P20_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P21 { A_SEQUENCE_OF(struct NGAP_CancelledCellsInEAI_EUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P21_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P22 { +} NGAP_ProtocolExtensionContainer_9625P21_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P22 { A_SEQUENCE_OF(struct NGAP_CancelledCellsInEAI_NR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P22_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P23 { +} NGAP_ProtocolExtensionContainer_9625P22_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P23 { A_SEQUENCE_OF(struct NGAP_CancelledCellsInTAI_EUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P23_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P24 { +} NGAP_ProtocolExtensionContainer_9625P23_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P24 { A_SEQUENCE_OF(struct NGAP_CancelledCellsInTAI_NR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P24_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P25 { +} NGAP_ProtocolExtensionContainer_9625P24_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P25 { A_SEQUENCE_OF(struct NGAP_CandidateCellItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P25_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P26 { +} NGAP_ProtocolExtensionContainer_9625P25_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P26 { A_SEQUENCE_OF(struct NGAP_CandidateCellID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P26_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P27 { +} NGAP_ProtocolExtensionContainer_9625P26_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P27 { A_SEQUENCE_OF(struct NGAP_CandidatePCI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P27_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P28 { +} NGAP_ProtocolExtensionContainer_9625P27_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P28 { A_SEQUENCE_OF(struct NGAP_Cell_CAGInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P28_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P29 { +} NGAP_ProtocolExtensionContainer_9625P28_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P29 { A_SEQUENCE_OF(struct NGAP_CellIDBroadcastEUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P29_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P30 { +} NGAP_ProtocolExtensionContainer_9625P29_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P30 { A_SEQUENCE_OF(struct NGAP_CellIDBroadcastNR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P30_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P31 { +} NGAP_ProtocolExtensionContainer_9625P30_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P31 { A_SEQUENCE_OF(struct NGAP_CellIDCancelledEUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P31_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P32 { +} NGAP_ProtocolExtensionContainer_9625P31_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P32 { A_SEQUENCE_OF(struct NGAP_CellIDCancelledNR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P32_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P33 { +} NGAP_ProtocolExtensionContainer_9625P32_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P33 { A_SEQUENCE_OF(struct NGAP_CellType_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P33_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P34 { +} NGAP_ProtocolExtensionContainer_9625P33_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P34 { A_SEQUENCE_OF(struct NGAP_CNAssistedRANTuning_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P34_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P35 { +} NGAP_ProtocolExtensionContainer_9625P34_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P35 { A_SEQUENCE_OF(struct NGAP_CNTypeRestrictionsForEquivalentItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P35_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P36 { +} NGAP_ProtocolExtensionContainer_9625P35_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P36 { A_SEQUENCE_OF(struct NGAP_CompletedCellsInEAI_EUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P36_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P37 { +} NGAP_ProtocolExtensionContainer_9625P36_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P37 { A_SEQUENCE_OF(struct NGAP_CompletedCellsInEAI_NR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P37_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P38 { +} NGAP_ProtocolExtensionContainer_9625P37_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P38 { A_SEQUENCE_OF(struct NGAP_CompletedCellsInTAI_EUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P38_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P39 { +} NGAP_ProtocolExtensionContainer_9625P38_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P39 { A_SEQUENCE_OF(struct NGAP_CompletedCellsInTAI_NR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P39_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P40 { +} NGAP_ProtocolExtensionContainer_9625P39_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P40 { A_SEQUENCE_OF(struct NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P40_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P41 { +} NGAP_ProtocolExtensionContainer_9625P40_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P41 { A_SEQUENCE_OF(struct NGAP_COUNTValueForPDCP_SN12_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P41_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P42 { +} NGAP_ProtocolExtensionContainer_9625P41_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P42 { A_SEQUENCE_OF(struct NGAP_COUNTValueForPDCP_SN18_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P42_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P43 { +} NGAP_ProtocolExtensionContainer_9625P42_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P43 { A_SEQUENCE_OF(struct NGAP_CriticalityDiagnostics_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P43_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P44 { +} NGAP_ProtocolExtensionContainer_9625P43_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P44 { A_SEQUENCE_OF(struct NGAP_CriticalityDiagnostics_IE_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P44_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P45 { +} NGAP_ProtocolExtensionContainer_9625P44_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P45 { A_SEQUENCE_OF(struct NGAP_CellBasedMDT_NR_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P45_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P46 { +} NGAP_ProtocolExtensionContainer_9625P45_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P46 { A_SEQUENCE_OF(struct NGAP_CellBasedMDT_EUTRA_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P46_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P47 { +} NGAP_ProtocolExtensionContainer_9625P46_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P47 { A_SEQUENCE_OF(struct NGAP_DataForwardingResponseDRBItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P47_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P48 { +} NGAP_ProtocolExtensionContainer_9625P47_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P48 { A_SEQUENCE_OF(struct NGAP_DAPSRequestInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P48_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P49 { +} NGAP_ProtocolExtensionContainer_9625P48_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P49 { A_SEQUENCE_OF(struct NGAP_DAPSResponseInfoItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P49_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P50 { +} NGAP_ProtocolExtensionContainer_9625P49_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P50 { A_SEQUENCE_OF(struct NGAP_DAPSResponseInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P50_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P51 { +} NGAP_ProtocolExtensionContainer_9625P50_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P51 { A_SEQUENCE_OF(struct NGAP_DataForwardingResponseERABListItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P51_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P52 { +} NGAP_ProtocolExtensionContainer_9625P51_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P52 { A_SEQUENCE_OF(struct NGAP_DL_CP_SecurityInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P52_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P53 { +} NGAP_ProtocolExtensionContainer_9625P52_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P53 { A_SEQUENCE_OF(struct NGAP_DRBsSubjectToStatusTransferItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P53_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P54 { +} NGAP_ProtocolExtensionContainer_9625P53_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P54 { A_SEQUENCE_OF(struct NGAP_DRBStatusDL12_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P54_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P55 { +} NGAP_ProtocolExtensionContainer_9625P54_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P55 { A_SEQUENCE_OF(struct NGAP_DRBStatusDL18_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P55_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P56 { +} NGAP_ProtocolExtensionContainer_9625P55_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P56 { A_SEQUENCE_OF(struct NGAP_DRBStatusUL12_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P56_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P57 { +} NGAP_ProtocolExtensionContainer_9625P56_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P57 { A_SEQUENCE_OF(struct NGAP_DRBStatusUL18_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P57_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P58 { +} NGAP_ProtocolExtensionContainer_9625P57_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P58 { A_SEQUENCE_OF(struct NGAP_DRBsToQosFlowsMappingItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P58_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P59 { +} NGAP_ProtocolExtensionContainer_9625P58_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P59 { A_SEQUENCE_OF(struct NGAP_Dynamic5QIDescriptor_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P59_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P60 { +} NGAP_ProtocolExtensionContainer_9625P59_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P60 { A_SEQUENCE_OF(struct NGAP_EarlyStatusTransfer_TransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P60_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P61 { +} NGAP_ProtocolExtensionContainer_9625P60_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P61 { A_SEQUENCE_OF(struct NGAP_FirstDLCount_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P61_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P62 { +} NGAP_ProtocolExtensionContainer_9625P61_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P62 { A_SEQUENCE_OF(struct NGAP_DRBsSubjectToEarlyStatusTransfer_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P62_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P63 { +} NGAP_ProtocolExtensionContainer_9625P62_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P63 { A_SEQUENCE_OF(struct NGAP_EmergencyAreaIDBroadcastEUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P63_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P64 { +} NGAP_ProtocolExtensionContainer_9625P63_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P64 { A_SEQUENCE_OF(struct NGAP_EmergencyAreaIDBroadcastNR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P64_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P65 { +} NGAP_ProtocolExtensionContainer_9625P64_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P65 { A_SEQUENCE_OF(struct NGAP_EmergencyAreaIDCancelledEUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P65_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P66 { +} NGAP_ProtocolExtensionContainer_9625P65_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P66 { A_SEQUENCE_OF(struct NGAP_EmergencyAreaIDCancelledNR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P66_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P67 { +} NGAP_ProtocolExtensionContainer_9625P66_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P67 { A_SEQUENCE_OF(struct NGAP_EmergencyFallbackIndicator_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P67_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P68 { +} NGAP_ProtocolExtensionContainer_9625P67_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P68 { A_SEQUENCE_OF(struct NGAP_EndpointIPAddressAndPort_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P68_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P69 { +} NGAP_ProtocolExtensionContainer_9625P68_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P69 { A_SEQUENCE_OF(struct NGAP_EPS_TAI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P69_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P70 { +} NGAP_ProtocolExtensionContainer_9625P69_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P70 { A_SEQUENCE_OF(struct NGAP_E_RABInformationItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P70_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P71 { +} NGAP_ProtocolExtensionContainer_9625P70_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P71 { A_SEQUENCE_OF(struct NGAP_EUTRA_CGI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P71_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P72 { +} NGAP_ProtocolExtensionContainer_9625P71_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P72 { A_SEQUENCE_OF(struct NGAP_ExpectedUEActivityBehaviour_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P72_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P73 { +} NGAP_ProtocolExtensionContainer_9625P72_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P73 { A_SEQUENCE_OF(struct NGAP_ExpectedUEBehaviour_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P73_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P74 { +} NGAP_ProtocolExtensionContainer_9625P73_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P74 { A_SEQUENCE_OF(struct NGAP_ExpectedUEMovingTrajectoryItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P74_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P75 { +} NGAP_ProtocolExtensionContainer_9625P74_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P75 { A_SEQUENCE_OF(struct NGAP_Extended_AMFName_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P75_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P76 { +} NGAP_ProtocolExtensionContainer_9625P75_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P76 { A_SEQUENCE_OF(struct NGAP_Extended_RANNodeName_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P76_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P77 { +} NGAP_ProtocolExtensionContainer_9625P76_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P77 { A_SEQUENCE_OF(struct NGAP_ExtendedRATRestrictionInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P77_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P78 { +} NGAP_ProtocolExtensionContainer_9625P77_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P78 { A_SEQUENCE_OF(struct NGAP_EventL1LoggedMDTConfig_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P78_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P79 { +} NGAP_ProtocolExtensionContainer_9625P78_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P79 { A_SEQUENCE_OF(struct NGAP_FailureIndication_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P79_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P80 { +} NGAP_ProtocolExtensionContainer_9625P79_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P80 { A_SEQUENCE_OF(struct NGAP_FiveG_S_TMSI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P80_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P81 { +} NGAP_ProtocolExtensionContainer_9625P80_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P81 { A_SEQUENCE_OF(struct NGAP_ForbiddenAreaInformation_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P81_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P82 { +} NGAP_ProtocolExtensionContainer_9625P81_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P82 { A_SEQUENCE_OF(struct NGAP_FromEUTRANtoNGRAN_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P82_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P83 { +} NGAP_ProtocolExtensionContainer_9625P82_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P83 { A_SEQUENCE_OF(struct NGAP_FromNGRANtoEUTRAN_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P83_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P84 { +} NGAP_ProtocolExtensionContainer_9625P83_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P84 { A_SEQUENCE_OF(struct NGAP_GBR_QosInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P84_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P85 { +} NGAP_ProtocolExtensionContainer_9625P84_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P85 { A_SEQUENCE_OF(struct NGAP_GlobalENB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P85_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P86 { +} NGAP_ProtocolExtensionContainer_9625P85_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P86 { A_SEQUENCE_OF(struct NGAP_GlobalGNB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P86_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P87 { +} NGAP_ProtocolExtensionContainer_9625P86_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P87 { A_SEQUENCE_OF(struct NGAP_GlobalN3IWF_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P87_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P88 { +} NGAP_ProtocolExtensionContainer_9625P87_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P88 { A_SEQUENCE_OF(struct NGAP_GlobalLine_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P88_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P89 { +} NGAP_ProtocolExtensionContainer_9625P88_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P89 { A_SEQUENCE_OF(struct NGAP_GlobalNgENB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P89_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P90 { +} NGAP_ProtocolExtensionContainer_9625P89_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P90 { A_SEQUENCE_OF(struct NGAP_GlobalTNGF_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P90_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P91 { +} NGAP_ProtocolExtensionContainer_9625P90_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P91 { A_SEQUENCE_OF(struct NGAP_GlobalTWIF_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P91_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P92 { +} NGAP_ProtocolExtensionContainer_9625P91_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P92 { A_SEQUENCE_OF(struct NGAP_GlobalW_AGF_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P92_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P93 { +} NGAP_ProtocolExtensionContainer_9625P92_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P93 { A_SEQUENCE_OF(struct NGAP_GTPTunnel_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P93_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P94 { +} NGAP_ProtocolExtensionContainer_9625P93_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P94 { A_SEQUENCE_OF(struct NGAP_GUAMI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P94_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P95 { +} NGAP_ProtocolExtensionContainer_9625P94_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P95 { A_SEQUENCE_OF(struct NGAP_HandoverCommandTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P95_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P96 { +} NGAP_ProtocolExtensionContainer_9625P95_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P96 { A_SEQUENCE_OF(struct NGAP_HandoverPreparationUnsuccessfulTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P96_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P97 { +} NGAP_ProtocolExtensionContainer_9625P96_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P97 { A_SEQUENCE_OF(struct NGAP_HandoverRequestAcknowledgeTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P97_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P98 { +} NGAP_ProtocolExtensionContainer_9625P97_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P98 { A_SEQUENCE_OF(struct NGAP_HandoverRequiredTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P98_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P99 { +} NGAP_ProtocolExtensionContainer_9625P98_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P99 { A_SEQUENCE_OF(struct NGAP_HandoverResourceAllocationUnsuccessfulTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P99_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P100 { +} NGAP_ProtocolExtensionContainer_9625P99_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P100 { A_SEQUENCE_OF(struct NGAP_HOReport_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P100_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P101 { +} NGAP_ProtocolExtensionContainer_9625P100_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P101 { A_SEQUENCE_OF(struct NGAP_InfoOnRecommendedCellsAndRANNodesForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P101_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P102 { +} NGAP_ProtocolExtensionContainer_9625P101_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P102 { A_SEQUENCE_OF(struct NGAP_ImmediateMDTNr_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P102_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P103 { +} NGAP_ProtocolExtensionContainer_9625P102_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P103 { A_SEQUENCE_OF(struct NGAP_InterSystemFailureIndication_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P103_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P104 { +} NGAP_ProtocolExtensionContainer_9625P103_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P104 { A_SEQUENCE_OF(struct NGAP_IntersystemSONConfigurationTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P104_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P105 { +} NGAP_ProtocolExtensionContainer_9625P104_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P105 { A_SEQUENCE_OF(struct NGAP_IntersystemSONeNBID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P105_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P106 { +} NGAP_ProtocolExtensionContainer_9625P105_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P106 { A_SEQUENCE_OF(struct NGAP_IntersystemSONNGRANnodeID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P106_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P107 { +} NGAP_ProtocolExtensionContainer_9625P106_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P107 { A_SEQUENCE_OF(struct NGAP_InterSystemHOReport_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P107_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P108 { +} NGAP_ProtocolExtensionContainer_9625P107_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P108 { A_SEQUENCE_OF(struct NGAP_IntersystemUnnecessaryHO_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P108_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P109 { +} NGAP_ProtocolExtensionContainer_9625P108_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P109 { A_SEQUENCE_OF(struct NGAP_LAI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P109_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P110 { +} NGAP_ProtocolExtensionContainer_9625P109_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P110 { A_SEQUENCE_OF(struct NGAP_LastVisitedCellItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P110_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P111 { +} NGAP_ProtocolExtensionContainer_9625P110_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P111 { A_SEQUENCE_OF(struct NGAP_LastVisitedNGRANCellInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P111_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P112 { +} NGAP_ProtocolExtensionContainer_9625P111_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P112 { A_SEQUENCE_OF(struct NGAP_LocationReportingRequestType_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P112_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P113 { +} NGAP_ProtocolExtensionContainer_9625P112_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P113 { A_SEQUENCE_OF(struct NGAP_LoggedMDTNr_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P113_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P114 { +} NGAP_ProtocolExtensionContainer_9625P113_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P114 { A_SEQUENCE_OF(struct NGAP_LTEV2XServicesAuthorized_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P114_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P115 { +} NGAP_ProtocolExtensionContainer_9625P114_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P115 { A_SEQUENCE_OF(struct NGAP_LTEUE_Sidelink_Aggregate_MaximumBitrates_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P115_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P116 { +} NGAP_ProtocolExtensionContainer_9625P115_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P116 { A_SEQUENCE_OF(struct NGAP_MobilityRestrictionList_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P116_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P117 { +} NGAP_ProtocolExtensionContainer_9625P116_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P117 { A_SEQUENCE_OF(struct NGAP_MDT_Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P117_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P118 { +} NGAP_ProtocolExtensionContainer_9625P117_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P118 { A_SEQUENCE_OF(struct NGAP_MDT_Configuration_NR_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P118_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P119 { +} NGAP_ProtocolExtensionContainer_9625P118_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P119 { A_SEQUENCE_OF(struct NGAP_MDT_Configuration_EUTRA_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P119_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P120 { +} NGAP_ProtocolExtensionContainer_9625P119_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P120 { A_SEQUENCE_OF(struct NGAP_M1Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P120_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P121 { +} NGAP_ProtocolExtensionContainer_9625P120_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P121 { A_SEQUENCE_OF(struct NGAP_M1ThresholdEventA2_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P121_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P122 { +} NGAP_ProtocolExtensionContainer_9625P121_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P122 { A_SEQUENCE_OF(struct NGAP_M1PeriodicReporting_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P122_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P123 { +} NGAP_ProtocolExtensionContainer_9625P122_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P123 { A_SEQUENCE_OF(struct NGAP_M4Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P123_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P124 { +} NGAP_ProtocolExtensionContainer_9625P123_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P124 { A_SEQUENCE_OF(struct NGAP_M5Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P124_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P125 { +} NGAP_ProtocolExtensionContainer_9625P124_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P125 { A_SEQUENCE_OF(struct NGAP_M6Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P125_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P126 { +} NGAP_ProtocolExtensionContainer_9625P125_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P126 { A_SEQUENCE_OF(struct NGAP_M7Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P126_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P127 { +} NGAP_ProtocolExtensionContainer_9625P126_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P127 { A_SEQUENCE_OF(struct NGAP_MDT_Location_Info_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P127_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P128 { +} NGAP_ProtocolExtensionContainer_9625P127_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P128 { A_SEQUENCE_OF(struct NGAP_NB_IoT_Paging_eDRXInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P128_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P129 { +} NGAP_ProtocolExtensionContainer_9625P128_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P129 { A_SEQUENCE_OF(struct NGAP_NGRAN_TNLAssociationToRemoveItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P129_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P130 { +} NGAP_ProtocolExtensionContainer_9625P129_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P130 { A_SEQUENCE_OF(struct NGAP_NonDynamic5QIDescriptor_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P130_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P131 { +} NGAP_ProtocolExtensionContainer_9625P130_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P131 { A_SEQUENCE_OF(struct NGAP_NR_CGI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P131_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P132 { +} NGAP_ProtocolExtensionContainer_9625P131_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P132 { A_SEQUENCE_OF(struct NGAP_NRFrequencyBandItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P132_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P133 { +} NGAP_ProtocolExtensionContainer_9625P132_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P133 { A_SEQUENCE_OF(struct NGAP_NRFrequencyInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P133_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P134 { +} NGAP_ProtocolExtensionContainer_9625P133_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P134 { A_SEQUENCE_OF(struct NGAP_NRV2XServicesAuthorized_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P134_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P135 { +} NGAP_ProtocolExtensionContainer_9625P134_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P135 { A_SEQUENCE_OF(struct NGAP_NRUESidelinkAggregateMaximumBitrate_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P135_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P136 { +} NGAP_ProtocolExtensionContainer_9625P135_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P136 { A_SEQUENCE_OF(struct NGAP_OverloadStartNSSAIItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P136_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P137 { +} NGAP_ProtocolExtensionContainer_9625P136_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P137 { A_SEQUENCE_OF(struct NGAP_PacketErrorRate_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P137_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P138 { +} NGAP_ProtocolExtensionContainer_9625P137_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P138 { A_SEQUENCE_OF(struct NGAP_PagingAssisDataforCEcapabUE_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P138_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P139 { +} NGAP_ProtocolExtensionContainer_9625P138_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P139 { A_SEQUENCE_OF(struct NGAP_PagingAttemptInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P139_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P140 { +} NGAP_ProtocolExtensionContainer_9625P139_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P140 { A_SEQUENCE_OF(struct NGAP_PagingeDRXInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P140_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P141 { +} NGAP_ProtocolExtensionContainer_9625P140_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P141 { A_SEQUENCE_OF(struct NGAP_PathSwitchRequestAcknowledgeTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P141_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P142 { +} NGAP_ProtocolExtensionContainer_9625P141_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P142 { A_SEQUENCE_OF(struct NGAP_PathSwitchRequestSetupFailedTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P142_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P143 { +} NGAP_ProtocolExtensionContainer_9625P142_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P143 { A_SEQUENCE_OF(struct NGAP_PathSwitchRequestTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P143_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P144 { +} NGAP_ProtocolExtensionContainer_9625P143_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P144 { A_SEQUENCE_OF(struct NGAP_PathSwitchRequestUnsuccessfulTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P144_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P145 { +} NGAP_ProtocolExtensionContainer_9625P144_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P145 { A_SEQUENCE_OF(struct NGAP_PC5QoSParameters_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P145_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P146 { +} NGAP_ProtocolExtensionContainer_9625P145_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P146 { A_SEQUENCE_OF(struct NGAP_PC5QoSFlowItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P146_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P147 { +} NGAP_ProtocolExtensionContainer_9625P146_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P147 { A_SEQUENCE_OF(struct NGAP_PC5FlowBitRates_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P147_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P148 { +} NGAP_ProtocolExtensionContainer_9625P147_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P148 { A_SEQUENCE_OF(struct NGAP_PDUSessionAggregateMaximumBitRate_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P148_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P149 { +} NGAP_ProtocolExtensionContainer_9625P148_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P149 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceAdmittedItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P149_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P150 { +} NGAP_ProtocolExtensionContainer_9625P149_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P150 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToModifyItemModCfm_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P150_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P151 { +} NGAP_ProtocolExtensionContainer_9625P150_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P151 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToModifyItemModRes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P151_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P152 { +} NGAP_ProtocolExtensionContainer_9625P151_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P152 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToResumeItemRESReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P152_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P153 { +} NGAP_ProtocolExtensionContainer_9625P152_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P153 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToResumeItemRESRes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P153_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P154 { +} NGAP_ProtocolExtensionContainer_9625P153_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P154 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToSetupItemCxtFail_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P154_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P155 { +} NGAP_ProtocolExtensionContainer_9625P154_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P155 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToSetupItemCxtRes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P155_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P156 { +} NGAP_ProtocolExtensionContainer_9625P155_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P156 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToSetupItemHOAck_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P156_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P157 { +} NGAP_ProtocolExtensionContainer_9625P156_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P157 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToSetupItemPSReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P157_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P158 { +} NGAP_ProtocolExtensionContainer_9625P157_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P158 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceFailedToSetupItemSURes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P158_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P159 { +} NGAP_ProtocolExtensionContainer_9625P158_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P159 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceHandoverItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P159_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P160 { +} NGAP_ProtocolExtensionContainer_9625P159_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P160 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceInformationItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P160_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P161 { +} NGAP_ProtocolExtensionContainer_9625P160_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P161 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceItemCxtRelCpl_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P161_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P162 { +} NGAP_ProtocolExtensionContainer_9625P161_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P162 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceItemCxtRelReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P162_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P163 { +} NGAP_ProtocolExtensionContainer_9625P162_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P163 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceItemHORqd_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P163_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P164 { +} NGAP_ProtocolExtensionContainer_9625P163_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P164 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyConfirmTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P164_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P165 { +} NGAP_ProtocolExtensionContainer_9625P164_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P165 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyIndicationUnsuccessfulTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P165_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P166 { +} NGAP_ProtocolExtensionContainer_9625P165_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P166 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyResponseTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P166_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P167 { +} NGAP_ProtocolExtensionContainer_9625P166_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P167 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyIndicationTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P167_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P168 { +} NGAP_ProtocolExtensionContainer_9625P167_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P168 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyItemModCfm_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P168_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P169 { +} NGAP_ProtocolExtensionContainer_9625P168_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P169 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyItemModInd_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P169_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P170 { +} NGAP_ProtocolExtensionContainer_9625P169_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P170 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyItemModReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P170_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P171 { +} NGAP_ProtocolExtensionContainer_9625P170_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P171 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyItemModRes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P171_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P172 { +} NGAP_ProtocolExtensionContainer_9625P171_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P172 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyUnsuccessfulTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P172_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P173 { +} NGAP_ProtocolExtensionContainer_9625P172_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P173 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceNotifyItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P173_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P174 { +} NGAP_ProtocolExtensionContainer_9625P173_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P174 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceNotifyReleasedTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P174_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P175 { +} NGAP_ProtocolExtensionContainer_9625P174_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P175 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceNotifyTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P175_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P176 { +} NGAP_ProtocolExtensionContainer_9625P175_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P176 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceReleaseCommandTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P176_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P177 { +} NGAP_ProtocolExtensionContainer_9625P176_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P177 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceReleasedItemNot_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P177_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P178 { +} NGAP_ProtocolExtensionContainer_9625P177_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P178 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceReleasedItemPSAck_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P178_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P179 { +} NGAP_ProtocolExtensionContainer_9625P178_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P179 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceReleasedItemPSFail_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P179_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P180 { +} NGAP_ProtocolExtensionContainer_9625P179_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P180 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceReleasedItemRelRes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P180_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P181 { +} NGAP_ProtocolExtensionContainer_9625P180_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P181 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceReleaseResponseTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P181_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P182 { +} NGAP_ProtocolExtensionContainer_9625P181_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P182 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceResumeItemRESReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P182_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P183 { +} NGAP_ProtocolExtensionContainer_9625P182_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P183 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceResumeItemRESRes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P183_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P184 { +} NGAP_ProtocolExtensionContainer_9625P183_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P184 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSecondaryRATUsageItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P184_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P185 { +} NGAP_ProtocolExtensionContainer_9625P184_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P185 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P185_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P186 { +} NGAP_ProtocolExtensionContainer_9625P185_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P186 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupItemCxtRes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P186_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P187 { +} NGAP_ProtocolExtensionContainer_9625P186_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P187 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P187_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P188 { +} NGAP_ProtocolExtensionContainer_9625P187_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P188 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P188_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P189 { +} NGAP_ProtocolExtensionContainer_9625P188_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P189 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupItemSURes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P189_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P190 { +} NGAP_ProtocolExtensionContainer_9625P189_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P190 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupResponseTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P190_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P191 { +} NGAP_ProtocolExtensionContainer_9625P190_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P191 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupUnsuccessfulTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P191_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P192 { +} NGAP_ProtocolExtensionContainer_9625P191_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P192 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSuspendItemSUSReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P192_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P193 { +} NGAP_ProtocolExtensionContainer_9625P192_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P193 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P193_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P194 { +} NGAP_ProtocolExtensionContainer_9625P193_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P194 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceToBeSwitchedDLItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P194_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P195 { +} NGAP_ProtocolExtensionContainer_9625P194_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P195 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceToReleaseItemHOCmd_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P195_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P196 { +} NGAP_ProtocolExtensionContainer_9625P195_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P196 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceToReleaseItemRelCmd_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P196_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P197 { +} NGAP_ProtocolExtensionContainer_9625P196_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P197 { A_SEQUENCE_OF(struct NGAP_PDUSessionUsageReport_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P197_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P198 { +} NGAP_ProtocolExtensionContainer_9625P197_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P198 { A_SEQUENCE_OF(struct NGAP_PLMNSupportItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P198_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P199 { +} NGAP_ProtocolExtensionContainer_9625P198_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P199 { A_SEQUENCE_OF(struct NGAP_PNI_NPN_MobilityInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P199_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P200 { +} NGAP_ProtocolExtensionContainer_9625P199_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P200 { A_SEQUENCE_OF(struct NGAP_QosFlowAcceptedItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P200_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P201 { +} NGAP_ProtocolExtensionContainer_9625P200_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P201 { A_SEQUENCE_OF(struct NGAP_QosFlowAddOrModifyRequestItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P201_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P202 { +} NGAP_ProtocolExtensionContainer_9625P201_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P202 { A_SEQUENCE_OF(struct NGAP_QosFlowAddOrModifyResponseItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P202_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P203 { +} NGAP_ProtocolExtensionContainer_9625P202_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P203 { + A_SEQUENCE_OF(struct NGAP_QosFlowFeedbackItem_ExtIEs) list; + + /* Context for parsing across buffer boundaries */ + asn_struct_ctx_t _asn_ctx; +} NGAP_ProtocolExtensionContainer_9625P203_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P204 { A_SEQUENCE_OF(struct NGAP_QosFlowInformationItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P203_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P204 { +} NGAP_ProtocolExtensionContainer_9625P204_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P205 { A_SEQUENCE_OF(struct NGAP_QosFlowLevelQosParameters_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P204_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P205 { +} NGAP_ProtocolExtensionContainer_9625P205_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P206 { A_SEQUENCE_OF(struct NGAP_QosFlowWithCauseItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P205_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P206 { +} NGAP_ProtocolExtensionContainer_9625P206_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P207 { A_SEQUENCE_OF(struct NGAP_QosFlowModifyConfirmItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P206_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P207 { +} NGAP_ProtocolExtensionContainer_9625P207_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P208 { A_SEQUENCE_OF(struct NGAP_QosFlowNotifyItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P207_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P208 { +} NGAP_ProtocolExtensionContainer_9625P208_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P209 { A_SEQUENCE_OF(struct NGAP_QosFlowParametersItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P208_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P209 { +} NGAP_ProtocolExtensionContainer_9625P209_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P210 { A_SEQUENCE_OF(struct NGAP_QosFlowPerTNLInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P209_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P210 { +} NGAP_ProtocolExtensionContainer_9625P210_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P211 { A_SEQUENCE_OF(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P210_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P211 { +} NGAP_ProtocolExtensionContainer_9625P211_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P212 { A_SEQUENCE_OF(struct NGAP_QosFlowSetupRequestItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P211_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P212 { +} NGAP_ProtocolExtensionContainer_9625P212_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P213 { A_SEQUENCE_OF(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P212_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P213 { +} NGAP_ProtocolExtensionContainer_9625P213_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P214 { A_SEQUENCE_OF(struct NGAP_QosFlowToBeForwardedItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P213_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P214 { +} NGAP_ProtocolExtensionContainer_9625P214_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P215 { A_SEQUENCE_OF(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P214_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P215 { +} NGAP_ProtocolExtensionContainer_9625P215_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P216 { A_SEQUENCE_OF(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P215_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P216 { +} NGAP_ProtocolExtensionContainer_9625P216_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P217 { A_SEQUENCE_OF(struct NGAP_RATRestrictions_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P216_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P217 { +} NGAP_ProtocolExtensionContainer_9625P217_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P218 { A_SEQUENCE_OF(struct NGAP_RecommendedCellsForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P217_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P218 { +} NGAP_ProtocolExtensionContainer_9625P218_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P219 { A_SEQUENCE_OF(struct NGAP_RecommendedCellItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P218_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P219 { +} NGAP_ProtocolExtensionContainer_9625P219_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P220 { A_SEQUENCE_OF(struct NGAP_RecommendedRANNodesForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P219_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P220 { +} NGAP_ProtocolExtensionContainer_9625P220_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P221 { A_SEQUENCE_OF(struct NGAP_RecommendedRANNodeItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P220_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P221 { +} NGAP_ProtocolExtensionContainer_9625P221_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P222 { A_SEQUENCE_OF(struct NGAP_RedundantPDUSessionInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P221_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P222 { +} NGAP_ProtocolExtensionContainer_9625P222_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P223 { A_SEQUENCE_OF(struct NGAP_RIMInformationTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P222_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P223 { +} NGAP_ProtocolExtensionContainer_9625P223_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P224 { A_SEQUENCE_OF(struct NGAP_RIMInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P223_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P224 { +} NGAP_ProtocolExtensionContainer_9625P224_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P225 { A_SEQUENCE_OF(struct NGAP_ScheduledCommunicationTime_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P224_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P225 { +} NGAP_ProtocolExtensionContainer_9625P225_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P226 { A_SEQUENCE_OF(struct NGAP_SecondaryRATUsageInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P225_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P226 { +} NGAP_ProtocolExtensionContainer_9625P226_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P227 { A_SEQUENCE_OF(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P226_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P227 { +} NGAP_ProtocolExtensionContainer_9625P227_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P228 { A_SEQUENCE_OF(struct NGAP_SecurityContext_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P227_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P228 { +} NGAP_ProtocolExtensionContainer_9625P228_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P229 { A_SEQUENCE_OF(struct NGAP_SecurityIndication_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P228_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P229 { +} NGAP_ProtocolExtensionContainer_9625P229_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P230 { A_SEQUENCE_OF(struct NGAP_SecurityResult_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P229_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P230 { +} NGAP_ProtocolExtensionContainer_9625P230_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P231 { A_SEQUENCE_OF(struct NGAP_SensorMeasurementConfiguration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P230_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P231 { +} NGAP_ProtocolExtensionContainer_9625P231_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P232 { A_SEQUENCE_OF(struct NGAP_SensorMeasConfigNameItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P231_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P232 { +} NGAP_ProtocolExtensionContainer_9625P232_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P233 { A_SEQUENCE_OF(struct NGAP_ServedGUAMIItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P232_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P233 { +} NGAP_ProtocolExtensionContainer_9625P233_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P234 { A_SEQUENCE_OF(struct NGAP_ServiceAreaInformation_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P233_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P234 { +} NGAP_ProtocolExtensionContainer_9625P234_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P235 { A_SEQUENCE_OF(struct NGAP_SliceOverloadItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P234_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P235 { +} NGAP_ProtocolExtensionContainer_9625P235_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P236 { A_SEQUENCE_OF(struct NGAP_SliceSupportItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P235_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P236 { +} NGAP_ProtocolExtensionContainer_9625P236_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P237 { A_SEQUENCE_OF(struct NGAP_SNPN_MobilityInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P236_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P237 { +} NGAP_ProtocolExtensionContainer_9625P237_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P238 { A_SEQUENCE_OF(struct NGAP_S_NSSAI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P237_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P238 { +} NGAP_ProtocolExtensionContainer_9625P238_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P239 { A_SEQUENCE_OF(struct NGAP_SONConfigurationTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P238_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P239 { +} NGAP_ProtocolExtensionContainer_9625P239_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P240 { A_SEQUENCE_OF(struct NGAP_SONInformationReply_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P239_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P240 { +} NGAP_ProtocolExtensionContainer_9625P240_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P241 { A_SEQUENCE_OF(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P240_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P241 { +} NGAP_ProtocolExtensionContainer_9625P241_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P242 { A_SEQUENCE_OF(struct NGAP_SourceRANNodeID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P241_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P242 { +} NGAP_ProtocolExtensionContainer_9625P242_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P243 { A_SEQUENCE_OF(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P242_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P243 { +} NGAP_ProtocolExtensionContainer_9625P243_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P244 { A_SEQUENCE_OF(struct NGAP_SupportedTAItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P243_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P244 { +} NGAP_ProtocolExtensionContainer_9625P244_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P245 { A_SEQUENCE_OF(struct NGAP_TAI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P244_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P245 { +} NGAP_ProtocolExtensionContainer_9625P245_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P246 { A_SEQUENCE_OF(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P245_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P246 { +} NGAP_ProtocolExtensionContainer_9625P246_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P247 { A_SEQUENCE_OF(struct NGAP_TAIBroadcastNR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P246_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P247 { +} NGAP_ProtocolExtensionContainer_9625P247_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P248 { A_SEQUENCE_OF(struct NGAP_TAICancelledEUTRA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P247_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P248 { +} NGAP_ProtocolExtensionContainer_9625P248_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P249 { A_SEQUENCE_OF(struct NGAP_TAICancelledNR_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P248_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P249 { +} NGAP_ProtocolExtensionContainer_9625P249_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P250 { A_SEQUENCE_OF(struct NGAP_TAIListForInactiveItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P249_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P250 { +} NGAP_ProtocolExtensionContainer_9625P250_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P251 { A_SEQUENCE_OF(struct NGAP_TAIListForPagingItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P250_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P251 { +} NGAP_ProtocolExtensionContainer_9625P251_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P252 { A_SEQUENCE_OF(struct NGAP_TargeteNB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P251_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P252 { +} NGAP_ProtocolExtensionContainer_9625P252_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P253 { A_SEQUENCE_OF(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P252_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P253 { +} NGAP_ProtocolExtensionContainer_9625P253_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P254 { A_SEQUENCE_OF(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P253_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P254 { +} NGAP_ProtocolExtensionContainer_9625P254_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P255 { A_SEQUENCE_OF(struct NGAP_TargetRANNodeID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P254_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P255 { +} NGAP_ProtocolExtensionContainer_9625P255_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P256 { A_SEQUENCE_OF(struct NGAP_TargetRNC_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P255_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P256 { +} NGAP_ProtocolExtensionContainer_9625P256_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P257 { A_SEQUENCE_OF(struct NGAP_TNLAssociationItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P256_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P257 { +} NGAP_ProtocolExtensionContainer_9625P257_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P258 { A_SEQUENCE_OF(struct NGAP_TooearlyIntersystemHO_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P257_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P258 { +} NGAP_ProtocolExtensionContainer_9625P258_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P259 { A_SEQUENCE_OF(struct NGAP_TraceActivation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P258_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P259 { +} NGAP_ProtocolExtensionContainer_9625P259_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P260 { A_SEQUENCE_OF(struct NGAP_TAIBasedMDT_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P259_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P260 { +} NGAP_ProtocolExtensionContainer_9625P260_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P261 { A_SEQUENCE_OF(struct NGAP_TABasedMDT_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P260_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P261 { +} NGAP_ProtocolExtensionContainer_9625P261_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P262 { A_SEQUENCE_OF(struct NGAP_TSCAssistanceInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P261_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P262 { +} NGAP_ProtocolExtensionContainer_9625P262_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P263 { A_SEQUENCE_OF(struct NGAP_TSCTrafficCharacteristics_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P262_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P263 { +} NGAP_ProtocolExtensionContainer_9625P263_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P264 { A_SEQUENCE_OF(struct NGAP_UEAggregateMaximumBitRate_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P263_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P264 { +} NGAP_ProtocolExtensionContainer_9625P264_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P265 { A_SEQUENCE_OF(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P264_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P265 { +} NGAP_ProtocolExtensionContainer_9625P265_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P266 { A_SEQUENCE_OF(struct NGAP_UEContextResumeRequestTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P265_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P266 { +} NGAP_ProtocolExtensionContainer_9625P266_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P267 { A_SEQUENCE_OF(struct NGAP_UEContextResumeResponseTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P266_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P267 { +} NGAP_ProtocolExtensionContainer_9625P267_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P268 { A_SEQUENCE_OF(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P267_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P268 { +} NGAP_ProtocolExtensionContainer_9625P268_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P269 { A_SEQUENCE_OF(struct NGAP_UE_DifferentiationInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P268_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P269 { +} NGAP_ProtocolExtensionContainer_9625P269_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P270 { A_SEQUENCE_OF(struct NGAP_UE_NGAP_ID_pair_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P269_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P270 { +} NGAP_ProtocolExtensionContainer_9625P270_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P271 { A_SEQUENCE_OF(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P270_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P271 { +} NGAP_ProtocolExtensionContainer_9625P271_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P272 { A_SEQUENCE_OF(struct NGAP_UERadioCapabilityForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P271_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P272 { +} NGAP_ProtocolExtensionContainer_9625P272_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P273 { A_SEQUENCE_OF(struct NGAP_UESecurityCapabilities_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P272_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P273 { +} NGAP_ProtocolExtensionContainer_9625P273_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P274 { A_SEQUENCE_OF(struct NGAP_UL_CP_SecurityInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P273_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P274 { +} NGAP_ProtocolExtensionContainer_9625P274_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P275 { A_SEQUENCE_OF(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P274_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P275 { +} NGAP_ProtocolExtensionContainer_9625P275_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P276 { A_SEQUENCE_OF(struct NGAP_UnavailableGUAMIItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P275_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P276 { +} NGAP_ProtocolExtensionContainer_9625P276_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P277 { A_SEQUENCE_OF(struct NGAP_UPTransportLayerInformationItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P276_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P277 { +} NGAP_ProtocolExtensionContainer_9625P277_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P278 { A_SEQUENCE_OF(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P277_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P278 { +} NGAP_ProtocolExtensionContainer_9625P278_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P279 { A_SEQUENCE_OF(struct NGAP_UserLocationInformationEUTRA_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P278_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P279 { +} NGAP_ProtocolExtensionContainer_9625P279_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P280 { A_SEQUENCE_OF(struct NGAP_UserLocationInformationN3IWF_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P279_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P280 { +} NGAP_ProtocolExtensionContainer_9625P280_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P281 { A_SEQUENCE_OF(struct NGAP_UserLocationInformationTNGF_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P280_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P281 { +} NGAP_ProtocolExtensionContainer_9625P281_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P282 { A_SEQUENCE_OF(struct NGAP_UserLocationInformationTWIF_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P281_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P282 { +} NGAP_ProtocolExtensionContainer_9625P282_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P283 { A_SEQUENCE_OF(struct NGAP_UserLocationInformationNR_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P282_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P283 { +} NGAP_ProtocolExtensionContainer_9625P283_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P284 { A_SEQUENCE_OF(struct NGAP_UserPlaneSecurityInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P283_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P284 { +} NGAP_ProtocolExtensionContainer_9625P284_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P285 { A_SEQUENCE_OF(struct NGAP_VolumeTimedReport_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P284_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P285 { +} NGAP_ProtocolExtensionContainer_9625P285_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P286 { A_SEQUENCE_OF(struct NGAP_WLANMeasurementConfiguration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P285_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P286 { +} NGAP_ProtocolExtensionContainer_9625P286_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P287 { A_SEQUENCE_OF(struct NGAP_WLANMeasConfigNameItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P286_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P287 { +} NGAP_ProtocolExtensionContainer_9625P287_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P288 { A_SEQUENCE_OF(struct NGAP_WUS_Assistance_Information_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P287_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P288 { +} NGAP_ProtocolExtensionContainer_9625P288_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P289 { A_SEQUENCE_OF(struct NGAP_XnExtTLA_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P288_t; -typedef struct NGAP_ProtocolExtensionContainer_9571P289 { +} NGAP_ProtocolExtensionContainer_9625P289_t; +typedef struct NGAP_ProtocolExtensionContainer_9625P290 { A_SEQUENCE_OF(struct NGAP_XnTNLConfigurationInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolExtensionContainer_9571P289_t; +} NGAP_ProtocolExtensionContainer_9625P290_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P0; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P0_specs_1; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P0_1[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P0_constr_1; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P1; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P1_specs_3; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P1_3[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P1_constr_3; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P2; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P2_specs_5; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P2_5[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P2_constr_5; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P3; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P3_specs_7; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P3_7[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P3_constr_7; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P4; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P4_specs_9; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P4_9[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P4_constr_9; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P5; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P5_specs_11; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P5_11[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P5_constr_11; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P6; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P6_specs_13; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P6_13[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P6_constr_13; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P7; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P7_specs_15; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P7_15[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P7_constr_15; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P8; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P8_specs_17; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P8_17[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P8_constr_17; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P9; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P9_specs_19; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P9_19[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P9_constr_19; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P10; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P10_specs_21; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P10_21[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P10_constr_21; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P11; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P11_specs_23; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P11_23[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P11_constr_23; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P12; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P12_specs_25; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P12_25[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P12_constr_25; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P13; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P13_specs_27; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P13_27[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P13_constr_27; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P14; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P14_specs_29; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P14_29[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P14_constr_29; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P15; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P15_specs_31; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P15_31[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P15_constr_31; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P16; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P16_specs_33; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P16_33[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P16_constr_33; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P17; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P17_specs_35; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P17_35[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P17_constr_35; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P18; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P18_specs_37; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P18_37[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P18_constr_37; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P19; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P19_specs_39; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P19_39[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P19_constr_39; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P20; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P20_specs_41; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P20_41[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P20_constr_41; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P21; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P21_specs_43; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P21_43[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P21_constr_43; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P22; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P22_specs_45; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P22_45[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P22_constr_45; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P23; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P23_specs_47; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P23_47[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P23_constr_47; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P24; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P24_specs_49; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P24_49[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P24_constr_49; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P25; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P25_specs_51; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P25_51[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P25_constr_51; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P26; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P26_specs_53; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P26_53[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P26_constr_53; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P27; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P27_specs_55; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P27_55[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P27_constr_55; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P28; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P28_specs_57; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P28_57[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P28_constr_57; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P29; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P29_specs_59; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P29_59[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P29_constr_59; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P30; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P30_specs_61; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P30_61[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P30_constr_61; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P31; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P31_specs_63; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P31_63[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P31_constr_63; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P32; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P32_specs_65; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P32_65[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P32_constr_65; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P33; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P33_specs_67; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P33_67[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P33_constr_67; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P34; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P34_specs_69; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P34_69[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P34_constr_69; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P35; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P35_specs_71; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P35_71[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P35_constr_71; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P36; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P36_specs_73; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P36_73[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P36_constr_73; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P37; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P37_specs_75; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P37_75[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P37_constr_75; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P38; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P38_specs_77; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P38_77[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P38_constr_77; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P39; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P39_specs_79; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P39_79[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P39_constr_79; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P40; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P40_specs_81; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P40_81[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P40_constr_81; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P41; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P41_specs_83; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P41_83[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P41_constr_83; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P42; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P42_specs_85; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P42_85[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P42_constr_85; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P43; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P43_specs_87; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P43_87[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P43_constr_87; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P44; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P44_specs_89; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P44_89[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P44_constr_89; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P45; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P45_specs_91; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P45_91[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P45_constr_91; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P46; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P46_specs_93; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P46_93[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P46_constr_93; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P47; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P47_specs_95; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P47_95[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P47_constr_95; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P48; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P48_specs_97; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P48_97[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P48_constr_97; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P49; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P49_specs_99; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P49_99[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P49_constr_99; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P50; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P50_specs_101; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P50_101[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P50_constr_101; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P51; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P51_specs_103; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P51_103[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P51_constr_103; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P52; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P52_specs_105; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P52_105[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P52_constr_105; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P53; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P53_specs_107; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P53_107[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P53_constr_107; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P54; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P54_specs_109; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P54_109[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P54_constr_109; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P55; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P55_specs_111; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P55_111[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P55_constr_111; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P56; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P56_specs_113; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P56_113[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P56_constr_113; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P57; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P57_specs_115; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P57_115[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P57_constr_115; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P58; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P58_specs_117; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P58_117[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P58_constr_117; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P59; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P59_specs_119; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P59_119[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P59_constr_119; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P60; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P60_specs_121; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P60_121[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P60_constr_121; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P61; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P61_specs_123; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P61_123[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P61_constr_123; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P62; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P62_specs_125; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P62_125[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P62_constr_125; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P63; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P63_specs_127; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P63_127[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P63_constr_127; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P64; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P64_specs_129; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P64_129[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P64_constr_129; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P65; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P65_specs_131; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P65_131[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P65_constr_131; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P66; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P66_specs_133; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P66_133[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P66_constr_133; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P67; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P67_specs_135; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P67_135[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P67_constr_135; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P68; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P68_specs_137; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P68_137[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P68_constr_137; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P69; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P69_specs_139; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P69_139[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P69_constr_139; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P70; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P70_specs_141; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P70_141[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P70_constr_141; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P71; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P71_specs_143; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P71_143[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P71_constr_143; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P72; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P72_specs_145; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P72_145[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P72_constr_145; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P73; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P73_specs_147; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P73_147[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P73_constr_147; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P74; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P74_specs_149; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P74_149[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P74_constr_149; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P75; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P75_specs_151; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P75_151[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P75_constr_151; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P76; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P76_specs_153; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P76_153[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P76_constr_153; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P77; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P77_specs_155; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P77_155[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P77_constr_155; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P78; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P78_specs_157; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P78_157[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P78_constr_157; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P79; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P79_specs_159; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P79_159[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P79_constr_159; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P80; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P80_specs_161; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P80_161[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P80_constr_161; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P81; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P81_specs_163; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P81_163[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P81_constr_163; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P82; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P82_specs_165; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P82_165[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P82_constr_165; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P83; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P83_specs_167; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P83_167[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P83_constr_167; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P84; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P84_specs_169; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P84_169[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P84_constr_169; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P85; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P85_specs_171; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P85_171[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P85_constr_171; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P86; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P86_specs_173; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P86_173[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P86_constr_173; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P87; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P87_specs_175; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P87_175[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P87_constr_175; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P88; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P88_specs_177; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P88_177[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P88_constr_177; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P89; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P89_specs_179; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P89_179[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P89_constr_179; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P90; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P90_specs_181; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P90_181[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P90_constr_181; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P91; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P91_specs_183; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P91_183[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P91_constr_183; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P92; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P92_specs_185; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P92_185[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P92_constr_185; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P93; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P93_specs_187; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P93_187[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P93_constr_187; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P94; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P94_specs_189; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P94_189[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P94_constr_189; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P95; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P95_specs_191; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P95_191[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P95_constr_191; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P96; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P96_specs_193; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P96_193[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P96_constr_193; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P97; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P97_specs_195; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P97_195[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P97_constr_195; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P98; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P98_specs_197; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P98_197[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P98_constr_197; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P99; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P99_specs_199; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P99_199[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P99_constr_199; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P100; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P100_specs_201; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P100_201[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P100_constr_201; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P101; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P101_specs_203; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P101_203[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P101_constr_203; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P102; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P102_specs_205; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P102_205[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P102_constr_205; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P103; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P103_specs_207; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P103_207[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P103_constr_207; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P104; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P104_specs_209; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P104_209[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P104_constr_209; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P105; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P105_specs_211; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P105_211[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P105_constr_211; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P106; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P106_specs_213; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P106_213[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P106_constr_213; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P107; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P107_specs_215; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P107_215[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P107_constr_215; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P108; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P108_specs_217; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P108_217[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P108_constr_217; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P109; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P109_specs_219; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P109_219[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P109_constr_219; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P110; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P110_specs_221; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P110_221[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P110_constr_221; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P111; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P111_specs_223; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P111_223[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P111_constr_223; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P112; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P112_specs_225; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P112_225[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P112_constr_225; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P113; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P113_specs_227; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P113_227[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P113_constr_227; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P114; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P114_specs_229; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P114_229[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P114_constr_229; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P115; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P115_specs_231; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P115_231[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P115_constr_231; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P116; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P116_specs_233; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P116_233[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P116_constr_233; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P117; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P117_specs_235; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P117_235[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P117_constr_235; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P118; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P118_specs_237; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P118_237[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P118_constr_237; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P119; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P119_specs_239; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P119_239[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P119_constr_239; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P120; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P120_specs_241; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P120_241[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P120_constr_241; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P121; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P121_specs_243; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P121_243[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P121_constr_243; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P122; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P122_specs_245; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P122_245[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P122_constr_245; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P123; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P123_specs_247; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P123_247[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P123_constr_247; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P124; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P124_specs_249; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P124_249[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P124_constr_249; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P125; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P125_specs_251; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P125_251[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P125_constr_251; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P126; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P126_specs_253; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P126_253[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P126_constr_253; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P127; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P127_specs_255; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P127_255[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P127_constr_255; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P128; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P128_specs_257; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P128_257[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P128_constr_257; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P129; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P129_specs_259; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P129_259[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P129_constr_259; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P130; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P130_specs_261; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P130_261[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P130_constr_261; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P131; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P131_specs_263; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P131_263[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P131_constr_263; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P132; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P132_specs_265; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P132_265[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P132_constr_265; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P133; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P133_specs_267; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P133_267[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P133_constr_267; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P134; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P134_specs_269; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P134_269[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P134_constr_269; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P135; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P135_specs_271; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P135_271[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P135_constr_271; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P136; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P136_specs_273; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P136_273[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P136_constr_273; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P137; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P137_specs_275; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P137_275[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P137_constr_275; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P138; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P138_specs_277; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P138_277[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P138_constr_277; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P139; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P139_specs_279; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P139_279[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P139_constr_279; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P140; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P140_specs_281; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P140_281[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P140_constr_281; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P141; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P141_specs_283; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P141_283[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P141_constr_283; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P142; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P142_specs_285; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P142_285[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P142_constr_285; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P143; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P143_specs_287; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P143_287[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P143_constr_287; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P144; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P144_specs_289; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P144_289[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P144_constr_289; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P145; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P145_specs_291; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P145_291[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P145_constr_291; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P146; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P146_specs_293; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P146_293[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P146_constr_293; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P147; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P147_specs_295; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P147_295[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P147_constr_295; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P148; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P148_specs_297; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P148_297[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P148_constr_297; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P149; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P149_specs_299; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P149_299[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P149_constr_299; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P150; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P150_specs_301; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P150_301[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P150_constr_301; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P151; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P151_specs_303; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P151_303[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P151_constr_303; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P152; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P152_specs_305; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P152_305[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P152_constr_305; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P153; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P153_specs_307; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P153_307[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P153_constr_307; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P154; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P154_specs_309; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P154_309[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P154_constr_309; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P155; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P155_specs_311; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P155_311[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P155_constr_311; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P156; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P156_specs_313; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P156_313[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P156_constr_313; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P157; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P157_specs_315; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P157_315[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P157_constr_315; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P158; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P158_specs_317; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P158_317[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P158_constr_317; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P159; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P159_specs_319; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P159_319[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P159_constr_319; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P160; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P160_specs_321; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P160_321[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P160_constr_321; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P161; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P161_specs_323; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P161_323[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P161_constr_323; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P162; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P162_specs_325; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P162_325[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P162_constr_325; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P163; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P163_specs_327; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P163_327[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P163_constr_327; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P164; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P164_specs_329; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P164_329[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P164_constr_329; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P165; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P165_specs_331; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P165_331[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P165_constr_331; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P166; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P166_specs_333; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P166_333[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P166_constr_333; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P167; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P167_specs_335; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P167_335[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P167_constr_335; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P168; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P168_specs_337; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P168_337[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P168_constr_337; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P169; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P169_specs_339; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P169_339[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P169_constr_339; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P170; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P170_specs_341; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P170_341[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P170_constr_341; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P171; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P171_specs_343; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P171_343[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P171_constr_343; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P172; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P172_specs_345; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P172_345[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P172_constr_345; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P173; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P173_specs_347; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P173_347[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P173_constr_347; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P174; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P174_specs_349; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P174_349[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P174_constr_349; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P175; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P175_specs_351; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P175_351[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P175_constr_351; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P176; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P176_specs_353; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P176_353[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P176_constr_353; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P177; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P177_specs_355; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P177_355[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P177_constr_355; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P178; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P178_specs_357; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P178_357[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P178_constr_357; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P179; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P179_specs_359; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P179_359[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P179_constr_359; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P180; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P180_specs_361; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P180_361[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P180_constr_361; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P181; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P181_specs_363; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P181_363[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P181_constr_363; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P182; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P182_specs_365; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P182_365[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P182_constr_365; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P183; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P183_specs_367; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P183_367[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P183_constr_367; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P184; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P184_specs_369; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P184_369[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P184_constr_369; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P185; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P185_specs_371; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P185_371[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P185_constr_371; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P186; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P186_specs_373; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P186_373[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P186_constr_373; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P187; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P187_specs_375; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P187_375[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P187_constr_375; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P188; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P188_specs_377; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P188_377[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P188_constr_377; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P189; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P189_specs_379; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P189_379[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P189_constr_379; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P190; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P190_specs_381; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P190_381[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P190_constr_381; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P191; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P191_specs_383; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P191_383[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P191_constr_383; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P192; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P192_specs_385; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P192_385[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P192_constr_385; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P193; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P193_specs_387; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P193_387[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P193_constr_387; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P194; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P194_specs_389; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P194_389[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P194_constr_389; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P195; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P195_specs_391; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P195_391[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P195_constr_391; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P196; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P196_specs_393; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P196_393[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P196_constr_393; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P197; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P197_specs_395; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P197_395[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P197_constr_395; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P198; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P198_specs_397; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P198_397[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P198_constr_397; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P199; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P199_specs_399; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P199_399[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P199_constr_399; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P200; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P200_specs_401; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P200_401[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P200_constr_401; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P201; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P201_specs_403; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P201_403[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P201_constr_403; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P202; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P202_specs_405; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P202_405[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P202_constr_405; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P203; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P203_specs_407; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P203_407[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P203_constr_407; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P204; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P204_specs_409; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P204_409[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P204_constr_409; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P205; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P205_specs_411; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P205_411[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P205_constr_411; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P206; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P206_specs_413; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P206_413[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P206_constr_413; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P207; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P207_specs_415; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P207_415[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P207_constr_415; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P208; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P208_specs_417; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P208_417[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P208_constr_417; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P209; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P209_specs_419; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P209_419[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P209_constr_419; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P210; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P210_specs_421; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P210_421[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P210_constr_421; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P211; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P211_specs_423; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P211_423[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P211_constr_423; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P212; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P212_specs_425; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P212_425[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P212_constr_425; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P213; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P213_specs_427; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P213_427[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P213_constr_427; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P214; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P214_specs_429; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P214_429[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P214_constr_429; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P215; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P215_specs_431; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P215_431[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P215_constr_431; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P216; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P216_specs_433; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P216_433[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P216_constr_433; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P217; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P217_specs_435; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P217_435[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P217_constr_435; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P218; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P218_specs_437; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P218_437[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P218_constr_437; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P219; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P219_specs_439; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P219_439[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P219_constr_439; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P220; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P220_specs_441; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P220_441[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P220_constr_441; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P221; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P221_specs_443; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P221_443[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P221_constr_443; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P222; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P222_specs_445; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P222_445[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P222_constr_445; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P223; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P223_specs_447; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P223_447[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P223_constr_447; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P224; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P224_specs_449; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P224_449[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P224_constr_449; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P225; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P225_specs_451; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P225_451[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P225_constr_451; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P226; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P226_specs_453; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P226_453[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P226_constr_453; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P227; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P227_specs_455; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P227_455[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P227_constr_455; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P228; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P228_specs_457; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P228_457[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P228_constr_457; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P229; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P229_specs_459; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P229_459[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P229_constr_459; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P230; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P230_specs_461; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P230_461[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P230_constr_461; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P231; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P231_specs_463; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P231_463[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P231_constr_463; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P232; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P232_specs_465; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P232_465[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P232_constr_465; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P233; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P233_specs_467; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P233_467[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P233_constr_467; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P234; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P234_specs_469; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P234_469[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P234_constr_469; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P235; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P235_specs_471; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P235_471[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P235_constr_471; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P236; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P236_specs_473; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P236_473[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P236_constr_473; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P237; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P237_specs_475; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P237_475[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P237_constr_475; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P238; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P238_specs_477; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P238_477[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P238_constr_477; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P239; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P239_specs_479; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P239_479[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P239_constr_479; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P240; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P240_specs_481; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P240_481[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P240_constr_481; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P241; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P241_specs_483; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P241_483[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P241_constr_483; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P242; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P242_specs_485; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P242_485[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P242_constr_485; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P243; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P243_specs_487; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P243_487[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P243_constr_487; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P244; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P244_specs_489; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P244_489[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P244_constr_489; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P245; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P245_specs_491; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P245_491[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P245_constr_491; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P246; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P246_specs_493; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P246_493[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P246_constr_493; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P247; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P247_specs_495; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P247_495[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P247_constr_495; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P248; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P248_specs_497; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P248_497[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P248_constr_497; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P249; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P249_specs_499; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P249_499[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P249_constr_499; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P250; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P250_specs_501; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P250_501[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P250_constr_501; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P251; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P251_specs_503; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P251_503[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P251_constr_503; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P252; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P252_specs_505; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P252_505[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P252_constr_505; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P253; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P253_specs_507; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P253_507[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P253_constr_507; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P254; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P254_specs_509; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P254_509[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P254_constr_509; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P255; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P255_specs_511; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P255_511[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P255_constr_511; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P256; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P256_specs_513; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P256_513[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P256_constr_513; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P257; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P257_specs_515; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P257_515[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P257_constr_515; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P258; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P258_specs_517; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P258_517[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P258_constr_517; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P259; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P259_specs_519; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P259_519[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P259_constr_519; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P260; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P260_specs_521; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P260_521[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P260_constr_521; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P261; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P261_specs_523; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P261_523[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P261_constr_523; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P262; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P262_specs_525; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P262_525[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P262_constr_525; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P263; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P263_specs_527; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P263_527[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P263_constr_527; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P264; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P264_specs_529; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P264_529[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P264_constr_529; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P265; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P265_specs_531; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P265_531[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P265_constr_531; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P266; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P266_specs_533; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P266_533[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P266_constr_533; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P267; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P267_specs_535; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P267_535[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P267_constr_535; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P268; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P268_specs_537; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P268_537[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P268_constr_537; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P269; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P269_specs_539; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P269_539[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P269_constr_539; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P270; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P270_specs_541; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P270_541[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P270_constr_541; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P271; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P271_specs_543; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P271_543[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P271_constr_543; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P272; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P272_specs_545; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P272_545[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P272_constr_545; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P273; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P273_specs_547; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P273_547[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P273_constr_547; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P274; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P274_specs_549; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P274_549[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P274_constr_549; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P275; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P275_specs_551; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P275_551[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P275_constr_551; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P276; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P276_specs_553; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P276_553[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P276_constr_553; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P277; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P277_specs_555; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P277_555[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P277_constr_555; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P278; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P278_specs_557; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P278_557[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P278_constr_557; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P279; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P279_specs_559; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P279_559[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P279_constr_559; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P280; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P280_specs_561; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P280_561[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P280_constr_561; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P281; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P281_specs_563; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P281_563[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P281_constr_563; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P282; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P282_specs_565; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P282_565[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P282_constr_565; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P283; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P283_specs_567; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P283_567[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P283_constr_567; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P284; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P284_specs_569; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P284_569[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P284_constr_569; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P285; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P285_specs_571; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P285_571[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P285_constr_571; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P286; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P286_specs_573; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P286_573[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P286_constr_573; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P287; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P287_specs_575; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P287_575[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P287_constr_575; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P288; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P288_specs_577; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P288_577[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P288_constr_577; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9571P289; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9571P289_specs_579; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9571P289_579[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9571P289_constr_579; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P0; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P0_specs_1; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P0_1[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P0_constr_1; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P1; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P1_specs_3; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P1_3[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P1_constr_3; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P2; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P2_specs_5; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P2_5[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P2_constr_5; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P3; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P3_specs_7; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P3_7[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P3_constr_7; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P4; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P4_specs_9; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P4_9[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P4_constr_9; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P5; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P5_specs_11; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P5_11[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P5_constr_11; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P6; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P6_specs_13; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P6_13[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P6_constr_13; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P7; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P7_specs_15; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P7_15[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P7_constr_15; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P8; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P8_specs_17; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P8_17[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P8_constr_17; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P9; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P9_specs_19; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P9_19[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P9_constr_19; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P10; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P10_specs_21; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P10_21[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P10_constr_21; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P11; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P11_specs_23; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P11_23[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P11_constr_23; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P12; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P12_specs_25; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P12_25[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P12_constr_25; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P13; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P13_specs_27; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P13_27[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P13_constr_27; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P14; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P14_specs_29; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P14_29[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P14_constr_29; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P15; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P15_specs_31; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P15_31[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P15_constr_31; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P16; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P16_specs_33; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P16_33[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P16_constr_33; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P17; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P17_specs_35; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P17_35[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P17_constr_35; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P18; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P18_specs_37; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P18_37[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P18_constr_37; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P19; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P19_specs_39; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P19_39[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P19_constr_39; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P20; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P20_specs_41; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P20_41[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P20_constr_41; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P21; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P21_specs_43; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P21_43[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P21_constr_43; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P22; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P22_specs_45; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P22_45[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P22_constr_45; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P23; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P23_specs_47; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P23_47[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P23_constr_47; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P24; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P24_specs_49; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P24_49[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P24_constr_49; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P25; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P25_specs_51; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P25_51[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P25_constr_51; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P26; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P26_specs_53; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P26_53[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P26_constr_53; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P27; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P27_specs_55; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P27_55[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P27_constr_55; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P28; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P28_specs_57; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P28_57[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P28_constr_57; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P29; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P29_specs_59; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P29_59[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P29_constr_59; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P30; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P30_specs_61; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P30_61[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P30_constr_61; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P31; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P31_specs_63; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P31_63[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P31_constr_63; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P32; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P32_specs_65; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P32_65[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P32_constr_65; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P33; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P33_specs_67; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P33_67[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P33_constr_67; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P34; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P34_specs_69; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P34_69[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P34_constr_69; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P35; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P35_specs_71; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P35_71[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P35_constr_71; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P36; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P36_specs_73; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P36_73[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P36_constr_73; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P37; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P37_specs_75; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P37_75[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P37_constr_75; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P38; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P38_specs_77; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P38_77[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P38_constr_77; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P39; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P39_specs_79; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P39_79[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P39_constr_79; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P40; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P40_specs_81; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P40_81[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P40_constr_81; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P41; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P41_specs_83; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P41_83[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P41_constr_83; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P42; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P42_specs_85; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P42_85[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P42_constr_85; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P43; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P43_specs_87; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P43_87[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P43_constr_87; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P44; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P44_specs_89; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P44_89[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P44_constr_89; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P45; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P45_specs_91; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P45_91[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P45_constr_91; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P46; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P46_specs_93; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P46_93[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P46_constr_93; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P47; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P47_specs_95; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P47_95[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P47_constr_95; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P48; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P48_specs_97; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P48_97[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P48_constr_97; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P49; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P49_specs_99; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P49_99[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P49_constr_99; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P50; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P50_specs_101; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P50_101[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P50_constr_101; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P51; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P51_specs_103; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P51_103[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P51_constr_103; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P52; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P52_specs_105; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P52_105[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P52_constr_105; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P53; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P53_specs_107; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P53_107[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P53_constr_107; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P54; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P54_specs_109; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P54_109[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P54_constr_109; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P55; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P55_specs_111; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P55_111[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P55_constr_111; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P56; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P56_specs_113; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P56_113[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P56_constr_113; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P57; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P57_specs_115; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P57_115[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P57_constr_115; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P58; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P58_specs_117; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P58_117[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P58_constr_117; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P59; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P59_specs_119; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P59_119[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P59_constr_119; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P60; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P60_specs_121; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P60_121[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P60_constr_121; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P61; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P61_specs_123; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P61_123[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P61_constr_123; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P62; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P62_specs_125; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P62_125[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P62_constr_125; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P63; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P63_specs_127; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P63_127[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P63_constr_127; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P64; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P64_specs_129; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P64_129[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P64_constr_129; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P65; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P65_specs_131; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P65_131[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P65_constr_131; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P66; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P66_specs_133; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P66_133[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P66_constr_133; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P67; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P67_specs_135; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P67_135[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P67_constr_135; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P68; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P68_specs_137; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P68_137[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P68_constr_137; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P69; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P69_specs_139; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P69_139[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P69_constr_139; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P70; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P70_specs_141; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P70_141[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P70_constr_141; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P71; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P71_specs_143; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P71_143[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P71_constr_143; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P72; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P72_specs_145; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P72_145[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P72_constr_145; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P73; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P73_specs_147; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P73_147[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P73_constr_147; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P74; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P74_specs_149; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P74_149[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P74_constr_149; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P75; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P75_specs_151; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P75_151[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P75_constr_151; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P76; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P76_specs_153; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P76_153[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P76_constr_153; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P77; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P77_specs_155; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P77_155[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P77_constr_155; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P78; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P78_specs_157; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P78_157[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P78_constr_157; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P79; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P79_specs_159; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P79_159[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P79_constr_159; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P80; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P80_specs_161; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P80_161[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P80_constr_161; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P81; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P81_specs_163; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P81_163[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P81_constr_163; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P82; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P82_specs_165; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P82_165[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P82_constr_165; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P83; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P83_specs_167; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P83_167[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P83_constr_167; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P84; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P84_specs_169; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P84_169[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P84_constr_169; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P85; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P85_specs_171; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P85_171[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P85_constr_171; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P86; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P86_specs_173; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P86_173[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P86_constr_173; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P87; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P87_specs_175; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P87_175[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P87_constr_175; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P88; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P88_specs_177; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P88_177[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P88_constr_177; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P89; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P89_specs_179; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P89_179[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P89_constr_179; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P90; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P90_specs_181; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P90_181[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P90_constr_181; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P91; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P91_specs_183; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P91_183[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P91_constr_183; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P92; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P92_specs_185; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P92_185[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P92_constr_185; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P93; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P93_specs_187; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P93_187[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P93_constr_187; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P94; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P94_specs_189; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P94_189[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P94_constr_189; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P95; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P95_specs_191; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P95_191[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P95_constr_191; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P96; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P96_specs_193; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P96_193[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P96_constr_193; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P97; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P97_specs_195; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P97_195[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P97_constr_195; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P98; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P98_specs_197; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P98_197[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P98_constr_197; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P99; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P99_specs_199; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P99_199[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P99_constr_199; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P100; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P100_specs_201; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P100_201[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P100_constr_201; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P101; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P101_specs_203; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P101_203[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P101_constr_203; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P102; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P102_specs_205; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P102_205[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P102_constr_205; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P103; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P103_specs_207; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P103_207[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P103_constr_207; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P104; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P104_specs_209; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P104_209[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P104_constr_209; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P105; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P105_specs_211; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P105_211[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P105_constr_211; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P106; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P106_specs_213; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P106_213[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P106_constr_213; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P107; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P107_specs_215; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P107_215[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P107_constr_215; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P108; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P108_specs_217; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P108_217[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P108_constr_217; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P109; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P109_specs_219; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P109_219[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P109_constr_219; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P110; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P110_specs_221; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P110_221[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P110_constr_221; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P111; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P111_specs_223; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P111_223[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P111_constr_223; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P112; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P112_specs_225; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P112_225[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P112_constr_225; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P113; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P113_specs_227; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P113_227[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P113_constr_227; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P114; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P114_specs_229; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P114_229[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P114_constr_229; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P115; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P115_specs_231; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P115_231[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P115_constr_231; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P116; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P116_specs_233; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P116_233[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P116_constr_233; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P117; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P117_specs_235; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P117_235[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P117_constr_235; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P118; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P118_specs_237; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P118_237[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P118_constr_237; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P119; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P119_specs_239; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P119_239[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P119_constr_239; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P120; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P120_specs_241; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P120_241[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P120_constr_241; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P121; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P121_specs_243; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P121_243[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P121_constr_243; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P122; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P122_specs_245; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P122_245[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P122_constr_245; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P123; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P123_specs_247; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P123_247[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P123_constr_247; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P124; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P124_specs_249; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P124_249[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P124_constr_249; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P125; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P125_specs_251; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P125_251[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P125_constr_251; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P126; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P126_specs_253; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P126_253[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P126_constr_253; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P127; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P127_specs_255; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P127_255[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P127_constr_255; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P128; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P128_specs_257; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P128_257[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P128_constr_257; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P129; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P129_specs_259; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P129_259[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P129_constr_259; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P130; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P130_specs_261; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P130_261[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P130_constr_261; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P131; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P131_specs_263; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P131_263[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P131_constr_263; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P132; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P132_specs_265; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P132_265[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P132_constr_265; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P133; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P133_specs_267; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P133_267[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P133_constr_267; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P134; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P134_specs_269; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P134_269[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P134_constr_269; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P135; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P135_specs_271; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P135_271[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P135_constr_271; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P136; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P136_specs_273; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P136_273[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P136_constr_273; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P137; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P137_specs_275; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P137_275[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P137_constr_275; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P138; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P138_specs_277; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P138_277[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P138_constr_277; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P139; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P139_specs_279; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P139_279[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P139_constr_279; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P140; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P140_specs_281; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P140_281[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P140_constr_281; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P141; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P141_specs_283; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P141_283[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P141_constr_283; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P142; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P142_specs_285; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P142_285[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P142_constr_285; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P143; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P143_specs_287; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P143_287[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P143_constr_287; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P144; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P144_specs_289; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P144_289[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P144_constr_289; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P145; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P145_specs_291; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P145_291[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P145_constr_291; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P146; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P146_specs_293; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P146_293[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P146_constr_293; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P147; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P147_specs_295; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P147_295[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P147_constr_295; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P148; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P148_specs_297; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P148_297[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P148_constr_297; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P149; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P149_specs_299; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P149_299[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P149_constr_299; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P150; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P150_specs_301; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P150_301[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P150_constr_301; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P151; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P151_specs_303; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P151_303[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P151_constr_303; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P152; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P152_specs_305; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P152_305[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P152_constr_305; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P153; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P153_specs_307; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P153_307[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P153_constr_307; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P154; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P154_specs_309; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P154_309[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P154_constr_309; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P155; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P155_specs_311; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P155_311[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P155_constr_311; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P156; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P156_specs_313; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P156_313[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P156_constr_313; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P157; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P157_specs_315; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P157_315[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P157_constr_315; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P158; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P158_specs_317; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P158_317[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P158_constr_317; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P159; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P159_specs_319; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P159_319[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P159_constr_319; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P160; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P160_specs_321; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P160_321[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P160_constr_321; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P161; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P161_specs_323; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P161_323[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P161_constr_323; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P162; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P162_specs_325; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P162_325[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P162_constr_325; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P163; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P163_specs_327; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P163_327[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P163_constr_327; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P164; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P164_specs_329; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P164_329[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P164_constr_329; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P165; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P165_specs_331; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P165_331[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P165_constr_331; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P166; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P166_specs_333; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P166_333[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P166_constr_333; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P167; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P167_specs_335; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P167_335[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P167_constr_335; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P168; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P168_specs_337; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P168_337[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P168_constr_337; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P169; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P169_specs_339; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P169_339[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P169_constr_339; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P170; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P170_specs_341; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P170_341[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P170_constr_341; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P171; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P171_specs_343; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P171_343[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P171_constr_343; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P172; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P172_specs_345; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P172_345[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P172_constr_345; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P173; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P173_specs_347; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P173_347[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P173_constr_347; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P174; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P174_specs_349; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P174_349[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P174_constr_349; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P175; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P175_specs_351; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P175_351[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P175_constr_351; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P176; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P176_specs_353; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P176_353[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P176_constr_353; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P177; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P177_specs_355; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P177_355[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P177_constr_355; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P178; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P178_specs_357; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P178_357[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P178_constr_357; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P179; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P179_specs_359; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P179_359[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P179_constr_359; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P180; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P180_specs_361; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P180_361[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P180_constr_361; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P181; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P181_specs_363; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P181_363[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P181_constr_363; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P182; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P182_specs_365; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P182_365[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P182_constr_365; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P183; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P183_specs_367; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P183_367[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P183_constr_367; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P184; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P184_specs_369; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P184_369[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P184_constr_369; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P185; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P185_specs_371; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P185_371[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P185_constr_371; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P186; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P186_specs_373; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P186_373[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P186_constr_373; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P187; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P187_specs_375; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P187_375[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P187_constr_375; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P188; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P188_specs_377; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P188_377[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P188_constr_377; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P189; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P189_specs_379; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P189_379[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P189_constr_379; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P190; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P190_specs_381; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P190_381[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P190_constr_381; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P191; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P191_specs_383; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P191_383[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P191_constr_383; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P192; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P192_specs_385; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P192_385[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P192_constr_385; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P193; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P193_specs_387; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P193_387[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P193_constr_387; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P194; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P194_specs_389; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P194_389[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P194_constr_389; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P195; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P195_specs_391; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P195_391[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P195_constr_391; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P196; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P196_specs_393; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P196_393[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P196_constr_393; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P197; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P197_specs_395; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P197_395[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P197_constr_395; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P198; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P198_specs_397; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P198_397[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P198_constr_397; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P199; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P199_specs_399; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P199_399[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P199_constr_399; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P200; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P200_specs_401; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P200_401[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P200_constr_401; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P201; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P201_specs_403; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P201_403[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P201_constr_403; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P202; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P202_specs_405; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P202_405[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P202_constr_405; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P203; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P203_specs_407; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P203_407[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P203_constr_407; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P204; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P204_specs_409; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P204_409[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P204_constr_409; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P205; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P205_specs_411; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P205_411[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P205_constr_411; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P206; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P206_specs_413; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P206_413[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P206_constr_413; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P207; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P207_specs_415; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P207_415[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P207_constr_415; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P208; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P208_specs_417; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P208_417[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P208_constr_417; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P209; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P209_specs_419; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P209_419[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P209_constr_419; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P210; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P210_specs_421; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P210_421[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P210_constr_421; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P211; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P211_specs_423; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P211_423[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P211_constr_423; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P212; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P212_specs_425; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P212_425[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P212_constr_425; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P213; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P213_specs_427; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P213_427[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P213_constr_427; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P214; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P214_specs_429; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P214_429[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P214_constr_429; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P215; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P215_specs_431; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P215_431[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P215_constr_431; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P216; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P216_specs_433; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P216_433[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P216_constr_433; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P217; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P217_specs_435; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P217_435[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P217_constr_435; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P218; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P218_specs_437; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P218_437[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P218_constr_437; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P219; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P219_specs_439; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P219_439[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P219_constr_439; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P220; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P220_specs_441; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P220_441[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P220_constr_441; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P221; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P221_specs_443; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P221_443[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P221_constr_443; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P222; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P222_specs_445; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P222_445[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P222_constr_445; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P223; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P223_specs_447; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P223_447[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P223_constr_447; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P224; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P224_specs_449; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P224_449[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P224_constr_449; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P225; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P225_specs_451; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P225_451[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P225_constr_451; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P226; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P226_specs_453; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P226_453[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P226_constr_453; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P227; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P227_specs_455; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P227_455[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P227_constr_455; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P228; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P228_specs_457; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P228_457[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P228_constr_457; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P229; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P229_specs_459; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P229_459[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P229_constr_459; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P230; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P230_specs_461; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P230_461[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P230_constr_461; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P231; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P231_specs_463; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P231_463[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P231_constr_463; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P232; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P232_specs_465; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P232_465[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P232_constr_465; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P233; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P233_specs_467; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P233_467[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P233_constr_467; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P234; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P234_specs_469; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P234_469[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P234_constr_469; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P235; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P235_specs_471; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P235_471[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P235_constr_471; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P236; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P236_specs_473; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P236_473[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P236_constr_473; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P237; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P237_specs_475; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P237_475[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P237_constr_475; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P238; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P238_specs_477; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P238_477[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P238_constr_477; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P239; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P239_specs_479; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P239_479[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P239_constr_479; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P240; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P240_specs_481; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P240_481[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P240_constr_481; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P241; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P241_specs_483; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P241_483[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P241_constr_483; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P242; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P242_specs_485; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P242_485[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P242_constr_485; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P243; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P243_specs_487; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P243_487[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P243_constr_487; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P244; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P244_specs_489; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P244_489[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P244_constr_489; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P245; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P245_specs_491; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P245_491[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P245_constr_491; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P246; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P246_specs_493; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P246_493[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P246_constr_493; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P247; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P247_specs_495; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P247_495[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P247_constr_495; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P248; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P248_specs_497; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P248_497[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P248_constr_497; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P249; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P249_specs_499; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P249_499[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P249_constr_499; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P250; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P250_specs_501; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P250_501[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P250_constr_501; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P251; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P251_specs_503; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P251_503[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P251_constr_503; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P252; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P252_specs_505; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P252_505[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P252_constr_505; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P253; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P253_specs_507; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P253_507[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P253_constr_507; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P254; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P254_specs_509; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P254_509[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P254_constr_509; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P255; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P255_specs_511; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P255_511[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P255_constr_511; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P256; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P256_specs_513; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P256_513[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P256_constr_513; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P257; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P257_specs_515; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P257_515[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P257_constr_515; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P258; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P258_specs_517; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P258_517[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P258_constr_517; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P259; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P259_specs_519; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P259_519[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P259_constr_519; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P260; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P260_specs_521; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P260_521[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P260_constr_521; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P261; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P261_specs_523; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P261_523[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P261_constr_523; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P262; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P262_specs_525; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P262_525[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P262_constr_525; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P263; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P263_specs_527; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P263_527[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P263_constr_527; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P264; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P264_specs_529; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P264_529[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P264_constr_529; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P265; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P265_specs_531; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P265_531[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P265_constr_531; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P266; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P266_specs_533; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P266_533[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P266_constr_533; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P267; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P267_specs_535; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P267_535[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P267_constr_535; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P268; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P268_specs_537; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P268_537[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P268_constr_537; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P269; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P269_specs_539; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P269_539[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P269_constr_539; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P270; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P270_specs_541; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P270_541[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P270_constr_541; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P271; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P271_specs_543; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P271_543[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P271_constr_543; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P272; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P272_specs_545; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P272_545[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P272_constr_545; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P273; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P273_specs_547; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P273_547[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P273_constr_547; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P274; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P274_specs_549; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P274_549[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P274_constr_549; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P275; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P275_specs_551; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P275_551[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P275_constr_551; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P276; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P276_specs_553; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P276_553[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P276_constr_553; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P277; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P277_specs_555; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P277_555[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P277_constr_555; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P278; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P278_specs_557; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P278_557[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P278_constr_557; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P279; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P279_specs_559; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P279_559[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P279_constr_559; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P280; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P280_specs_561; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P280_561[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P280_constr_561; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P281; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P281_specs_563; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P281_563[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P281_constr_563; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P282; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P282_specs_565; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P282_565[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P282_constr_565; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P283; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P283_specs_567; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P283_567[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P283_constr_567; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P284; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P284_specs_569; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P284_569[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P284_constr_569; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P285; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P285_specs_571; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P285_571[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P285_constr_571; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P286; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P286_specs_573; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P286_573[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P286_constr_573; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P287; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P287_specs_575; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P287_575[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P287_constr_575; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P288; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P288_specs_577; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P288_577[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P288_constr_577; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P289; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P289_specs_579; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P289_579[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P289_constr_579; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolExtensionContainer_9625P290; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolExtensionContainer_9625P290_specs_581; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolExtensionContainer_9625P290_581[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolExtensionContainer_9625P290_constr_581; #ifdef __cplusplus } diff --git a/lib/asn1c/ngap/NGAP_ProtocolExtensionField.c b/lib/asn1c/ngap/NGAP_ProtocolExtensionField.c index 4a23d705f..9437b2983 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolExtensionField.c +++ b/lib/asn1c/ngap/NGAP_ProtocolExtensionField.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -84,811 +84,939 @@ static const asn_ioc_set_t asn_IOS_NGAP_BroadcastPLMNItem_ExtIEs_1[] = { static const long asn_VAL_8_NGAP_id_PagingeDRXInformation = 223; static const long asn_VAL_8_NGAP_ignore = 1; static const long asn_VAL_8_NGAP_optional = 0; +static const long asn_VAL_9_NGAP_id_ExtendedUEIdentityIndexValue = 280; +static const long asn_VAL_9_NGAP_ignore = 1; +static const long asn_VAL_9_NGAP_optional = 0; +static const long asn_VAL_10_NGAP_id_UERadioCapabilityForPaging = 118; +static const long asn_VAL_10_NGAP_ignore = 1; +static const long asn_VAL_10_NGAP_optional = 0; +static const long asn_VAL_11_NGAP_id_MicoAllPLMN = 282; +static const long asn_VAL_11_NGAP_ignore = 1; +static const long asn_VAL_11_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs_1_rows[] = { { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_8_NGAP_id_PagingeDRXInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_8_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_PagingeDRXInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_8_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_8_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_9_NGAP_id_ExtendedUEIdentityIndexValue }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_9_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedUEIdentityIndexValue }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_9_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_10_NGAP_id_UERadioCapabilityForPaging }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_10_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UERadioCapabilityForPaging }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_10_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_11_NGAP_id_MicoAllPLMN }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_11_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_MicoAllPLMN }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_11_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs_1[] = { - { 1, 4, asn_IOS_NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs_1_rows } + { 4, 4, asn_IOS_NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs_1_rows } }; -static const long asn_VAL_9_NGAP_id_OldAssociatedQosFlowList_ULendmarkerexpected = 159; -static const long asn_VAL_9_NGAP_reject = 0; -static const long asn_VAL_9_NGAP_optional = 0; +static const long asn_VAL_12_NGAP_id_OldAssociatedQosFlowList_ULendmarkerexpected = 159; +static const long asn_VAL_12_NGAP_ignore = 1; +static const long asn_VAL_12_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_DRBsSubjectToStatusTransferItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_9_NGAP_id_OldAssociatedQosFlowList_ULendmarkerexpected }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_9_NGAP_reject }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_12_NGAP_id_OldAssociatedQosFlowList_ULendmarkerexpected }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_12_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_AssociatedQosFlowList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_9_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_12_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_DRBsSubjectToStatusTransferItem_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_DRBsSubjectToStatusTransferItem_ExtIEs_1_rows } }; -static const long asn_VAL_10_NGAP_id_DAPSRequestInfo = 266; -static const long asn_VAL_10_NGAP_ignore = 1; -static const long asn_VAL_10_NGAP_optional = 0; +static const long asn_VAL_13_NGAP_id_DAPSRequestInfo = 266; +static const long asn_VAL_13_NGAP_ignore = 1; +static const long asn_VAL_13_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_DRBsToQosFlowsMappingItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_10_NGAP_id_DAPSRequestInfo }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_10_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_13_NGAP_id_DAPSRequestInfo }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_13_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_DAPSRequestInfo }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_10_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_13_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_DRBsToQosFlowsMappingItem_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_DRBsToQosFlowsMappingItem_ExtIEs_1_rows } }; -static const long asn_VAL_11_NGAP_id_ExtendedPacketDelayBudget = 189; -static const long asn_VAL_11_NGAP_ignore = 1; -static const long asn_VAL_11_NGAP_optional = 0; -static const long asn_VAL_12_NGAP_id_CNPacketDelayBudgetDL = 187; -static const long asn_VAL_12_NGAP_ignore = 1; -static const long asn_VAL_12_NGAP_optional = 0; -static const long asn_VAL_13_NGAP_id_CNPacketDelayBudgetUL = 188; -static const long asn_VAL_13_NGAP_ignore = 1; -static const long asn_VAL_13_NGAP_optional = 0; +static const long asn_VAL_14_NGAP_id_ExtendedPacketDelayBudget = 189; +static const long asn_VAL_14_NGAP_ignore = 1; +static const long asn_VAL_14_NGAP_optional = 0; +static const long asn_VAL_15_NGAP_id_CNPacketDelayBudgetDL = 187; +static const long asn_VAL_15_NGAP_ignore = 1; +static const long asn_VAL_15_NGAP_optional = 0; +static const long asn_VAL_16_NGAP_id_CNPacketDelayBudgetUL = 188; +static const long asn_VAL_16_NGAP_ignore = 1; +static const long asn_VAL_16_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_Dynamic5QIDescriptor_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_11_NGAP_id_ExtendedPacketDelayBudget }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_11_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_14_NGAP_id_ExtendedPacketDelayBudget }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_14_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedPacketDelayBudget }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_11_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_12_NGAP_id_CNPacketDelayBudgetDL }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_12_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_14_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_15_NGAP_id_CNPacketDelayBudgetDL }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_15_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedPacketDelayBudget }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_12_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_13_NGAP_id_CNPacketDelayBudgetUL }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_13_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_15_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_16_NGAP_id_CNPacketDelayBudgetUL }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_16_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedPacketDelayBudget }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_13_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_16_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_Dynamic5QIDescriptor_ExtIEs_1[] = { { 3, 4, asn_IOS_NGAP_Dynamic5QIDescriptor_ExtIEs_1_rows } }; -static const long asn_VAL_14_NGAP_id_AlternativeQoSParaSetList = 220; -static const long asn_VAL_14_NGAP_ignore = 1; -static const long asn_VAL_14_NGAP_optional = 0; +static const long asn_VAL_17_NGAP_id_AlternativeQoSParaSetList = 220; +static const long asn_VAL_17_NGAP_ignore = 1; +static const long asn_VAL_17_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_GBR_QosInformation_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_14_NGAP_id_AlternativeQoSParaSetList }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_14_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_17_NGAP_id_AlternativeQoSParaSetList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_17_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_AlternativeQoSParaSetList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_14_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_17_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_GBR_QosInformation_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_GBR_QosInformation_ExtIEs_1_rows } }; -static const long asn_VAL_15_NGAP_id_AdditionalDLForwardingUPTNLInformation = 152; -static const long asn_VAL_15_NGAP_ignore = 1; -static const long asn_VAL_15_NGAP_optional = 0; -static const long asn_VAL_16_NGAP_id_ULForwardingUP_TNLInformation = 164; -static const long asn_VAL_16_NGAP_reject = 0; -static const long asn_VAL_16_NGAP_optional = 0; -static const long asn_VAL_17_NGAP_id_AdditionalULForwardingUPTNLInformation = 172; -static const long asn_VAL_17_NGAP_reject = 0; -static const long asn_VAL_17_NGAP_optional = 0; -static const long asn_VAL_18_NGAP_id_DataForwardingResponseERABList = 249; +static const long asn_VAL_18_NGAP_id_AdditionalDLForwardingUPTNLInformation = 152; static const long asn_VAL_18_NGAP_ignore = 1; static const long asn_VAL_18_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_HandoverCommandTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_15_NGAP_id_AdditionalDLForwardingUPTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_15_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_15_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_16_NGAP_id_ULForwardingUP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_16_NGAP_reject }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_16_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_17_NGAP_id_AdditionalULForwardingUPTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_17_NGAP_reject }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_17_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_18_NGAP_id_DataForwardingResponseERABList }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_18_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_DataForwardingResponseERABList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_18_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_HandoverCommandTransfer_ExtIEs_1[] = { - { 4, 4, asn_IOS_NGAP_HandoverCommandTransfer_ExtIEs_1_rows } -}; -static const long asn_VAL_19_NGAP_id_AdditionalDLUPTNLInformationForHOList = 153; -static const long asn_VAL_19_NGAP_ignore = 1; +static const long asn_VAL_19_NGAP_id_ULForwardingUP_TNLInformation = 164; +static const long asn_VAL_19_NGAP_reject = 0; static const long asn_VAL_19_NGAP_optional = 0; -static const long asn_VAL_20_NGAP_id_ULForwardingUP_TNLInformation = 164; +static const long asn_VAL_20_NGAP_id_AdditionalULForwardingUPTNLInformation = 172; static const long asn_VAL_20_NGAP_reject = 0; static const long asn_VAL_20_NGAP_optional = 0; -static const long asn_VAL_21_NGAP_id_AdditionalULForwardingUPTNLInformation = 172; -static const long asn_VAL_21_NGAP_reject = 0; +static const long asn_VAL_21_NGAP_id_DataForwardingResponseERABList = 249; +static const long asn_VAL_21_NGAP_ignore = 1; static const long asn_VAL_21_NGAP_optional = 0; -static const long asn_VAL_22_NGAP_id_DataForwardingResponseERABList = 249; +static const long asn_VAL_22_NGAP_id_QosFlowFailedToSetupList = 283; static const long asn_VAL_22_NGAP_ignore = 1; static const long asn_VAL_22_NGAP_optional = 0; -static const long asn_VAL_23_NGAP_id_RedundantDL_NGU_UP_TNLInformation = 192; +static const asn_ioc_cell_t asn_IOS_NGAP_HandoverCommandTransfer_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_18_NGAP_id_AdditionalDLForwardingUPTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_18_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_18_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_19_NGAP_id_ULForwardingUP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_19_NGAP_reject }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_19_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_20_NGAP_id_AdditionalULForwardingUPTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_20_NGAP_reject }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_20_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_21_NGAP_id_DataForwardingResponseERABList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_21_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_DataForwardingResponseERABList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_21_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_22_NGAP_id_QosFlowFailedToSetupList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_22_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowListWithCause }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_22_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_HandoverCommandTransfer_ExtIEs_1[] = { + { 5, 4, asn_IOS_NGAP_HandoverCommandTransfer_ExtIEs_1_rows } +}; +static const long asn_VAL_23_NGAP_id_AdditionalDLUPTNLInformationForHOList = 153; static const long asn_VAL_23_NGAP_ignore = 1; static const long asn_VAL_23_NGAP_optional = 0; -static const long asn_VAL_24_NGAP_id_UsedRSNInformation = 198; -static const long asn_VAL_24_NGAP_ignore = 1; +static const long asn_VAL_24_NGAP_id_ULForwardingUP_TNLInformation = 164; +static const long asn_VAL_24_NGAP_reject = 0; static const long asn_VAL_24_NGAP_optional = 0; -static const long asn_VAL_25_NGAP_id_GlobalRANNodeID = 27; -static const long asn_VAL_25_NGAP_ignore = 1; +static const long asn_VAL_25_NGAP_id_AdditionalULForwardingUPTNLInformation = 172; +static const long asn_VAL_25_NGAP_reject = 0; static const long asn_VAL_25_NGAP_optional = 0; +static const long asn_VAL_26_NGAP_id_DataForwardingResponseERABList = 249; +static const long asn_VAL_26_NGAP_ignore = 1; +static const long asn_VAL_26_NGAP_optional = 0; +static const long asn_VAL_27_NGAP_id_RedundantDL_NGU_UP_TNLInformation = 192; +static const long asn_VAL_27_NGAP_ignore = 1; +static const long asn_VAL_27_NGAP_optional = 0; +static const long asn_VAL_28_NGAP_id_UsedRSNInformation = 198; +static const long asn_VAL_28_NGAP_ignore = 1; +static const long asn_VAL_28_NGAP_optional = 0; +static const long asn_VAL_29_NGAP_id_GlobalRANNodeID = 27; +static const long asn_VAL_29_NGAP_ignore = 1; +static const long asn_VAL_29_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_HandoverRequestAcknowledgeTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_19_NGAP_id_AdditionalDLUPTNLInformationForHOList }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_19_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_AdditionalDLUPTNLInformationForHOList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_19_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_20_NGAP_id_ULForwardingUP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_20_NGAP_reject }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_20_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_21_NGAP_id_AdditionalULForwardingUPTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_21_NGAP_reject }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_21_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_22_NGAP_id_DataForwardingResponseERABList }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_22_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_DataForwardingResponseERABList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_22_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_23_NGAP_id_RedundantDL_NGU_UP_TNLInformation }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_23_NGAP_id_AdditionalDLUPTNLInformationForHOList }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_23_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, + { "&Extension", aioc__type, &asn_DEF_NGAP_AdditionalDLUPTNLInformationForHOList }, { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_23_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_24_NGAP_id_UsedRSNInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_24_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantPDUSessionInformation }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_24_NGAP_id_ULForwardingUP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_24_NGAP_reject }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_24_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_25_NGAP_id_GlobalRANNodeID }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_25_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_25_NGAP_id_AdditionalULForwardingUPTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_25_NGAP_reject }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_25_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_26_NGAP_id_DataForwardingResponseERABList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_26_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_DataForwardingResponseERABList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_26_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_27_NGAP_id_RedundantDL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_27_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_27_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_28_NGAP_id_UsedRSNInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_28_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantPDUSessionInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_28_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_29_NGAP_id_GlobalRANNodeID }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_29_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_GlobalRANNodeID }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_25_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_29_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_HandoverRequestAcknowledgeTransfer_ExtIEs_1[] = { { 7, 4, asn_IOS_NGAP_HandoverRequestAcknowledgeTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_26_NGAP_id_LocationReportingAdditionalInfo = 170; -static const long asn_VAL_26_NGAP_ignore = 1; -static const long asn_VAL_26_NGAP_optional = 0; +static const long asn_VAL_30_NGAP_id_LocationReportingAdditionalInfo = 170; +static const long asn_VAL_30_NGAP_ignore = 1; +static const long asn_VAL_30_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_LocationReportingRequestType_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_26_NGAP_id_LocationReportingAdditionalInfo }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_26_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_30_NGAP_id_LocationReportingAdditionalInfo }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_30_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_LocationReportingAdditionalInfo }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_26_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_30_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_LocationReportingRequestType_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_LocationReportingRequestType_ExtIEs_1_rows } }; -static const long asn_VAL_27_NGAP_id_LastEUTRAN_PLMNIdentity = 150; -static const long asn_VAL_27_NGAP_ignore = 1; -static const long asn_VAL_27_NGAP_optional = 0; -static const long asn_VAL_28_NGAP_id_CNTypeRestrictionsForServing = 161; -static const long asn_VAL_28_NGAP_ignore = 1; -static const long asn_VAL_28_NGAP_optional = 0; -static const long asn_VAL_29_NGAP_id_CNTypeRestrictionsForEquivalent = 160; -static const long asn_VAL_29_NGAP_ignore = 1; -static const long asn_VAL_29_NGAP_optional = 0; -static const long asn_VAL_30_NGAP_id_NPN_MobilityInformation = 261; -static const long asn_VAL_30_NGAP_reject = 0; -static const long asn_VAL_30_NGAP_optional = 0; +static const long asn_VAL_31_NGAP_id_LastEUTRAN_PLMNIdentity = 150; +static const long asn_VAL_31_NGAP_ignore = 1; +static const long asn_VAL_31_NGAP_optional = 0; +static const long asn_VAL_32_NGAP_id_CNTypeRestrictionsForServing = 161; +static const long asn_VAL_32_NGAP_ignore = 1; +static const long asn_VAL_32_NGAP_optional = 0; +static const long asn_VAL_33_NGAP_id_CNTypeRestrictionsForEquivalent = 160; +static const long asn_VAL_33_NGAP_ignore = 1; +static const long asn_VAL_33_NGAP_optional = 0; +static const long asn_VAL_34_NGAP_id_NPN_MobilityInformation = 261; +static const long asn_VAL_34_NGAP_reject = 0; +static const long asn_VAL_34_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_MobilityRestrictionList_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_27_NGAP_id_LastEUTRAN_PLMNIdentity }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_27_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_31_NGAP_id_LastEUTRAN_PLMNIdentity }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_31_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_PLMNIdentity }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_27_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_28_NGAP_id_CNTypeRestrictionsForServing }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_28_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_31_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_32_NGAP_id_CNTypeRestrictionsForServing }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_32_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_CNTypeRestrictionsForServing }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_28_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_29_NGAP_id_CNTypeRestrictionsForEquivalent }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_29_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_32_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_33_NGAP_id_CNTypeRestrictionsForEquivalent }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_33_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_CNTypeRestrictionsForEquivalent }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_29_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_30_NGAP_id_NPN_MobilityInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_30_NGAP_reject }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_33_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_34_NGAP_id_NPN_MobilityInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_34_NGAP_reject }, { "&Extension", aioc__type, &asn_DEF_NGAP_NPN_MobilityInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_30_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_34_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_MobilityRestrictionList_ExtIEs_1[] = { { 4, 4, asn_IOS_NGAP_MobilityRestrictionList_ExtIEs_1_rows } }; -static const long asn_VAL_31_NGAP_id_CNPacketDelayBudgetDL = 187; -static const long asn_VAL_31_NGAP_ignore = 1; -static const long asn_VAL_31_NGAP_optional = 0; -static const long asn_VAL_32_NGAP_id_CNPacketDelayBudgetUL = 188; -static const long asn_VAL_32_NGAP_ignore = 1; -static const long asn_VAL_32_NGAP_optional = 0; +static const long asn_VAL_35_NGAP_id_CNPacketDelayBudgetDL = 187; +static const long asn_VAL_35_NGAP_ignore = 1; +static const long asn_VAL_35_NGAP_optional = 0; +static const long asn_VAL_36_NGAP_id_CNPacketDelayBudgetUL = 188; +static const long asn_VAL_36_NGAP_ignore = 1; +static const long asn_VAL_36_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_NonDynamic5QIDescriptor_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_31_NGAP_id_CNPacketDelayBudgetDL }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_31_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_35_NGAP_id_CNPacketDelayBudgetDL }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_35_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedPacketDelayBudget }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_31_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_32_NGAP_id_CNPacketDelayBudgetUL }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_32_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_35_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_36_NGAP_id_CNPacketDelayBudgetUL }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_36_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedPacketDelayBudget }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_32_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_36_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_NonDynamic5QIDescriptor_ExtIEs_1[] = { { 2, 4, asn_IOS_NGAP_NonDynamic5QIDescriptor_ExtIEs_1_rows } }; -static const long asn_VAL_33_NGAP_id_AdditionalNGU_UP_TNLInformation = 154; -static const long asn_VAL_33_NGAP_ignore = 1; -static const long asn_VAL_33_NGAP_optional = 0; -static const long asn_VAL_34_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; -static const long asn_VAL_34_NGAP_ignore = 1; -static const long asn_VAL_34_NGAP_optional = 0; -static const long asn_VAL_35_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation = 185; -static const long asn_VAL_35_NGAP_ignore = 1; -static const long asn_VAL_35_NGAP_optional = 0; -static const long asn_VAL_36_NGAP_id_QosFlowParametersList = 277; -static const long asn_VAL_36_NGAP_ignore = 1; -static const long asn_VAL_36_NGAP_optional = 0; +static const long asn_VAL_37_NGAP_id_AdditionalNGU_UP_TNLInformation = 154; +static const long asn_VAL_37_NGAP_ignore = 1; +static const long asn_VAL_37_NGAP_optional = 0; +static const long asn_VAL_38_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; +static const long asn_VAL_38_NGAP_ignore = 1; +static const long asn_VAL_38_NGAP_optional = 0; +static const long asn_VAL_39_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation = 185; +static const long asn_VAL_39_NGAP_ignore = 1; +static const long asn_VAL_39_NGAP_optional = 0; +static const long asn_VAL_40_NGAP_id_QosFlowParametersList = 277; +static const long asn_VAL_40_NGAP_ignore = 1; +static const long asn_VAL_40_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PathSwitchRequestAcknowledgeTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_33_NGAP_id_AdditionalNGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_33_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_37_NGAP_id_AdditionalNGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_37_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationPairList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_33_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_34_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_34_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_37_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_38_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_38_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_34_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_35_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_35_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_38_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_39_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_39_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationPairList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_35_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_36_NGAP_id_QosFlowParametersList }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_36_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_39_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_40_NGAP_id_QosFlowParametersList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_40_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowParametersList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_36_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_40_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PathSwitchRequestAcknowledgeTransfer_ExtIEs_1[] = { { 4, 4, asn_IOS_NGAP_PathSwitchRequestAcknowledgeTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_37_NGAP_id_AdditionalDLQosFlowPerTNLInformation = 155; -static const long asn_VAL_37_NGAP_ignore = 1; -static const long asn_VAL_37_NGAP_optional = 0; -static const long asn_VAL_38_NGAP_id_RedundantDL_NGU_UP_TNLInformation = 192; -static const long asn_VAL_38_NGAP_ignore = 1; -static const long asn_VAL_38_NGAP_optional = 0; -static const long asn_VAL_39_NGAP_id_RedundantDL_NGU_TNLInformationReused = 191; -static const long asn_VAL_39_NGAP_ignore = 1; -static const long asn_VAL_39_NGAP_optional = 0; -static const long asn_VAL_40_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation = 184; -static const long asn_VAL_40_NGAP_ignore = 1; -static const long asn_VAL_40_NGAP_optional = 0; -static const long asn_VAL_41_NGAP_id_UsedRSNInformation = 198; +static const long asn_VAL_41_NGAP_id_AdditionalDLQosFlowPerTNLInformation = 155; static const long asn_VAL_41_NGAP_ignore = 1; static const long asn_VAL_41_NGAP_optional = 0; -static const long asn_VAL_42_NGAP_id_GlobalRANNodeID = 27; +static const long asn_VAL_42_NGAP_id_RedundantDL_NGU_UP_TNLInformation = 192; static const long asn_VAL_42_NGAP_ignore = 1; static const long asn_VAL_42_NGAP_optional = 0; +static const long asn_VAL_43_NGAP_id_RedundantDL_NGU_TNLInformationReused = 191; +static const long asn_VAL_43_NGAP_ignore = 1; +static const long asn_VAL_43_NGAP_optional = 0; +static const long asn_VAL_44_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation = 184; +static const long asn_VAL_44_NGAP_ignore = 1; +static const long asn_VAL_44_NGAP_optional = 0; +static const long asn_VAL_45_NGAP_id_UsedRSNInformation = 198; +static const long asn_VAL_45_NGAP_ignore = 1; +static const long asn_VAL_45_NGAP_optional = 0; +static const long asn_VAL_46_NGAP_id_GlobalRANNodeID = 27; +static const long asn_VAL_46_NGAP_ignore = 1; +static const long asn_VAL_46_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PathSwitchRequestTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_37_NGAP_id_AdditionalDLQosFlowPerTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_37_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_37_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_38_NGAP_id_RedundantDL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_38_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_38_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_39_NGAP_id_RedundantDL_NGU_TNLInformationReused }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_39_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_DL_NGU_TNLInformationReused }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_39_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_40_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_40_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_40_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_41_NGAP_id_UsedRSNInformation }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_41_NGAP_id_AdditionalDLQosFlowPerTNLInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_41_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantPDUSessionInformation }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_41_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_42_NGAP_id_GlobalRANNodeID }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_42_NGAP_id_RedundantDL_NGU_UP_TNLInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_42_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_42_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_43_NGAP_id_RedundantDL_NGU_TNLInformationReused }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_43_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_DL_NGU_TNLInformationReused }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_43_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_44_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_44_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_44_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_45_NGAP_id_UsedRSNInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_45_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantPDUSessionInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_45_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_46_NGAP_id_GlobalRANNodeID }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_46_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_GlobalRANNodeID }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_42_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_46_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PathSwitchRequestTransfer_ExtIEs_1[] = { { 6, 4, asn_IOS_NGAP_PathSwitchRequestTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_43_NGAP_id_PDUSessionResourceReleaseResponseTransfer = 145; -static const long asn_VAL_43_NGAP_ignore = 1; -static const long asn_VAL_43_NGAP_optional = 0; +static const long asn_VAL_47_NGAP_id_PDUSessionResourceReleaseResponseTransfer = 145; +static const long asn_VAL_47_NGAP_ignore = 1; +static const long asn_VAL_47_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceItemCxtRelCpl_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_43_NGAP_id_PDUSessionResourceReleaseResponseTransfer }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_43_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_47_NGAP_id_PDUSessionResourceReleaseResponseTransfer }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_47_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_OCTET_STRING }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_43_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_47_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceItemCxtRelCpl_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_PDUSessionResourceItemCxtRelCpl_ExtIEs_1_rows } }; -static const long asn_VAL_44_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; -static const long asn_VAL_44_NGAP_ignore = 1; -static const long asn_VAL_44_NGAP_optional = 0; -static const long asn_VAL_45_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation = 185; -static const long asn_VAL_45_NGAP_ignore = 1; -static const long asn_VAL_45_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceModifyConfirmTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_44_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_44_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_44_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_45_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_45_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationPairList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_45_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceModifyConfirmTransfer_ExtIEs_1[] = { - { 2, 4, asn_IOS_NGAP_PDUSessionResourceModifyConfirmTransfer_ExtIEs_1_rows } -}; -static const long asn_VAL_46_NGAP_id_AdditionalNGU_UP_TNLInformation = 154; -static const long asn_VAL_46_NGAP_ignore = 1; -static const long asn_VAL_46_NGAP_optional = 0; -static const long asn_VAL_47_NGAP_id_RedundantDL_NGU_UP_TNLInformation = 192; -static const long asn_VAL_47_NGAP_ignore = 1; -static const long asn_VAL_47_NGAP_optional = 0; static const long asn_VAL_48_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; static const long asn_VAL_48_NGAP_ignore = 1; static const long asn_VAL_48_NGAP_optional = 0; -static const long asn_VAL_49_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation = 184; +static const long asn_VAL_49_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation = 185; static const long asn_VAL_49_NGAP_ignore = 1; static const long asn_VAL_49_NGAP_optional = 0; -static const long asn_VAL_50_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation = 185; -static const long asn_VAL_50_NGAP_ignore = 1; -static const long asn_VAL_50_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceModifyResponseTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_46_NGAP_id_AdditionalNGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_46_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationPairList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_46_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_47_NGAP_id_RedundantDL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_47_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_47_NGAP_optional }, +static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceModifyConfirmTransfer_ExtIEs_1_rows[] = { { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_48_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_48_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_48_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_49_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_49_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_49_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_49_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_50_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationPairList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_49_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceModifyConfirmTransfer_ExtIEs_1[] = { + { 2, 4, asn_IOS_NGAP_PDUSessionResourceModifyConfirmTransfer_ExtIEs_1_rows } +}; +static const long asn_VAL_50_NGAP_id_AdditionalNGU_UP_TNLInformation = 154; +static const long asn_VAL_50_NGAP_ignore = 1; +static const long asn_VAL_50_NGAP_optional = 0; +static const long asn_VAL_51_NGAP_id_RedundantDL_NGU_UP_TNLInformation = 192; +static const long asn_VAL_51_NGAP_ignore = 1; +static const long asn_VAL_51_NGAP_optional = 0; +static const long asn_VAL_52_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; +static const long asn_VAL_52_NGAP_ignore = 1; +static const long asn_VAL_52_NGAP_optional = 0; +static const long asn_VAL_53_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation = 184; +static const long asn_VAL_53_NGAP_ignore = 1; +static const long asn_VAL_53_NGAP_optional = 0; +static const long asn_VAL_54_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation = 185; +static const long asn_VAL_54_NGAP_ignore = 1; +static const long asn_VAL_54_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceModifyResponseTransfer_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_50_NGAP_id_AdditionalNGU_UP_TNLInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_50_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationPairList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_50_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_50_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_51_NGAP_id_RedundantDL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_51_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_51_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_52_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_52_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_52_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_53_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_53_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_53_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_54_NGAP_id_AdditionalRedundantNGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_54_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationPairList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_54_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceModifyResponseTransfer_ExtIEs_1[] = { { 5, 4, asn_IOS_NGAP_PDUSessionResourceModifyResponseTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_51_NGAP_id_SecondaryRATUsageInformation = 144; -static const long asn_VAL_51_NGAP_ignore = 1; -static const long asn_VAL_51_NGAP_optional = 0; -static const long asn_VAL_52_NGAP_id_SecurityResult = 156; -static const long asn_VAL_52_NGAP_ignore = 1; -static const long asn_VAL_52_NGAP_optional = 0; -static const long asn_VAL_53_NGAP_id_RedundantDLQosFlowPerTNLInformation = 193; -static const long asn_VAL_53_NGAP_ignore = 1; -static const long asn_VAL_53_NGAP_optional = 0; -static const long asn_VAL_54_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation = 184; -static const long asn_VAL_54_NGAP_ignore = 1; -static const long asn_VAL_54_NGAP_optional = 0; -static const long asn_VAL_55_NGAP_id_GlobalRANNodeID = 27; +static const long asn_VAL_55_NGAP_id_SecondaryRATUsageInformation = 144; static const long asn_VAL_55_NGAP_ignore = 1; static const long asn_VAL_55_NGAP_optional = 0; +static const long asn_VAL_56_NGAP_id_SecurityResult = 156; +static const long asn_VAL_56_NGAP_ignore = 1; +static const long asn_VAL_56_NGAP_optional = 0; +static const long asn_VAL_57_NGAP_id_RedundantDLQosFlowPerTNLInformation = 193; +static const long asn_VAL_57_NGAP_ignore = 1; +static const long asn_VAL_57_NGAP_optional = 0; +static const long asn_VAL_58_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation = 184; +static const long asn_VAL_58_NGAP_ignore = 1; +static const long asn_VAL_58_NGAP_optional = 0; +static const long asn_VAL_59_NGAP_id_GlobalRANNodeID = 27; +static const long asn_VAL_59_NGAP_ignore = 1; +static const long asn_VAL_59_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceModifyIndicationTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_51_NGAP_id_SecondaryRATUsageInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_51_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_SecondaryRATUsageInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_51_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_52_NGAP_id_SecurityResult }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_52_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_SecurityResult }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_52_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_53_NGAP_id_RedundantDLQosFlowPerTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_53_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_53_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_54_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_54_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_54_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_55_NGAP_id_GlobalRANNodeID }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_55_NGAP_id_SecondaryRATUsageInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_55_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_SecondaryRATUsageInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_55_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_56_NGAP_id_SecurityResult }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_56_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_SecurityResult }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_56_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_57_NGAP_id_RedundantDLQosFlowPerTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_57_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_57_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_58_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_58_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_58_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_59_NGAP_id_GlobalRANNodeID }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_59_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_GlobalRANNodeID }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_55_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_59_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceModifyIndicationTransfer_ExtIEs_1[] = { { 5, 4, asn_IOS_NGAP_PDUSessionResourceModifyIndicationTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_56_NGAP_id_S_NSSAI = 148; -static const long asn_VAL_56_NGAP_reject = 0; -static const long asn_VAL_56_NGAP_optional = 0; +static const long asn_VAL_60_NGAP_id_S_NSSAI = 148; +static const long asn_VAL_60_NGAP_reject = 0; +static const long asn_VAL_60_NGAP_optional = 0; +static const long asn_VAL_61_NGAP_id_PduSessionExpectedUEActivityBehaviour = 281; +static const long asn_VAL_61_NGAP_ignore = 1; +static const long asn_VAL_61_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceModifyItemModReq_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_56_NGAP_id_S_NSSAI }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_56_NGAP_reject }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_60_NGAP_id_S_NSSAI }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_60_NGAP_reject }, { "&Extension", aioc__type, &asn_DEF_NGAP_S_NSSAI }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_56_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_60_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_61_NGAP_id_PduSessionExpectedUEActivityBehaviour }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_61_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ExpectedUEActivityBehaviour }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_61_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceModifyItemModReq_ExtIEs_1[] = { - { 1, 4, asn_IOS_NGAP_PDUSessionResourceModifyItemModReq_ExtIEs_1_rows } + { 2, 4, asn_IOS_NGAP_PDUSessionResourceModifyItemModReq_ExtIEs_1_rows } }; -static const long asn_VAL_57_NGAP_id_SecondaryRATUsageInformation = 144; -static const long asn_VAL_57_NGAP_ignore = 1; -static const long asn_VAL_57_NGAP_optional = 0; +static const long asn_VAL_62_NGAP_id_SecondaryRATUsageInformation = 144; +static const long asn_VAL_62_NGAP_ignore = 1; +static const long asn_VAL_62_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceNotifyReleasedTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_57_NGAP_id_SecondaryRATUsageInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_57_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_62_NGAP_id_SecondaryRATUsageInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_62_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_SecondaryRATUsageInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_57_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_62_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceNotifyReleasedTransfer_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_PDUSessionResourceNotifyReleasedTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_58_NGAP_id_SecondaryRATUsageInformation = 144; -static const long asn_VAL_58_NGAP_ignore = 1; -static const long asn_VAL_58_NGAP_optional = 0; +static const long asn_VAL_63_NGAP_id_SecondaryRATUsageInformation = 144; +static const long asn_VAL_63_NGAP_ignore = 1; +static const long asn_VAL_63_NGAP_optional = 0; +static const long asn_VAL_64_NGAP_id_QosFlowFeedbackList = 278; +static const long asn_VAL_64_NGAP_ignore = 1; +static const long asn_VAL_64_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceNotifyTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_58_NGAP_id_SecondaryRATUsageInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_58_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_63_NGAP_id_SecondaryRATUsageInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_63_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_SecondaryRATUsageInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_58_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_63_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_64_NGAP_id_QosFlowFeedbackList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_64_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowFeedbackList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_64_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceNotifyTransfer_ExtIEs_1[] = { - { 1, 4, asn_IOS_NGAP_PDUSessionResourceNotifyTransfer_ExtIEs_1_rows } + { 2, 4, asn_IOS_NGAP_PDUSessionResourceNotifyTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_59_NGAP_id_SecondaryRATUsageInformation = 144; -static const long asn_VAL_59_NGAP_ignore = 1; -static const long asn_VAL_59_NGAP_optional = 0; +static const long asn_VAL_65_NGAP_id_SecondaryRATUsageInformation = 144; +static const long asn_VAL_65_NGAP_ignore = 1; +static const long asn_VAL_65_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceReleaseResponseTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_59_NGAP_id_SecondaryRATUsageInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_59_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_65_NGAP_id_SecondaryRATUsageInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_65_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_SecondaryRATUsageInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_59_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_65_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceReleaseResponseTransfer_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_PDUSessionResourceReleaseResponseTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_60_NGAP_id_RedundantDLQosFlowPerTNLInformation = 193; -static const long asn_VAL_60_NGAP_ignore = 1; -static const long asn_VAL_60_NGAP_optional = 0; -static const long asn_VAL_61_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation = 184; -static const long asn_VAL_61_NGAP_ignore = 1; -static const long asn_VAL_61_NGAP_optional = 0; -static const long asn_VAL_62_NGAP_id_UsedRSNInformation = 198; -static const long asn_VAL_62_NGAP_ignore = 1; -static const long asn_VAL_62_NGAP_optional = 0; -static const long asn_VAL_63_NGAP_id_GlobalRANNodeID = 27; -static const long asn_VAL_63_NGAP_ignore = 1; -static const long asn_VAL_63_NGAP_optional = 0; +static const long asn_VAL_66_NGAP_id_PduSessionExpectedUEActivityBehaviour = 281; +static const long asn_VAL_66_NGAP_ignore = 1; +static const long asn_VAL_66_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_66_NGAP_id_PduSessionExpectedUEActivityBehaviour }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_66_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ExpectedUEActivityBehaviour }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_66_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs_1_rows } +}; +static const long asn_VAL_67_NGAP_id_PduSessionExpectedUEActivityBehaviour = 281; +static const long asn_VAL_67_NGAP_ignore = 1; +static const long asn_VAL_67_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_67_NGAP_id_PduSessionExpectedUEActivityBehaviour }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_67_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ExpectedUEActivityBehaviour }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_67_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs_1_rows } +}; +static const long asn_VAL_68_NGAP_id_PduSessionExpectedUEActivityBehaviour = 281; +static const long asn_VAL_68_NGAP_ignore = 1; +static const long asn_VAL_68_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_68_NGAP_id_PduSessionExpectedUEActivityBehaviour }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_68_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ExpectedUEActivityBehaviour }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_68_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs_1_rows } +}; +static const long asn_VAL_69_NGAP_id_RedundantDLQosFlowPerTNLInformation = 193; +static const long asn_VAL_69_NGAP_ignore = 1; +static const long asn_VAL_69_NGAP_optional = 0; +static const long asn_VAL_70_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation = 184; +static const long asn_VAL_70_NGAP_ignore = 1; +static const long asn_VAL_70_NGAP_optional = 0; +static const long asn_VAL_71_NGAP_id_UsedRSNInformation = 198; +static const long asn_VAL_71_NGAP_ignore = 1; +static const long asn_VAL_71_NGAP_optional = 0; +static const long asn_VAL_72_NGAP_id_GlobalRANNodeID = 27; +static const long asn_VAL_72_NGAP_ignore = 1; +static const long asn_VAL_72_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceSetupResponseTransfer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_60_NGAP_id_RedundantDLQosFlowPerTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_60_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_69_NGAP_id_RedundantDLQosFlowPerTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_69_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_60_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_61_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_61_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_69_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_70_NGAP_id_AdditionalRedundantDLQosFlowPerTNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_70_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_QosFlowPerTNLInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_61_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_62_NGAP_id_UsedRSNInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_62_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_70_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_71_NGAP_id_UsedRSNInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_71_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantPDUSessionInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_62_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_63_NGAP_id_GlobalRANNodeID }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_63_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_71_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_72_NGAP_id_GlobalRANNodeID }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_72_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_GlobalRANNodeID }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_63_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_72_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceSetupResponseTransfer_ExtIEs_1[] = { { 4, 4, asn_IOS_NGAP_PDUSessionResourceSetupResponseTransfer_ExtIEs_1_rows } }; -static const long asn_VAL_64_NGAP_id_NPN_Support = 258; -static const long asn_VAL_64_NGAP_reject = 0; -static const long asn_VAL_64_NGAP_optional = 0; -static const long asn_VAL_65_NGAP_id_ExtendedSliceSupportList = 270; -static const long asn_VAL_65_NGAP_reject = 0; -static const long asn_VAL_65_NGAP_optional = 0; +static const long asn_VAL_73_NGAP_id_PduSessionExpectedUEActivityBehaviour = 281; +static const long asn_VAL_73_NGAP_ignore = 1; +static const long asn_VAL_73_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceSwitchedItem_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_73_NGAP_id_PduSessionExpectedUEActivityBehaviour }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_73_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ExpectedUEActivityBehaviour }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_73_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceSwitchedItem_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_PDUSessionResourceSwitchedItem_ExtIEs_1_rows } +}; +static const long asn_VAL_74_NGAP_id_NPN_Support = 258; +static const long asn_VAL_74_NGAP_reject = 0; +static const long asn_VAL_74_NGAP_optional = 0; +static const long asn_VAL_75_NGAP_id_ExtendedSliceSupportList = 270; +static const long asn_VAL_75_NGAP_reject = 0; +static const long asn_VAL_75_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PLMNSupportItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_64_NGAP_id_NPN_Support }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_64_NGAP_reject }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_74_NGAP_id_NPN_Support }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_74_NGAP_reject }, { "&Extension", aioc__type, &asn_DEF_NGAP_NPN_Support }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_64_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_65_NGAP_id_ExtendedSliceSupportList }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_65_NGAP_reject }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_74_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_75_NGAP_id_ExtendedSliceSupportList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_75_NGAP_reject }, { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedSliceSupportList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_65_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_75_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PLMNSupportItem_ExtIEs_1[] = { { 2, 4, asn_IOS_NGAP_PLMNSupportItem_ExtIEs_1_rows } }; -static const long asn_VAL_66_NGAP_id_CurrentQoSParaSetIndex = 221; -static const long asn_VAL_66_NGAP_ignore = 1; -static const long asn_VAL_66_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowAcceptedItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_66_NGAP_id_CurrentQoSParaSetIndex }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_66_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_AlternativeQoSParaSetIndex }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_66_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_QosFlowAcceptedItem_ExtIEs_1[] = { - { 1, 4, asn_IOS_NGAP_QosFlowAcceptedItem_ExtIEs_1_rows } -}; -static const long asn_VAL_67_NGAP_id_TSCTrafficCharacteristics = 196; -static const long asn_VAL_67_NGAP_ignore = 1; -static const long asn_VAL_67_NGAP_optional = 0; -static const long asn_VAL_68_NGAP_id_RedundantQosFlowIndicator = 194; -static const long asn_VAL_68_NGAP_ignore = 1; -static const long asn_VAL_68_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowAddOrModifyRequestItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_67_NGAP_id_TSCTrafficCharacteristics }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_67_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_TSCTrafficCharacteristics }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_67_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_68_NGAP_id_RedundantQosFlowIndicator }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_68_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantQosFlowIndicator }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_68_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_QosFlowAddOrModifyRequestItem_ExtIEs_1[] = { - { 2, 4, asn_IOS_NGAP_QosFlowAddOrModifyRequestItem_ExtIEs_1_rows } -}; -static const long asn_VAL_69_NGAP_id_CurrentQoSParaSetIndex = 221; -static const long asn_VAL_69_NGAP_ignore = 1; -static const long asn_VAL_69_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_69_NGAP_id_CurrentQoSParaSetIndex }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_69_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_AlternativeQoSParaSetIndex }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_69_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_1[] = { - { 1, 4, asn_IOS_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_1_rows } -}; -static const long asn_VAL_70_NGAP_id_ULForwarding = 163; -static const long asn_VAL_70_NGAP_reject = 0; -static const long asn_VAL_70_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_70_NGAP_id_ULForwarding }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_70_NGAP_reject }, - { "&Extension", aioc__type, &asn_DEF_NGAP_ULForwarding }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_70_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1[] = { - { 1, 4, asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1_rows } -}; -static const long asn_VAL_71_NGAP_id_QosMonitoringRequest = 181; -static const long asn_VAL_71_NGAP_ignore = 1; -static const long asn_VAL_71_NGAP_optional = 0; -static const long asn_VAL_72_NGAP_id_QosMonitoringReportingFrequency = 276; -static const long asn_VAL_72_NGAP_ignore = 1; -static const long asn_VAL_72_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_71_NGAP_id_QosMonitoringRequest }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_71_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_QosMonitoringRequest }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_71_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_72_NGAP_id_QosMonitoringReportingFrequency }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_72_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_QosMonitoringReportingFrequency }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_72_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1[] = { - { 2, 4, asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1_rows } -}; -static const long asn_VAL_73_NGAP_id_CurrentQoSParaSetIndex = 221; -static const long asn_VAL_73_NGAP_ignore = 1; -static const long asn_VAL_73_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_73_NGAP_id_CurrentQoSParaSetIndex }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_73_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_AlternativeQoSParaSetNotifyIndex }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_73_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1[] = { - { 1, 4, asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1_rows } -}; -static const long asn_VAL_74_NGAP_id_TSCTrafficCharacteristics = 196; -static const long asn_VAL_74_NGAP_ignore = 1; -static const long asn_VAL_74_NGAP_optional = 0; -static const long asn_VAL_75_NGAP_id_RedundantQosFlowIndicator = 194; -static const long asn_VAL_75_NGAP_ignore = 1; -static const long asn_VAL_75_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_74_NGAP_id_TSCTrafficCharacteristics }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_74_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_TSCTrafficCharacteristics }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_74_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_75_NGAP_id_RedundantQosFlowIndicator }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_75_NGAP_ignore }, - { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantQosFlowIndicator }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_75_NGAP_optional } -}; -static const asn_ioc_set_t asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1[] = { - { 2, 4, asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1_rows } -}; static const long asn_VAL_76_NGAP_id_CurrentQoSParaSetIndex = 221; static const long asn_VAL_76_NGAP_ignore = 1; static const long asn_VAL_76_NGAP_optional = 0; -static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowItemWithDataForwarding_ExtIEs_1_rows[] = { +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowAcceptedItem_ExtIEs_1_rows[] = { { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_76_NGAP_id_CurrentQoSParaSetIndex }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_76_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_AlternativeQoSParaSetIndex }, { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_76_NGAP_optional } }; +static const asn_ioc_set_t asn_IOS_NGAP_QosFlowAcceptedItem_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_QosFlowAcceptedItem_ExtIEs_1_rows } +}; +static const long asn_VAL_77_NGAP_id_TSCTrafficCharacteristics = 196; +static const long asn_VAL_77_NGAP_ignore = 1; +static const long asn_VAL_77_NGAP_optional = 0; +static const long asn_VAL_78_NGAP_id_RedundantQosFlowIndicator = 194; +static const long asn_VAL_78_NGAP_ignore = 1; +static const long asn_VAL_78_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowAddOrModifyRequestItem_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_77_NGAP_id_TSCTrafficCharacteristics }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_77_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_TSCTrafficCharacteristics }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_77_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_78_NGAP_id_RedundantQosFlowIndicator }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_78_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantQosFlowIndicator }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_78_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_QosFlowAddOrModifyRequestItem_ExtIEs_1[] = { + { 2, 4, asn_IOS_NGAP_QosFlowAddOrModifyRequestItem_ExtIEs_1_rows } +}; +static const long asn_VAL_79_NGAP_id_CurrentQoSParaSetIndex = 221; +static const long asn_VAL_79_NGAP_ignore = 1; +static const long asn_VAL_79_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_79_NGAP_id_CurrentQoSParaSetIndex }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_79_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_AlternativeQoSParaSetIndex }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_79_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_1_rows } +}; +static const long asn_VAL_80_NGAP_id_ULForwarding = 163; +static const long asn_VAL_80_NGAP_ignore = 1; +static const long asn_VAL_80_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_80_NGAP_id_ULForwarding }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_80_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ULForwarding }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_80_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1_rows } +}; +static const long asn_VAL_81_NGAP_id_QosMonitoringRequest = 181; +static const long asn_VAL_81_NGAP_ignore = 1; +static const long asn_VAL_81_NGAP_optional = 0; +static const long asn_VAL_82_NGAP_id_QosMonitoringReportingFrequency = 276; +static const long asn_VAL_82_NGAP_ignore = 1; +static const long asn_VAL_82_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_81_NGAP_id_QosMonitoringRequest }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_81_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosMonitoringRequest }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_81_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_82_NGAP_id_QosMonitoringReportingFrequency }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_82_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_QosMonitoringReportingFrequency }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_82_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1[] = { + { 2, 4, asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1_rows } +}; +static const long asn_VAL_83_NGAP_id_CurrentQoSParaSetIndex = 221; +static const long asn_VAL_83_NGAP_ignore = 1; +static const long asn_VAL_83_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_83_NGAP_id_CurrentQoSParaSetIndex }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_83_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_AlternativeQoSParaSetNotifyIndex }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_83_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1_rows } +}; +static const long asn_VAL_84_NGAP_id_CNPacketDelayBudgetDL = 187; +static const long asn_VAL_84_NGAP_ignore = 1; +static const long asn_VAL_84_NGAP_optional = 0; +static const long asn_VAL_85_NGAP_id_CNPacketDelayBudgetUL = 188; +static const long asn_VAL_85_NGAP_ignore = 1; +static const long asn_VAL_85_NGAP_optional = 0; +static const long asn_VAL_86_NGAP_id_BurstArrivalTimeDownlink = 279; +static const long asn_VAL_86_NGAP_ignore = 1; +static const long asn_VAL_86_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowParametersItem_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_84_NGAP_id_CNPacketDelayBudgetDL }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_84_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedPacketDelayBudget }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_84_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_85_NGAP_id_CNPacketDelayBudgetUL }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_85_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedPacketDelayBudget }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_85_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_86_NGAP_id_BurstArrivalTimeDownlink }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_86_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_BurstArrivalTime }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_86_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_QosFlowParametersItem_ExtIEs_1[] = { + { 3, 4, asn_IOS_NGAP_QosFlowParametersItem_ExtIEs_1_rows } +}; +static const long asn_VAL_87_NGAP_id_TSCTrafficCharacteristics = 196; +static const long asn_VAL_87_NGAP_ignore = 1; +static const long asn_VAL_87_NGAP_optional = 0; +static const long asn_VAL_88_NGAP_id_RedundantQosFlowIndicator = 194; +static const long asn_VAL_88_NGAP_ignore = 1; +static const long asn_VAL_88_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_87_NGAP_id_TSCTrafficCharacteristics }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_87_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_TSCTrafficCharacteristics }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_87_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_88_NGAP_id_RedundantQosFlowIndicator }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_88_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_RedundantQosFlowIndicator }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_88_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1[] = { + { 2, 4, asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1_rows } +}; +static const long asn_VAL_89_NGAP_id_CurrentQoSParaSetIndex = 221; +static const long asn_VAL_89_NGAP_ignore = 1; +static const long asn_VAL_89_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_QosFlowItemWithDataForwarding_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_89_NGAP_id_CurrentQoSParaSetIndex }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_89_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_AlternativeQoSParaSetIndex }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_89_NGAP_optional } +}; static const asn_ioc_set_t asn_IOS_NGAP_QosFlowItemWithDataForwarding_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_QosFlowItemWithDataForwarding_ExtIEs_1_rows } }; -static const long asn_VAL_77_NGAP_id_ExtendedRATRestrictionInformation = 180; -static const long asn_VAL_77_NGAP_ignore = 1; -static const long asn_VAL_77_NGAP_optional = 0; +static const long asn_VAL_90_NGAP_id_ExtendedRATRestrictionInformation = 180; +static const long asn_VAL_90_NGAP_ignore = 1; +static const long asn_VAL_90_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_RATRestrictions_Item_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_77_NGAP_id_ExtendedRATRestrictionInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_77_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_90_NGAP_id_ExtendedRATRestrictionInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_90_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_ExtendedRATRestrictionInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_77_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_90_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_RATRestrictions_Item_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_RATRestrictions_Item_ExtIEs_1_rows } }; -static const long asn_VAL_78_NGAP_id_MaximumIntegrityProtectedDataRate_DL = 151; -static const long asn_VAL_78_NGAP_ignore = 1; -static const long asn_VAL_78_NGAP_optional = 0; +static const long asn_VAL_91_NGAP_id_MaximumIntegrityProtectedDataRate_DL = 151; +static const long asn_VAL_91_NGAP_ignore = 1; +static const long asn_VAL_91_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_SecurityIndication_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_78_NGAP_id_MaximumIntegrityProtectedDataRate_DL }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_78_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_91_NGAP_id_MaximumIntegrityProtectedDataRate_DL }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_91_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_MaximumIntegrityProtectedDataRate }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_78_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_91_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_SecurityIndication_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_SecurityIndication_ExtIEs_1_rows } }; -static const long asn_VAL_79_NGAP_id_GUAMIType = 176; -static const long asn_VAL_79_NGAP_ignore = 1; -static const long asn_VAL_79_NGAP_optional = 0; +static const long asn_VAL_92_NGAP_id_GUAMIType = 176; +static const long asn_VAL_92_NGAP_ignore = 1; +static const long asn_VAL_92_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_ServedGUAMIItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_79_NGAP_id_GUAMIType }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_79_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_92_NGAP_id_GUAMIType }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_92_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_GUAMIType }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_79_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_92_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_ServedGUAMIItem_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_ServedGUAMIItem_ExtIEs_1_rows } }; -static const long asn_VAL_80_NGAP_id_SgNB_UE_X2AP_ID = 182; -static const long asn_VAL_80_NGAP_ignore = 1; -static const long asn_VAL_80_NGAP_optional = 0; -static const long asn_VAL_81_NGAP_id_UEHistoryInformationFromTheUE = 253; -static const long asn_VAL_81_NGAP_ignore = 1; -static const long asn_VAL_81_NGAP_optional = 0; +static const long asn_VAL_93_NGAP_id_SgNB_UE_X2AP_ID = 182; +static const long asn_VAL_93_NGAP_ignore = 1; +static const long asn_VAL_93_NGAP_optional = 0; +static const long asn_VAL_94_NGAP_id_UEHistoryInformationFromTheUE = 253; +static const long asn_VAL_94_NGAP_ignore = 1; +static const long asn_VAL_94_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_80_NGAP_id_SgNB_UE_X2AP_ID }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_80_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_93_NGAP_id_SgNB_UE_X2AP_ID }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_93_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_SgNB_UE_X2AP_ID }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_80_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_81_NGAP_id_UEHistoryInformationFromTheUE }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_81_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_93_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_94_NGAP_id_UEHistoryInformationFromTheUE }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_94_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UEHistoryInformationFromTheUE }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_81_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_94_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_1[] = { { 2, 4, asn_IOS_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_1_rows } }; -static const long asn_VAL_82_NGAP_id_ConfiguredTACIndication = 272; -static const long asn_VAL_82_NGAP_ignore = 1; -static const long asn_VAL_82_NGAP_optional = 0; -static const long asn_VAL_83_NGAP_id_RAT_Information = 179; -static const long asn_VAL_83_NGAP_reject = 0; -static const long asn_VAL_83_NGAP_optional = 0; +static const long asn_VAL_95_NGAP_id_ConfiguredTACIndication = 272; +static const long asn_VAL_95_NGAP_ignore = 1; +static const long asn_VAL_95_NGAP_optional = 0; +static const long asn_VAL_96_NGAP_id_RAT_Information = 179; +static const long asn_VAL_96_NGAP_reject = 0; +static const long asn_VAL_96_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_SupportedTAItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_82_NGAP_id_ConfiguredTACIndication }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_82_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_95_NGAP_id_ConfiguredTACIndication }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_95_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_ConfiguredTACIndication }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_82_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_83_NGAP_id_RAT_Information }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_83_NGAP_reject }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_95_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_96_NGAP_id_RAT_Information }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_96_NGAP_reject }, { "&Extension", aioc__type, &asn_DEF_NGAP_RAT_Information }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_83_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_96_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_SupportedTAItem_ExtIEs_1[] = { { 2, 4, asn_IOS_NGAP_SupportedTAItem_ExtIEs_1_rows } }; -static const long asn_VAL_84_NGAP_id_DAPSResponseInfoList = 267; -static const long asn_VAL_84_NGAP_reject = 0; -static const long asn_VAL_84_NGAP_optional = 0; +static const long asn_VAL_97_NGAP_id_DAPSResponseInfoList = 267; +static const long asn_VAL_97_NGAP_ignore = 1; +static const long asn_VAL_97_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_84_NGAP_id_DAPSResponseInfoList }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_84_NGAP_reject }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_97_NGAP_id_DAPSResponseInfoList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_97_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_DAPSResponseInfoList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_84_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_97_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1_rows } }; -static const long asn_VAL_85_NGAP_id_MDTConfiguration = 255; -static const long asn_VAL_85_NGAP_ignore = 1; -static const long asn_VAL_85_NGAP_optional = 0; -static const long asn_VAL_86_NGAP_id_TraceCollectionEntityURI = 257; -static const long asn_VAL_86_NGAP_ignore = 1; -static const long asn_VAL_86_NGAP_optional = 0; +static const long asn_VAL_98_NGAP_id_MDTConfiguration = 255; +static const long asn_VAL_98_NGAP_ignore = 1; +static const long asn_VAL_98_NGAP_optional = 0; +static const long asn_VAL_99_NGAP_id_TraceCollectionEntityURI = 257; +static const long asn_VAL_99_NGAP_ignore = 1; +static const long asn_VAL_99_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_TraceActivation_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_85_NGAP_id_MDTConfiguration }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_85_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_98_NGAP_id_MDTConfiguration }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_98_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_MDT_Configuration }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_85_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_86_NGAP_id_TraceCollectionEntityURI }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_86_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_98_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_99_NGAP_id_TraceCollectionEntityURI }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_99_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_URI_address }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_86_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_99_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_TraceActivation_ExtIEs_1[] = { { 2, 4, asn_IOS_NGAP_TraceActivation_ExtIEs_1_rows } }; -static const long asn_VAL_87_NGAP_id_UERadioCapabilityForPagingOfNB_IoT = 214; -static const long asn_VAL_87_NGAP_ignore = 1; -static const long asn_VAL_87_NGAP_optional = 0; +static const long asn_VAL_100_NGAP_id_UERadioCapabilityForPagingOfNB_IoT = 214; +static const long asn_VAL_100_NGAP_ignore = 1; +static const long asn_VAL_100_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_UERadioCapabilityForPaging_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_87_NGAP_id_UERadioCapabilityForPagingOfNB_IoT }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_87_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_100_NGAP_id_UERadioCapabilityForPagingOfNB_IoT }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_100_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UERadioCapabilityForPagingOfNB_IoT }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_87_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_100_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_UERadioCapabilityForPaging_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_UERadioCapabilityForPaging_ExtIEs_1_rows } }; -static const long asn_VAL_88_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; -static const long asn_VAL_88_NGAP_ignore = 1; -static const long asn_VAL_88_NGAP_optional = 0; -static const long asn_VAL_89_NGAP_id_RedundantDL_NGU_UP_TNLInformation = 192; -static const long asn_VAL_89_NGAP_ignore = 1; -static const long asn_VAL_89_NGAP_optional = 0; +static const long asn_VAL_101_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; +static const long asn_VAL_101_NGAP_ignore = 1; +static const long asn_VAL_101_NGAP_optional = 0; +static const long asn_VAL_102_NGAP_id_RedundantDL_NGU_UP_TNLInformation = 192; +static const long asn_VAL_102_NGAP_ignore = 1; +static const long asn_VAL_102_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_88_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_88_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_101_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_101_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_88_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_89_NGAP_id_RedundantDL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_89_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_101_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_102_NGAP_id_RedundantDL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_102_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_89_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_102_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1[] = { { 2, 4, asn_IOS_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1_rows } }; -static const long asn_VAL_90_NGAP_id_PSCellInformation = 149; -static const long asn_VAL_90_NGAP_ignore = 1; -static const long asn_VAL_90_NGAP_optional = 0; +static const long asn_VAL_103_NGAP_id_CommonNetworkInstance = 166; +static const long asn_VAL_103_NGAP_ignore = 1; +static const long asn_VAL_103_NGAP_optional = 0; +static const asn_ioc_cell_t asn_IOS_NGAP_UPTransportLayerInformationItem_ExtIEs_1_rows[] = { + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_103_NGAP_id_CommonNetworkInstance }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_103_NGAP_ignore }, + { "&Extension", aioc__type, &asn_DEF_NGAP_CommonNetworkInstance }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_103_NGAP_optional } +}; +static const asn_ioc_set_t asn_IOS_NGAP_UPTransportLayerInformationItem_ExtIEs_1[] = { + { 1, 4, asn_IOS_NGAP_UPTransportLayerInformationItem_ExtIEs_1_rows } +}; +static const long asn_VAL_104_NGAP_id_PSCellInformation = 149; +static const long asn_VAL_104_NGAP_ignore = 1; +static const long asn_VAL_104_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_UserLocationInformationEUTRA_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_90_NGAP_id_PSCellInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_90_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_104_NGAP_id_PSCellInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_104_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_NGRAN_CGI }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_90_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_104_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_UserLocationInformationEUTRA_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_UserLocationInformationEUTRA_ExtIEs_1_rows } }; -static const long asn_VAL_91_NGAP_id_PSCellInformation = 149; -static const long asn_VAL_91_NGAP_ignore = 1; -static const long asn_VAL_91_NGAP_optional = 0; -static const long asn_VAL_92_NGAP_id_NID = 263; -static const long asn_VAL_92_NGAP_reject = 0; -static const long asn_VAL_92_NGAP_optional = 0; +static const long asn_VAL_105_NGAP_id_PSCellInformation = 149; +static const long asn_VAL_105_NGAP_ignore = 1; +static const long asn_VAL_105_NGAP_optional = 0; +static const long asn_VAL_106_NGAP_id_NID = 263; +static const long asn_VAL_106_NGAP_reject = 0; +static const long asn_VAL_106_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_UserLocationInformationNR_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_91_NGAP_id_PSCellInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_91_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_105_NGAP_id_PSCellInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_105_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_NGRAN_CGI }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_91_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_92_NGAP_id_NID }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_92_NGAP_reject }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_105_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_106_NGAP_id_NID }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_106_NGAP_reject }, { "&Extension", aioc__type, &asn_DEF_NGAP_NID }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_92_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_106_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_UserLocationInformationNR_ExtIEs_1[] = { { 2, 4, asn_IOS_NGAP_UserLocationInformationNR_ExtIEs_1_rows } }; -static const long asn_VAL_93_NGAP_id_SCTP_TLAs = 173; -static const long asn_VAL_93_NGAP_ignore = 1; -static const long asn_VAL_93_NGAP_optional = 0; +static const long asn_VAL_107_NGAP_id_SCTP_TLAs = 173; +static const long asn_VAL_107_NGAP_ignore = 1; +static const long asn_VAL_107_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_XnExtTLA_Item_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_93_NGAP_id_SCTP_TLAs }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_93_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolExtensionID, &asn_VAL_107_NGAP_id_SCTP_TLAs }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_107_NGAP_ignore }, { "&Extension", aioc__type, &asn_DEF_NGAP_SCTP_TLAs }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_93_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_107_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_XnExtTLA_Item_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_XnExtTLA_Item_ExtIEs_1_rows } @@ -13929,6 +14057,33 @@ memb_NGAP_id_constraint_741(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_PDUSessionResourceSetupItemCxtReq_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_741(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -13948,6 +14103,33 @@ memb_NGAP_criticality_constraint_741(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_PDUSessionResourceSetupItemCxtReq_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_741(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -14055,6 +14237,33 @@ memb_NGAP_id_constraint_749(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_PDUSessionResourceSetupItemHOReq_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_749(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -14074,6 +14283,33 @@ memb_NGAP_criticality_constraint_749(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_PDUSessionResourceSetupItemHOReq_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_749(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -14118,6 +14354,33 @@ memb_NGAP_id_constraint_753(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_PDUSessionResourceSetupItemSUReq_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_753(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -14137,6 +14400,33 @@ memb_NGAP_criticality_constraint_753(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_PDUSessionResourceSetupItemSUReq_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_753(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -14487,6 +14777,33 @@ memb_NGAP_id_constraint_773(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_PDUSessionResourceSwitchedItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_PDUSessionResourceSwitchedItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_773(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -14506,6 +14823,33 @@ memb_NGAP_criticality_constraint_773(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_PDUSessionResourceSwitchedItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_PDUSessionResourceSwitchedItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_773(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15333,33 +15677,6 @@ memb_NGAP_id_constraint_813(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_QosFlowInformationItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_813(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15379,33 +15696,6 @@ memb_NGAP_criticality_constraint_813(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_QosFlowInformationItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_813(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15451,13 +15741,13 @@ memb_NGAP_id_constraint_817(const asn_TYPE_descriptor_t *td, const void *sptr, } static asn_type_selector_result_t -select_QosFlowLevelQosParameters_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { +select_QosFlowInformationItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1; size_t constraining_column = 0; /* &id */ size_t for_column = 1; /* &criticality */ size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, id)); + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, id)); for(row=0; row < itable->rows_count; row++) { const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; @@ -15497,13 +15787,13 @@ memb_NGAP_criticality_constraint_817(const asn_TYPE_descriptor_t *td, const void } static asn_type_selector_result_t -select_QosFlowLevelQosParameters_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { +select_QosFlowInformationItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowInformationItem_ExtIEs_1; size_t constraining_column = 0; /* &id */ size_t for_column = 2; /* &Extension */ size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, id)); + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, id)); for(row=0; row < itable->rows_count; row++) { const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; @@ -15567,6 +15857,33 @@ memb_NGAP_id_constraint_821(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_QosFlowLevelQosParameters_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_821(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15586,6 +15903,33 @@ memb_NGAP_criticality_constraint_821(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_QosFlowLevelQosParameters_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowLevelQosParameters_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_821(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15693,33 +16037,6 @@ memb_NGAP_id_constraint_829(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_QosFlowNotifyItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_829(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15739,33 +16056,6 @@ memb_NGAP_criticality_constraint_829(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_QosFlowNotifyItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_829(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15810,6 +16100,33 @@ memb_NGAP_id_constraint_833(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_QosFlowNotifyItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_833(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15829,6 +16146,33 @@ memb_NGAP_criticality_constraint_833(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_QosFlowNotifyItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowNotifyItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_833(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15873,6 +16217,33 @@ memb_NGAP_id_constraint_837(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_QosFlowParametersItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowParametersItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_837(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15892,6 +16263,33 @@ memb_NGAP_criticality_constraint_837(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_QosFlowParametersItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowParametersItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_837(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -15999,33 +16397,6 @@ memb_NGAP_id_constraint_845(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_QosFlowSetupRequestItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_845(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -16045,33 +16416,6 @@ memb_NGAP_criticality_constraint_845(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_QosFlowSetupRequestItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_845(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -16117,13 +16461,13 @@ memb_NGAP_id_constraint_849(const asn_TYPE_descriptor_t *td, const void *sptr, } static asn_type_selector_result_t -select_QosFlowItemWithDataForwarding_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { +select_QosFlowSetupRequestItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowItemWithDataForwarding_ExtIEs_1; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1; size_t constraining_column = 0; /* &id */ size_t for_column = 1; /* &criticality */ size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, id)); + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, id)); for(row=0; row < itable->rows_count; row++) { const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; @@ -16163,13 +16507,13 @@ memb_NGAP_criticality_constraint_849(const asn_TYPE_descriptor_t *td, const void } static asn_type_selector_result_t -select_QosFlowItemWithDataForwarding_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { +select_QosFlowSetupRequestItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowItemWithDataForwarding_ExtIEs_1; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowSetupRequestItem_ExtIEs_1; size_t constraining_column = 0; /* &id */ size_t for_column = 2; /* &Extension */ size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, id)); + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, id)); for(row=0; row < itable->rows_count; row++) { const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; @@ -16233,6 +16577,33 @@ memb_NGAP_id_constraint_853(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_QosFlowItemWithDataForwarding_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowItemWithDataForwarding_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_853(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -16252,6 +16623,33 @@ memb_NGAP_criticality_constraint_853(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_QosFlowItemWithDataForwarding_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_QosFlowItemWithDataForwarding_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_853(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -16422,33 +16820,6 @@ memb_NGAP_id_constraint_865(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_RATRestrictions_Item_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_RATRestrictions_Item_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_865(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -16468,33 +16839,6 @@ memb_NGAP_criticality_constraint_865(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_RATRestrictions_Item_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_RATRestrictions_Item_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_865(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -16539,6 +16883,33 @@ memb_NGAP_id_constraint_869(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_RATRestrictions_Item_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_RATRestrictions_Item_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_869(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -16558,6 +16929,33 @@ memb_NGAP_criticality_constraint_869(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_RATRestrictions_Item_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_RATRestrictions_Item_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_869(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -17232,33 +17630,6 @@ memb_NGAP_id_constraint_913(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_SecurityIndication_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_SecurityIndication_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SecurityIndication_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_913(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -17278,33 +17649,6 @@ memb_NGAP_criticality_constraint_913(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_SecurityIndication_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_SecurityIndication_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SecurityIndication_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_913(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -17349,6 +17693,33 @@ memb_NGAP_id_constraint_917(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_SecurityIndication_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_SecurityIndication_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SecurityIndication_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_917(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -17368,6 +17739,33 @@ memb_NGAP_criticality_constraint_917(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_SecurityIndication_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_SecurityIndication_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SecurityIndication_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_917(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -17538,33 +17936,6 @@ memb_NGAP_id_constraint_929(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_ServedGUAMIItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_ServedGUAMIItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_929(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -17584,33 +17955,6 @@ memb_NGAP_criticality_constraint_929(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_ServedGUAMIItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_ServedGUAMIItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_929(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -17655,6 +17999,33 @@ memb_NGAP_id_constraint_933(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_ServedGUAMIItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_ServedGUAMIItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_933(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -17674,6 +18045,33 @@ memb_NGAP_criticality_constraint_933(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_ServedGUAMIItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_ServedGUAMIItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_933(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18096,33 +18494,6 @@ memb_NGAP_id_constraint_961(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_961(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18142,33 +18513,6 @@ memb_NGAP_criticality_constraint_961(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_961(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18213,6 +18557,33 @@ memb_NGAP_id_constraint_965(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_965(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18232,6 +18603,33 @@ memb_NGAP_criticality_constraint_965(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_965(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18339,33 +18737,6 @@ memb_NGAP_id_constraint_973(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_SupportedTAItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_SupportedTAItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SupportedTAItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_973(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18385,33 +18756,6 @@ memb_NGAP_criticality_constraint_973(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_SupportedTAItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_SupportedTAItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SupportedTAItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_973(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18456,6 +18800,33 @@ memb_NGAP_id_constraint_977(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_SupportedTAItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_SupportedTAItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SupportedTAItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_977(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18475,6 +18846,33 @@ memb_NGAP_criticality_constraint_977(const asn_TYPE_descriptor_t *td, const void return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_SupportedTAItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_SupportedTAItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_SupportedTAItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_977(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -18960,33 +19358,6 @@ memb_NGAP_id_constraint_1009(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_1009(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -19006,33 +19377,6 @@ memb_NGAP_criticality_constraint_1009(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_1009(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -19077,6 +19421,33 @@ memb_NGAP_id_constraint_1013(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_1013(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -19096,6 +19467,33 @@ memb_NGAP_criticality_constraint_1013(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_1013(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -19392,33 +19790,6 @@ memb_NGAP_id_constraint_1033(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_TraceActivation_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_TraceActivation_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_TraceActivation_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_1033(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -19438,33 +19809,6 @@ memb_NGAP_criticality_constraint_1033(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_TraceActivation_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_TraceActivation_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_TraceActivation_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_1033(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -19509,6 +19853,33 @@ memb_NGAP_id_constraint_1037(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_TraceActivation_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_TraceActivation_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_TraceActivation_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_1037(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -19528,6 +19899,33 @@ memb_NGAP_criticality_constraint_1037(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_TraceActivation_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_TraceActivation_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_TraceActivation_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_1037(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20265,33 +20663,6 @@ memb_NGAP_id_constraint_1085(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_UERadioCapabilityForPaging_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_UERadioCapabilityForPaging_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_1085(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20311,33 +20682,6 @@ memb_NGAP_criticality_constraint_1085(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_UERadioCapabilityForPaging_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_UERadioCapabilityForPaging_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_1085(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20382,6 +20726,33 @@ memb_NGAP_id_constraint_1089(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_UERadioCapabilityForPaging_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_UERadioCapabilityForPaging_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_1089(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20401,6 +20772,33 @@ memb_NGAP_criticality_constraint_1089(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_UERadioCapabilityForPaging_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_UERadioCapabilityForPaging_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_1089(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20508,33 +20906,6 @@ memb_NGAP_id_constraint_1097(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_UL_NGU_UP_TNLModifyItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_1097(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20554,33 +20925,6 @@ memb_NGAP_criticality_constraint_1097(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_UL_NGU_UP_TNLModifyItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_1097(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20625,6 +20969,33 @@ memb_NGAP_id_constraint_1101(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_UL_NGU_UP_TNLModifyItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_1101(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20644,6 +21015,33 @@ memb_NGAP_criticality_constraint_1101(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_UL_NGU_UP_TNLModifyItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_1101(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20751,6 +21149,33 @@ memb_NGAP_id_constraint_1109(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_UPTransportLayerInformationItem_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_UPTransportLayerInformationItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_1109(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20770,6 +21195,33 @@ memb_NGAP_criticality_constraint_1109(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_UPTransportLayerInformationItem_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_UPTransportLayerInformationItem_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_1109(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -20814,6 +21266,69 @@ memb_NGAP_id_constraint_1113(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static int +memb_NGAP_criticality_constraint_1113(const asn_TYPE_descriptor_t *td, const void *sptr, + asn_app_constraint_failed_f *ctfailcb, void *app_key) { + + if(!sptr) { + ASN__CTFAIL(app_key, td, sptr, + "%s: value not given (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } + + + if(1 /* No applicable constraints whatsoever */) { + /* Nothing is here. See below */ + } + + return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); +} + +static int +memb_NGAP_extensionValue_constraint_1113(const asn_TYPE_descriptor_t *td, const void *sptr, + asn_app_constraint_failed_f *ctfailcb, void *app_key) { + + if(!sptr) { + ASN__CTFAIL(app_key, td, sptr, + "%s: value not given (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } + + + if(1 /* No applicable constraints whatsoever */) { + /* Nothing is here. See below */ + } + + return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); +} + +static int +memb_NGAP_id_constraint_1117(const asn_TYPE_descriptor_t *td, const void *sptr, + asn_app_constraint_failed_f *ctfailcb, void *app_key) { + long value; + + if(!sptr) { + ASN__CTFAIL(app_key, td, sptr, + "%s: value not given (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } + + value = *(const long *)sptr; + + if((value >= 0L && value <= 65535L)) { + /* Constraint check succeeded */ + return 0; + } else { + ASN__CTFAIL(app_key, td, sptr, + "%s: constraint failed (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } +} + static asn_type_selector_result_t select_UserLocationInformationEUTRA_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { asn_type_selector_result_t result = {0, 0}; @@ -20842,7 +21357,7 @@ select_UserLocationInformationEUTRA_ExtIEs_NGAP_criticality_type(const asn_TYPE_ } static int -memb_NGAP_criticality_constraint_1113(const asn_TYPE_descriptor_t *td, const void *sptr, +memb_NGAP_criticality_constraint_1117(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { if(!sptr) { @@ -20887,69 +21402,6 @@ select_UserLocationInformationEUTRA_ExtIEs_NGAP_extensionValue_type(const asn_TY return result; } -static int -memb_NGAP_extensionValue_constraint_1113(const asn_TYPE_descriptor_t *td, const void *sptr, - asn_app_constraint_failed_f *ctfailcb, void *app_key) { - - if(!sptr) { - ASN__CTFAIL(app_key, td, sptr, - "%s: value not given (%s:%d)", - td->name, __FILE__, __LINE__); - return -1; - } - - - if(1 /* No applicable constraints whatsoever */) { - /* Nothing is here. See below */ - } - - return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); -} - -static int -memb_NGAP_id_constraint_1117(const asn_TYPE_descriptor_t *td, const void *sptr, - asn_app_constraint_failed_f *ctfailcb, void *app_key) { - long value; - - if(!sptr) { - ASN__CTFAIL(app_key, td, sptr, - "%s: value not given (%s:%d)", - td->name, __FILE__, __LINE__); - return -1; - } - - value = *(const long *)sptr; - - if((value >= 0L && value <= 65535L)) { - /* Constraint check succeeded */ - return 0; - } else { - ASN__CTFAIL(app_key, td, sptr, - "%s: constraint failed (%s:%d)", - td->name, __FILE__, __LINE__); - return -1; - } -} - -static int -memb_NGAP_criticality_constraint_1117(const asn_TYPE_descriptor_t *td, const void *sptr, - asn_app_constraint_failed_f *ctfailcb, void *app_key) { - - if(!sptr) { - ASN__CTFAIL(app_key, td, sptr, - "%s: value not given (%s:%d)", - td->name, __FILE__, __LINE__); - return -1; - } - - - if(1 /* No applicable constraints whatsoever */) { - /* Nothing is here. See below */ - } - - return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); -} - static int memb_NGAP_extensionValue_constraint_1117(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21120,33 +21572,6 @@ memb_NGAP_id_constraint_1129(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_UserLocationInformationNR_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_UserLocationInformationNR_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_1129(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21166,33 +21591,6 @@ memb_NGAP_criticality_constraint_1129(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_UserLocationInformationNR_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_UserLocationInformationNR_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_1129(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21237,6 +21635,33 @@ memb_NGAP_id_constraint_1133(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_UserLocationInformationNR_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_UserLocationInformationNR_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_1133(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21256,6 +21681,33 @@ memb_NGAP_criticality_constraint_1133(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_UserLocationInformationNR_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_UserLocationInformationNR_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_1133(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21552,33 +22004,6 @@ memb_NGAP_id_constraint_1153(const asn_TYPE_descriptor_t *td, const void *sptr, } } -static asn_type_selector_result_t -select_XnExtTLA_Item_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_XnExtTLA_Item_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 1; /* &criticality */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_criticality_constraint_1153(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21598,33 +22023,6 @@ memb_NGAP_criticality_constraint_1153(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } -static asn_type_selector_result_t -select_XnExtTLA_Item_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { - asn_type_selector_result_t result = {0, 0}; - const asn_ioc_set_t *itable = asn_IOS_NGAP_XnExtTLA_Item_ExtIEs_1; - size_t constraining_column = 0; /* &id */ - size_t for_column = 2; /* &Extension */ - size_t row, presence_index = 0; - const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, id)); - - for(row=0; row < itable->rows_count; row++) { - const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; - const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; - - if(type_cell->cell_kind == aioc__undefined) - continue; - - presence_index++; - if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { - result.type_descriptor = type_cell->type_descriptor; - result.presence_index = presence_index; - break; - } - } - - return result; -} - static int memb_NGAP_extensionValue_constraint_1153(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21669,6 +22067,33 @@ memb_NGAP_id_constraint_1157(const asn_TYPE_descriptor_t *td, const void *sptr, } } +static asn_type_selector_result_t +select_XnExtTLA_Item_ExtIEs_NGAP_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_XnExtTLA_Item_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 1; /* &criticality */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_criticality_constraint_1157(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21688,6 +22113,33 @@ memb_NGAP_criticality_constraint_1157(const asn_TYPE_descriptor_t *td, const voi return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static asn_type_selector_result_t +select_XnExtTLA_Item_ExtIEs_NGAP_extensionValue_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) { + asn_type_selector_result_t result = {0, 0}; + const asn_ioc_set_t *itable = asn_IOS_NGAP_XnExtTLA_Item_ExtIEs_1; + size_t constraining_column = 0; /* &id */ + size_t for_column = 2; /* &Extension */ + size_t row, presence_index = 0; + const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, id)); + + for(row=0; row < itable->rows_count; row++) { + const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column]; + const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column]; + + if(type_cell->cell_kind == aioc__undefined) + continue; + + presence_index++; + if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) { + result.type_descriptor = type_cell->type_descriptor; + result.presence_index = presence_index; + break; + } + } + + return result; +} + static int memb_NGAP_extensionValue_constraint_1157(const asn_TYPE_descriptor_t *td, const void *sptr, asn_app_constraint_failed_f *ctfailcb, void *app_key) { @@ -21707,6 +22159,69 @@ memb_NGAP_extensionValue_constraint_1157(const asn_TYPE_descriptor_t *td, const return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); } +static int +memb_NGAP_id_constraint_1161(const asn_TYPE_descriptor_t *td, const void *sptr, + asn_app_constraint_failed_f *ctfailcb, void *app_key) { + long value; + + if(!sptr) { + ASN__CTFAIL(app_key, td, sptr, + "%s: value not given (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } + + value = *(const long *)sptr; + + if((value >= 0L && value <= 65535L)) { + /* Constraint check succeeded */ + return 0; + } else { + ASN__CTFAIL(app_key, td, sptr, + "%s: constraint failed (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } +} + +static int +memb_NGAP_criticality_constraint_1161(const asn_TYPE_descriptor_t *td, const void *sptr, + asn_app_constraint_failed_f *ctfailcb, void *app_key) { + + if(!sptr) { + ASN__CTFAIL(app_key, td, sptr, + "%s: value not given (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } + + + if(1 /* No applicable constraints whatsoever */) { + /* Nothing is here. See below */ + } + + return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); +} + +static int +memb_NGAP_extensionValue_constraint_1161(const asn_TYPE_descriptor_t *td, const void *sptr, + asn_app_constraint_failed_f *ctfailcb, void *app_key) { + + if(!sptr) { + ASN__CTFAIL(app_key, td, sptr, + "%s: value not given (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } + + + if(1 /* No applicable constraints whatsoever */) { + /* Nothing is here. See below */ + } + + return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key); +} + #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) static asn_per_constraints_t asn_PER_memb_NGAP_id_constr_2 CC_NOTUSED = { { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (0..65535) */, @@ -27797,6 +28312,27 @@ static asn_per_constraints_t asn_PER_memb_NGAP_extensionValue_constr_1160 CC_NOT 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +static asn_per_constraints_t asn_PER_memb_NGAP_id_constr_1162 CC_NOTUSED = { + { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (0..65535) */, + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +static asn_per_constraints_t asn_PER_memb_NGAP_criticality_constr_1163 CC_NOTUSED = { + { APC_CONSTRAINED, 2, 2, 0, 2 } /* (0..2) */, + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +static asn_per_constraints_t asn_PER_memb_NGAP_extensionValue_constr_1164 CC_NOTUSED = { + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_4[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_AdditionalDLUPTNLInformationForHOItem_ExtIEs__extensionValue, choice.UPTransportLayerInformation), -1 /* Ambiguous tag (CHOICE?) */, @@ -32976,9 +33512,65 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_164[] = { 0, 0, /* No default value */ "PagingeDRXInformation" }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue, choice.ExtendedUEIdentityIndexValue), + (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)), + 0, + &asn_DEF_NGAP_ExtendedUEIdentityIndexValue, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExtendedUEIdentityIndexValue" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue, choice.UERadioCapabilityForPaging), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_UERadioCapabilityForPaging, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "UERadioCapabilityForPaging" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue, choice.MicoAllPLMN), + (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), + 0, + &asn_DEF_NGAP_MicoAllPLMN, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "MicoAllPLMN" + }, }; +static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_164[] = { 1, 3, 0, 2 }; +static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_164[] = { 2, 0, 3, 1 }; static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_164[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* PagingeDRXInformation */ + { (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)), 1, 0, 0 }, /* ExtendedUEIdentityIndexValue */ + { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 3, 0, 0 }, /* MicoAllPLMN */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 1 }, /* PagingeDRXInformation */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 2, -1, 0 } /* UERadioCapabilityForPaging */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_164 = { sizeof(struct NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue), @@ -32986,8 +33578,9 @@ static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_164 = { offsetof(struct NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue, present), sizeof(((struct NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue *)0)->present), asn_MAP_NGAP_extensionValue_tag2el_164, - 1, /* Count of tags in the map */ - 0, 0, + 4, /* Count of tags in the map */ + asn_MAP_NGAP_extensionValue_to_canonical_164, + asn_MAP_NGAP_extensionValue_from_canonical_164, -1 /* Extensions start */ }; static /* Use -fall-defs-global to expose */ @@ -33009,7 +33602,7 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_164 = { OPEN_TYPE_constraint }, asn_MBR_NGAP_extensionValue_164, - 1, /* Elements count */ + 4, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_164 /* Additional specs */ }; @@ -40053,13 +40646,31 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_384[] = { 0, 0, /* No default value */ "DataForwardingResponseERABList" }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_HandoverCommandTransfer_ExtIEs__extensionValue, choice.QosFlowListWithCause), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_QosFlowListWithCause, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "QosFlowListWithCause" + }, }; -static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_384[] = { 0, 2, 3, 1 }; -static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_384[] = { 0, 3, 1, 2 }; +static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_384[] = { 0, 2, 3, 4, 1 }; +static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_384[] = { 0, 4, 1, 2, 3 }; static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_384[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 2 }, /* QosFlowPerTNLInformationList */ - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 2, -1, 1 }, /* UPTransportLayerInformationList */ - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 3, -2, 0 }, /* DataForwardingResponseERABList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 3 }, /* QosFlowPerTNLInformationList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 2, -1, 2 }, /* UPTransportLayerInformationList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 3, -2, 1 }, /* DataForwardingResponseERABList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 4, -3, 0 }, /* QosFlowListWithCause */ { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 1, 0, 0 }, /* gTPTunnel */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* choice-Extensions */ }; @@ -40069,7 +40680,7 @@ static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_384 = { offsetof(struct NGAP_HandoverCommandTransfer_ExtIEs__extensionValue, present), sizeof(((struct NGAP_HandoverCommandTransfer_ExtIEs__extensionValue *)0)->present), asn_MAP_NGAP_extensionValue_tag2el_384, - 5, /* Count of tags in the map */ + 6, /* Count of tags in the map */ asn_MAP_NGAP_extensionValue_to_canonical_384, asn_MAP_NGAP_extensionValue_from_canonical_384, -1 /* Extensions start */ @@ -40093,7 +40704,7 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_384 = { OPEN_TYPE_constraint }, asn_MBR_NGAP_extensionValue_384, - 4, /* Elements count */ + 5, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_384 /* Additional specs */ }; @@ -48809,8 +49420,8 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_648[] = { 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -#if 0 /* modified by acetcom */ - &asn_PER_memb_NGAP_OCTET_STRING_CONTAINING_PDUSessionResourceReleaseResponseTransfer__constr_43, +#if 0 + &asn_PER_memb_NGAP_OCTET_STRING_CONTAINING_PDUSessionResourceReleaseResponseTransfer__constr_47, #else 0, #endif @@ -50211,9 +50822,27 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_684[] = { 0, 0, /* No default value */ "S-NSSAI" }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue, choice.ExpectedUEActivityBehaviour), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_ExpectedUEActivityBehaviour, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExpectedUEActivityBehaviour" + }, }; static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_684[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* S-NSSAI */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 1 }, /* S-NSSAI */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, -1, 0 } /* ExpectedUEActivityBehaviour */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_684 = { sizeof(struct NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue), @@ -50221,7 +50850,7 @@ static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_684 = { offsetof(struct NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue, present), sizeof(((struct NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue *)0)->present), asn_MAP_NGAP_extensionValue_tag2el_684, - 1, /* Count of tags in the map */ + 2, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -50244,7 +50873,7 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_684 = { OPEN_TYPE_constraint }, asn_MBR_NGAP_extensionValue_684, - 1, /* Elements count */ + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_684 /* Additional specs */ }; @@ -50882,9 +51511,27 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_704[] = { 0, 0, /* No default value */ "SecondaryRATUsageInformation" }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue, choice.QosFlowFeedbackList), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_QosFlowFeedbackList, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "QosFlowFeedbackList" + }, }; static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_704[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* SecondaryRATUsageInformation */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 1 }, /* SecondaryRATUsageInformation */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, -1, 0 } /* QosFlowFeedbackList */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_704 = { sizeof(struct NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue), @@ -50892,7 +51539,7 @@ static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_704 = { offsetof(struct NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue, present), sizeof(((struct NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue *)0)->present), asn_MAP_NGAP_extensionValue_tag2el_704, - 1, /* Count of tags in the map */ + 2, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -50915,7 +51562,7 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_704 = { OPEN_TYPE_constraint }, asn_MBR_NGAP_extensionValue_704, - 1, /* Elements count */ + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_704 /* Additional specs */ }; @@ -52160,13 +52807,35 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_PDUSessionResourceSecondaryRATUsageItem_ExtIE &asn_SPC_NGAP_PDUSessionResourceSecondaryRATUsageItem_ExtIEs_specs_737 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_744[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue, choice.ExpectedUEActivityBehaviour), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_ExpectedUEActivityBehaviour, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExpectedUEActivityBehaviour" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_744[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* ExpectedUEActivityBehaviour */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_744 = { sizeof(struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue), offsetof(struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue, present), sizeof(((struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + asn_MAP_NGAP_extensionValue_tag2el_744, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -52188,7 +52857,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_744 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_744, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_744 /* Additional specs */ }; @@ -52214,7 +52884,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs_741[] = (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_PDUSessionResourceSetupItemCxtReq_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -52231,7 +52901,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs_741[] = (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_744, - 0, + select_PDUSessionResourceSetupItemCxtReq_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -52410,13 +53080,35 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_PDUSessionResourceSetupItemCxtRes_ExtIEs = { &asn_SPC_NGAP_PDUSessionResourceSetupItemCxtRes_ExtIEs_specs_745 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_752[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue, choice.ExpectedUEActivityBehaviour), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_ExpectedUEActivityBehaviour, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExpectedUEActivityBehaviour" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_752[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* ExpectedUEActivityBehaviour */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_752 = { sizeof(struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue), offsetof(struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue, present), sizeof(((struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + asn_MAP_NGAP_extensionValue_tag2el_752, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -52438,7 +53130,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_752 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_752, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_752 /* Additional specs */ }; @@ -52464,7 +53157,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs_749[] = { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_PDUSessionResourceSetupItemHOReq_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -52481,7 +53174,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs_749[] = { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_752, - 0, + select_PDUSessionResourceSetupItemHOReq_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -52535,13 +53228,35 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs = { &asn_SPC_NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs_specs_749 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_756[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue, choice.ExpectedUEActivityBehaviour), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_ExpectedUEActivityBehaviour, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExpectedUEActivityBehaviour" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_756[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* ExpectedUEActivityBehaviour */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_756 = { sizeof(struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue), offsetof(struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue, present), sizeof(((struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + asn_MAP_NGAP_extensionValue_tag2el_756, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -52563,7 +53278,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_756 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_756, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_756 /* Additional specs */ }; @@ -52589,7 +53305,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs_753[] = { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_PDUSessionResourceSetupItemSUReq_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -52606,7 +53322,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs_753[] = { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_756, - 0, + select_PDUSessionResourceSetupItemSUReq_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -53240,13 +53956,35 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_PDUSessionResourceSuspendItemSUSReq_ExtIEs = &asn_SPC_NGAP_PDUSessionResourceSuspendItemSUSReq_ExtIEs_specs_769 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_776[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue, choice.ExpectedUEActivityBehaviour), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_ExpectedUEActivityBehaviour, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExpectedUEActivityBehaviour" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_776[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* ExpectedUEActivityBehaviour */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_776 = { sizeof(struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue), offsetof(struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue, present), sizeof(((struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + asn_MAP_NGAP_extensionValue_tag2el_776, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -53268,7 +54006,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_776 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_776, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_776 /* Additional specs */ }; @@ -53294,7 +54033,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSwitchedItem_ExtIEs_773[] = { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_PDUSessionResourceSwitchedItem_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -53311,7 +54050,7 @@ asn_TYPE_member_t asn_MBR_NGAP_PDUSessionResourceSwitchedItem_ExtIEs_773[] = { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_776, - 0, + select_PDUSessionResourceSwitchedItem_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -54625,35 +55364,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs = { &asn_SPC_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_specs_809 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_816[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue, choice.ULForwarding), - (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), - 0, - &asn_DEF_NGAP_ULForwarding, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "ULForwarding" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_816[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* ULForwarding */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_816 = { - sizeof(struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_816, - 1, /* Count of tags in the map */ + sizeof(struct NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -54675,13 +55392,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_816 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_816, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_816 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_813[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowFeedbackItem_ExtIEs_813[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowFeedbackItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -54698,11 +55414,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_813[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowFeedbackItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_QosFlowInformationItem_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -54715,11 +55431,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_813[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowFeedbackItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_816, - select_QosFlowInformationItem_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -54733,32 +55449,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_813[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_813[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs_tags_813[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowInformationItem_ExtIEs_tag2el_813[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowFeedbackItem_ExtIEs_tag2el_813[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowInformationItem_ExtIEs_specs_813 = { - sizeof(struct NGAP_QosFlowInformationItem_ExtIEs), - offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowInformationItem_ExtIEs_tag2el_813, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowFeedbackItem_ExtIEs_specs_813 = { + sizeof(struct NGAP_QosFlowFeedbackItem_ExtIEs), + offsetof(struct NGAP_QosFlowFeedbackItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowFeedbackItem_ExtIEs_tag2el_813, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowInformationItem_ExtIEs = { - "QosFlowInformationItem-ExtIEs", - "QosFlowInformationItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs = { + "QosFlowFeedbackItem-ExtIEs", + "QosFlowFeedbackItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_813, - sizeof(asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_813) - /sizeof(asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_813[0]), /* 1 */ - asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_813, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_813) - /sizeof(asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_813[0]), /* 1 */ + asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs_tags_813, + sizeof(asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs_tags_813) + /sizeof(asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs_tags_813[0]), /* 1 */ + asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs_tags_813, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs_tags_813) + /sizeof(asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs_tags_813[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -54768,12 +55484,160 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowInformationItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_813, + asn_MBR_NGAP_QosFlowFeedbackItem_ExtIEs_813, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowInformationItem_ExtIEs_specs_813 /* Additional specs */ + &asn_SPC_NGAP_QosFlowFeedbackItem_ExtIEs_specs_813 /* Additional specs */ }; static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_820[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue, choice.ULForwarding), + (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), + 0, + &asn_DEF_NGAP_ULForwarding, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ULForwarding" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_820[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* ULForwarding */ +}; +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_820 = { + sizeof(struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowInformationItem_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_820, + 1, /* Count of tags in the map */ + 0, 0, + -1 /* Extensions start */ +}; +static /* Use -fall-defs-global to expose */ +asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_820 = { + "extensionValue", + "extensionValue", + &asn_OP_OPEN_TYPE, + 0, /* No effective tags (pointer) */ + 0, /* No effective tags (count) */ + 0, /* No tags (pointer) */ + 0, /* No tags (count) */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + OPEN_TYPE_constraint + }, + asn_MBR_NGAP_extensionValue_820, + 1, /* Elements count */ + &asn_SPC_NGAP_extensionValue_specs_820 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_817[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, id), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionID, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_id_constr_818, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_id_constraint_817 + }, + 0, 0, /* No default value */ + "id" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, criticality), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_Criticality, + select_QosFlowInformationItem_ExtIEs_NGAP_criticality_type, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_criticality_constr_819, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_criticality_constraint_817 + }, + 0, 0, /* No default value */ + "criticality" + }, + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, extensionValue), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + +1, /* EXPLICIT tag at current level */ + &asn_DEF_NGAP_extensionValue_820, + select_QosFlowInformationItem_ExtIEs_NGAP_extensionValue_type, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_extensionValue_constr_820, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_extensionValue_constraint_817 + }, + 0, 0, /* No default value */ + "extensionValue" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_817[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowInformationItem_ExtIEs_tag2el_817[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowInformationItem_ExtIEs_specs_817 = { + sizeof(struct NGAP_QosFlowInformationItem_ExtIEs), + offsetof(struct NGAP_QosFlowInformationItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowInformationItem_ExtIEs_tag2el_817, + 3, /* Count of tags in the map */ + 0, 0, 0, /* Optional elements (not needed) */ + -1, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowInformationItem_ExtIEs = { + "QosFlowInformationItem-ExtIEs", + "QosFlowInformationItem-ExtIEs", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_817, + sizeof(asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_817) + /sizeof(asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_817[0]), /* 1 */ + asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_817, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_817) + /sizeof(asn_DEF_NGAP_QosFlowInformationItem_ExtIEs_tags_817[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_817, + 3, /* Elements count */ + &asn_SPC_NGAP_QosFlowInformationItem_ExtIEs_specs_817 /* Additional specs */ +}; + +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_824[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs__extensionValue, choice.QosMonitoringRequest), (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, @@ -54809,147 +55673,21 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_820[] = { "QosMonitoringReportingFrequency" }, }; -static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_820[] = { 1, 0 }; -static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_820[] = { 1, 0 }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_820[] = { +static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_824[] = { 1, 0 }; +static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_824[] = { 1, 0 }; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_824[] = { { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, 0, 0 }, /* QosMonitoringReportingFrequency */ { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* QosMonitoringRequest */ }; -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_820 = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_824 = { sizeof(struct NGAP_QosFlowLevelQosParameters_ExtIEs__extensionValue), offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs__extensionValue, present), sizeof(((struct NGAP_QosFlowLevelQosParameters_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_820, + asn_MAP_NGAP_extensionValue_tag2el_824, 2, /* Count of tags in the map */ - asn_MAP_NGAP_extensionValue_to_canonical_820, - asn_MAP_NGAP_extensionValue_from_canonical_820, - -1 /* Extensions start */ -}; -static /* Use -fall-defs-global to expose */ -asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_820 = { - "extensionValue", - "extensionValue", - &asn_OP_OPEN_TYPE, - 0, /* No effective tags (pointer) */ - 0, /* No effective tags (count) */ - 0, /* No tags (pointer) */ - 0, /* No tags (count) */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - OPEN_TYPE_constraint - }, - asn_MBR_NGAP_extensionValue_820, - 2, /* Elements count */ - &asn_SPC_NGAP_extensionValue_specs_820 /* Additional specs */ -}; - -asn_TYPE_member_t asn_MBR_NGAP_QosFlowLevelQosParameters_ExtIEs_817[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, id), - (ASN_TAG_CLASS_CONTEXT | (0 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionID, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_id_constr_818, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_id_constraint_817 - }, - 0, 0, /* No default value */ - "id" - }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, criticality), - (ASN_TAG_CLASS_CONTEXT | (1 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_Criticality, - select_QosFlowLevelQosParameters_ExtIEs_NGAP_criticality_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_criticality_constr_819, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_criticality_constraint_817 - }, - 0, 0, /* No default value */ - "criticality" - }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, extensionValue), - (ASN_TAG_CLASS_CONTEXT | (2 << 2)), - +1, /* EXPLICIT tag at current level */ - &asn_DEF_NGAP_extensionValue_820, - select_QosFlowLevelQosParameters_ExtIEs_NGAP_extensionValue_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_extensionValue_constr_820, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_extensionValue_constraint_817 - }, - 0, 0, /* No default value */ - "extensionValue" - }, -}; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_817[] = { - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowLevelQosParameters_ExtIEs_tag2el_817[] = { - { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ - { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ - { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ -}; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowLevelQosParameters_ExtIEs_specs_817 = { - sizeof(struct NGAP_QosFlowLevelQosParameters_ExtIEs), - offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowLevelQosParameters_ExtIEs_tag2el_817, - 3, /* Count of tags in the map */ - 0, 0, 0, /* Optional elements (not needed) */ - -1, /* First extension addition */ -}; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs = { - "QosFlowLevelQosParameters-ExtIEs", - "QosFlowLevelQosParameters-ExtIEs", - &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_817, - sizeof(asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_817) - /sizeof(asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_817[0]), /* 1 */ - asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_817, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_817) - /sizeof(asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_817[0]), /* 1 */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - SEQUENCE_constraint - }, - asn_MBR_NGAP_QosFlowLevelQosParameters_ExtIEs_817, - 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowLevelQosParameters_ExtIEs_specs_817 /* Additional specs */ -}; - -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_824 = { - sizeof(struct NGAP_QosFlowWithCauseItem_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowWithCauseItem_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ - 0, 0, + asn_MAP_NGAP_extensionValue_to_canonical_824, + asn_MAP_NGAP_extensionValue_from_canonical_824, -1 /* Extensions start */ }; static /* Use -fall-defs-global to expose */ @@ -54970,12 +55708,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_824 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_824, + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_824 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_821[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowLevelQosParameters_ExtIEs_821[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -54992,11 +55731,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_821[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_QosFlowLevelQosParameters_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55009,11 +55748,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_821[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_824, - 0, + select_QosFlowLevelQosParameters_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55027,32 +55766,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_821[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_821[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_821[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowWithCauseItem_ExtIEs_tag2el_821[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowLevelQosParameters_ExtIEs_tag2el_821[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowWithCauseItem_ExtIEs_specs_821 = { - sizeof(struct NGAP_QosFlowWithCauseItem_ExtIEs), - offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowWithCauseItem_ExtIEs_tag2el_821, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowLevelQosParameters_ExtIEs_specs_821 = { + sizeof(struct NGAP_QosFlowLevelQosParameters_ExtIEs), + offsetof(struct NGAP_QosFlowLevelQosParameters_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowLevelQosParameters_ExtIEs_tag2el_821, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs = { - "QosFlowWithCauseItem-ExtIEs", - "QosFlowWithCauseItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs = { + "QosFlowLevelQosParameters-ExtIEs", + "QosFlowLevelQosParameters-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_821, - sizeof(asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_821) - /sizeof(asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_821[0]), /* 1 */ - asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_821, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_821) - /sizeof(asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_821[0]), /* 1 */ + asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_821, + sizeof(asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_821) + /sizeof(asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_821[0]), /* 1 */ + asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_821, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_821) + /sizeof(asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs_tags_821[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55062,16 +55801,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_821, + asn_MBR_NGAP_QosFlowLevelQosParameters_ExtIEs_821, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowWithCauseItem_ExtIEs_specs_821 /* Additional specs */ + &asn_SPC_NGAP_QosFlowLevelQosParameters_ExtIEs_specs_821 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_828 = { - sizeof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowModifyConfirmItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_QosFlowWithCauseItem_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowWithCauseItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -55099,8 +55838,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_828 = { &asn_SPC_NGAP_extensionValue_specs_828 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_825[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_825[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -55117,7 +55856,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_825[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -55134,7 +55873,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_825[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_828, @@ -55152,32 +55891,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_825[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_825[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_825[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowModifyConfirmItem_ExtIEs_tag2el_825[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowWithCauseItem_ExtIEs_tag2el_825[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowModifyConfirmItem_ExtIEs_specs_825 = { - sizeof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs), - offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowModifyConfirmItem_ExtIEs_tag2el_825, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowWithCauseItem_ExtIEs_specs_825 = { + sizeof(struct NGAP_QosFlowWithCauseItem_ExtIEs), + offsetof(struct NGAP_QosFlowWithCauseItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowWithCauseItem_ExtIEs_tag2el_825, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs = { - "QosFlowModifyConfirmItem-ExtIEs", - "QosFlowModifyConfirmItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs = { + "QosFlowWithCauseItem-ExtIEs", + "QosFlowWithCauseItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_825, - sizeof(asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_825) - /sizeof(asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_825[0]), /* 1 */ - asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_825, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_825) - /sizeof(asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_825[0]), /* 1 */ + asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_825, + sizeof(asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_825) + /sizeof(asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_825[0]), /* 1 */ + asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_825, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_825) + /sizeof(asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs_tags_825[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55187,40 +55926,18 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_825, + asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_825, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowModifyConfirmItem_ExtIEs_specs_825 /* Additional specs */ + &asn_SPC_NGAP_QosFlowWithCauseItem_ExtIEs_specs_825 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_832[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue, choice.AlternativeQoSParaSetNotifyIndex), - (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), - 0, - &asn_DEF_NGAP_AlternativeQoSParaSetNotifyIndex, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "AlternativeQoSParaSetNotifyIndex" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_832[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* AlternativeQoSParaSetNotifyIndex */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_832 = { - sizeof(struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_832, - 1, /* Count of tags in the map */ + sizeof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowModifyConfirmItem_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -55242,13 +55959,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_832 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_832, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_832 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_829[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_829[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -55265,11 +55981,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_829[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_QosFlowNotifyItem_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55282,11 +55998,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_829[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_832, - select_QosFlowNotifyItem_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55300,32 +56016,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_829[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_829[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_829[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowNotifyItem_ExtIEs_tag2el_829[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowModifyConfirmItem_ExtIEs_tag2el_829[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowNotifyItem_ExtIEs_specs_829 = { - sizeof(struct NGAP_QosFlowNotifyItem_ExtIEs), - offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowNotifyItem_ExtIEs_tag2el_829, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowModifyConfirmItem_ExtIEs_specs_829 = { + sizeof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs), + offsetof(struct NGAP_QosFlowModifyConfirmItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowModifyConfirmItem_ExtIEs_tag2el_829, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs = { - "QosFlowNotifyItem-ExtIEs", - "QosFlowNotifyItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs = { + "QosFlowModifyConfirmItem-ExtIEs", + "QosFlowModifyConfirmItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_829, - sizeof(asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_829) - /sizeof(asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_829[0]), /* 1 */ - asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_829, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_829) - /sizeof(asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_829[0]), /* 1 */ + asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_829, + sizeof(asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_829) + /sizeof(asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_829[0]), /* 1 */ + asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_829, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_829) + /sizeof(asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs_tags_829[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55335,18 +56051,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_829, + asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_829, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowNotifyItem_ExtIEs_specs_829 /* Additional specs */ + &asn_SPC_NGAP_QosFlowModifyConfirmItem_ExtIEs_specs_829 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_836[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue, choice.AlternativeQoSParaSetNotifyIndex), + (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), + 0, + &asn_DEF_NGAP_AlternativeQoSParaSetNotifyIndex, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "AlternativeQoSParaSetNotifyIndex" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_836[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* AlternativeQoSParaSetNotifyIndex */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_836 = { - sizeof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowNotifyItem_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_836, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -55368,12 +56106,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_836 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_836, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_836 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_833[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_833[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -55390,11 +56129,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_833[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_QosFlowNotifyItem_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55407,11 +56146,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_833[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_836, - 0, + select_QosFlowNotifyItem_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55425,32 +56164,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_833[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_833[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_833[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowParametersItem_ExtIEs_tag2el_833[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowNotifyItem_ExtIEs_tag2el_833[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowParametersItem_ExtIEs_specs_833 = { - sizeof(struct NGAP_QosFlowParametersItem_ExtIEs), - offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowParametersItem_ExtIEs_tag2el_833, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowNotifyItem_ExtIEs_specs_833 = { + sizeof(struct NGAP_QosFlowNotifyItem_ExtIEs), + offsetof(struct NGAP_QosFlowNotifyItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowNotifyItem_ExtIEs_tag2el_833, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowParametersItem_ExtIEs = { - "QosFlowParametersItem-ExtIEs", - "QosFlowParametersItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs = { + "QosFlowNotifyItem-ExtIEs", + "QosFlowNotifyItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_833, - sizeof(asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_833) - /sizeof(asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_833[0]), /* 1 */ - asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_833, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_833) - /sizeof(asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_833[0]), /* 1 */ + asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_833, + sizeof(asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_833) + /sizeof(asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_833[0]), /* 1 */ + asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_833, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_833) + /sizeof(asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs_tags_833[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55460,18 +56199,76 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowParametersItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_833, + asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_833, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowParametersItem_ExtIEs_specs_833 /* Additional specs */ + &asn_SPC_NGAP_QosFlowNotifyItem_ExtIEs_specs_833 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_840[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue, choice.ExtendedPacketDelayBudget), + (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), + 0, + &asn_DEF_NGAP_ExtendedPacketDelayBudget, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExtendedPacketDelayBudget" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue, choice.ExtendedPacketDelayBudget_1), + (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), + 0, + &asn_DEF_NGAP_ExtendedPacketDelayBudget, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExtendedPacketDelayBudget" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue, choice.BurstArrivalTime), + (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), + 0, + &asn_DEF_NGAP_BurstArrivalTime, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "BurstArrivalTime" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_840[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* ExtendedPacketDelayBudget */ + { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* ExtendedPacketDelayBudget */ + { (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 2, 0, 0 } /* BurstArrivalTime */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_840 = { - sizeof(struct NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_840, + 3, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -55493,12 +56290,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_840 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_840, + 3, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_840 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_837[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_837[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -55515,11 +56313,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_837[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_QosFlowParametersItem_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55532,11 +56330,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_837[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_840, - 0, + select_QosFlowParametersItem_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55550,32 +56348,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_837[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_837[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_837[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowPerTNLInformation_ExtIEs_tag2el_837[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowParametersItem_ExtIEs_tag2el_837[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowPerTNLInformation_ExtIEs_specs_837 = { - sizeof(struct NGAP_QosFlowPerTNLInformation_ExtIEs), - offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowPerTNLInformation_ExtIEs_tag2el_837, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowParametersItem_ExtIEs_specs_837 = { + sizeof(struct NGAP_QosFlowParametersItem_ExtIEs), + offsetof(struct NGAP_QosFlowParametersItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowParametersItem_ExtIEs_tag2el_837, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs = { - "QosFlowPerTNLInformation-ExtIEs", - "QosFlowPerTNLInformation-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowParametersItem_ExtIEs = { + "QosFlowParametersItem-ExtIEs", + "QosFlowParametersItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_837, - sizeof(asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_837) - /sizeof(asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_837[0]), /* 1 */ - asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_837, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_837) - /sizeof(asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_837[0]), /* 1 */ + asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_837, + sizeof(asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_837) + /sizeof(asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_837[0]), /* 1 */ + asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_837, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_837) + /sizeof(asn_DEF_NGAP_QosFlowParametersItem_ExtIEs_tags_837[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55585,16 +56383,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_837, + asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_837, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowPerTNLInformation_ExtIEs_specs_837 /* Additional specs */ + &asn_SPC_NGAP_QosFlowParametersItem_ExtIEs_specs_837 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_844 = { - sizeof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowPerTNLInformationItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -55622,8 +56420,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_844 = { &asn_SPC_NGAP_extensionValue_specs_844 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_841[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_841[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -55640,7 +56438,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_841[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -55657,7 +56455,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_841[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_844, @@ -55675,32 +56473,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_841[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_841[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_841[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tag2el_841[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowPerTNLInformation_ExtIEs_tag2el_841[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowPerTNLInformationItem_ExtIEs_specs_841 = { - sizeof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs), - offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tag2el_841, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowPerTNLInformation_ExtIEs_specs_841 = { + sizeof(struct NGAP_QosFlowPerTNLInformation_ExtIEs), + offsetof(struct NGAP_QosFlowPerTNLInformation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowPerTNLInformation_ExtIEs_tag2el_841, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs = { - "QosFlowPerTNLInformationItem-ExtIEs", - "QosFlowPerTNLInformationItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs = { + "QosFlowPerTNLInformation-ExtIEs", + "QosFlowPerTNLInformation-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_841, - sizeof(asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_841) - /sizeof(asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_841[0]), /* 1 */ - asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_841, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_841) - /sizeof(asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_841[0]), /* 1 */ + asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_841, + sizeof(asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_841) + /sizeof(asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_841[0]), /* 1 */ + asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_841, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_841) + /sizeof(asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs_tags_841[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55710,12 +56508,137 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_841, + asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_841, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowPerTNLInformationItem_ExtIEs_specs_841 /* Additional specs */ + &asn_SPC_NGAP_QosFlowPerTNLInformation_ExtIEs_specs_841 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_848[] = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_848 = { + sizeof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowPerTNLInformationItem_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ + 0, 0, + -1 /* Extensions start */ +}; +static /* Use -fall-defs-global to expose */ +asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_848 = { + "extensionValue", + "extensionValue", + &asn_OP_OPEN_TYPE, + 0, /* No effective tags (pointer) */ + 0, /* No effective tags (count) */ + 0, /* No tags (pointer) */ + 0, /* No tags (count) */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + OPEN_TYPE_constraint + }, + 0, 0, /* No members */ + &asn_SPC_NGAP_extensionValue_specs_848 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_845[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs, id), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionID, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_id_constr_846, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_id_constraint_845 + }, + 0, 0, /* No default value */ + "id" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs, criticality), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_Criticality, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_criticality_constr_847, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_criticality_constraint_845 + }, + 0, 0, /* No default value */ + "criticality" + }, + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs, extensionValue), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + +1, /* EXPLICIT tag at current level */ + &asn_DEF_NGAP_extensionValue_848, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_extensionValue_constr_848, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_extensionValue_constraint_845 + }, + 0, 0, /* No default value */ + "extensionValue" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_845[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tag2el_845[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowPerTNLInformationItem_ExtIEs_specs_845 = { + sizeof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs), + offsetof(struct NGAP_QosFlowPerTNLInformationItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tag2el_845, + 3, /* Count of tags in the map */ + 0, 0, 0, /* Optional elements (not needed) */ + -1, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs = { + "QosFlowPerTNLInformationItem-ExtIEs", + "QosFlowPerTNLInformationItem-ExtIEs", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_845, + sizeof(asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_845) + /sizeof(asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_845[0]), /* 1 */ + asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_845, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_845) + /sizeof(asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs_tags_845[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_845, + 3, /* Elements count */ + &asn_SPC_NGAP_QosFlowPerTNLInformationItem_ExtIEs_specs_845 /* Additional specs */ +}; + +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_852[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs__extensionValue, choice.TSCTrafficCharacteristics), (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -55751,169 +56674,21 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_848[] = { "RedundantQosFlowIndicator" }, }; -static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_848[] = { 1, 0 }; -static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_848[] = { 1, 0 }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_848[] = { +static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_852[] = { 1, 0 }; +static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_852[] = { 1, 0 }; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_852[] = { { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 1, 0, 0 }, /* RedundantQosFlowIndicator */ { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* TSCTrafficCharacteristics */ }; -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_848 = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_852 = { sizeof(struct NGAP_QosFlowSetupRequestItem_ExtIEs__extensionValue), offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs__extensionValue, present), sizeof(((struct NGAP_QosFlowSetupRequestItem_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_848, - 2, /* Count of tags in the map */ - asn_MAP_NGAP_extensionValue_to_canonical_848, - asn_MAP_NGAP_extensionValue_from_canonical_848, - -1 /* Extensions start */ -}; -static /* Use -fall-defs-global to expose */ -asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_848 = { - "extensionValue", - "extensionValue", - &asn_OP_OPEN_TYPE, - 0, /* No effective tags (pointer) */ - 0, /* No effective tags (count) */ - 0, /* No tags (pointer) */ - 0, /* No tags (count) */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - OPEN_TYPE_constraint - }, - asn_MBR_NGAP_extensionValue_848, - 2, /* Elements count */ - &asn_SPC_NGAP_extensionValue_specs_848 /* Additional specs */ -}; - -asn_TYPE_member_t asn_MBR_NGAP_QosFlowSetupRequestItem_ExtIEs_845[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, id), - (ASN_TAG_CLASS_CONTEXT | (0 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionID, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_id_constr_846, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_id_constraint_845 - }, - 0, 0, /* No default value */ - "id" - }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, criticality), - (ASN_TAG_CLASS_CONTEXT | (1 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_Criticality, - select_QosFlowSetupRequestItem_ExtIEs_NGAP_criticality_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_criticality_constr_847, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_criticality_constraint_845 - }, - 0, 0, /* No default value */ - "criticality" - }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, extensionValue), - (ASN_TAG_CLASS_CONTEXT | (2 << 2)), - +1, /* EXPLICIT tag at current level */ - &asn_DEF_NGAP_extensionValue_848, - select_QosFlowSetupRequestItem_ExtIEs_NGAP_extensionValue_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_extensionValue_constr_848, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_extensionValue_constraint_845 - }, - 0, 0, /* No default value */ - "extensionValue" - }, -}; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_845[] = { - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowSetupRequestItem_ExtIEs_tag2el_845[] = { - { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ - { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ - { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ -}; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowSetupRequestItem_ExtIEs_specs_845 = { - sizeof(struct NGAP_QosFlowSetupRequestItem_ExtIEs), - offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowSetupRequestItem_ExtIEs_tag2el_845, - 3, /* Count of tags in the map */ - 0, 0, 0, /* Optional elements (not needed) */ - -1, /* First extension addition */ -}; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs = { - "QosFlowSetupRequestItem-ExtIEs", - "QosFlowSetupRequestItem-ExtIEs", - &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_845, - sizeof(asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_845) - /sizeof(asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_845[0]), /* 1 */ - asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_845, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_845) - /sizeof(asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_845[0]), /* 1 */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - SEQUENCE_constraint - }, - asn_MBR_NGAP_QosFlowSetupRequestItem_ExtIEs_845, - 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowSetupRequestItem_ExtIEs_specs_845 /* Additional specs */ -}; - -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_852[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue, choice.AlternativeQoSParaSetIndex), - (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), - 0, - &asn_DEF_NGAP_AlternativeQoSParaSetIndex, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "AlternativeQoSParaSetIndex" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_852[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* AlternativeQoSParaSetIndex */ -}; -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_852 = { - sizeof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue *)0)->present), asn_MAP_NGAP_extensionValue_tag2el_852, - 1, /* Count of tags in the map */ - 0, 0, + 2, /* Count of tags in the map */ + asn_MAP_NGAP_extensionValue_to_canonical_852, + asn_MAP_NGAP_extensionValue_from_canonical_852, -1 /* Extensions start */ }; static /* Use -fall-defs-global to expose */ @@ -55935,12 +56710,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_852 = { OPEN_TYPE_constraint }, asn_MBR_NGAP_extensionValue_852, - 1, /* Elements count */ + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_852 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_849[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowSetupRequestItem_ExtIEs_849[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -55957,11 +56732,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_849[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_QosFlowItemWithDataForwarding_ExtIEs_NGAP_criticality_type, + select_QosFlowSetupRequestItem_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55974,11 +56749,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_849[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_852, - select_QosFlowItemWithDataForwarding_ExtIEs_NGAP_extensionValue_type, + select_QosFlowSetupRequestItem_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -55992,32 +56767,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_849[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_849[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_849[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tag2el_849[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowSetupRequestItem_ExtIEs_tag2el_849[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowItemWithDataForwarding_ExtIEs_specs_849 = { - sizeof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs), - offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tag2el_849, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowSetupRequestItem_ExtIEs_specs_849 = { + sizeof(struct NGAP_QosFlowSetupRequestItem_ExtIEs), + offsetof(struct NGAP_QosFlowSetupRequestItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowSetupRequestItem_ExtIEs_tag2el_849, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs = { - "QosFlowItemWithDataForwarding-ExtIEs", - "QosFlowItemWithDataForwarding-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs = { + "QosFlowSetupRequestItem-ExtIEs", + "QosFlowSetupRequestItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_849, - sizeof(asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_849) - /sizeof(asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_849[0]), /* 1 */ - asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_849, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_849) - /sizeof(asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_849[0]), /* 1 */ + asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_849, + sizeof(asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_849) + /sizeof(asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_849[0]), /* 1 */ + asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_849, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_849) + /sizeof(asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs_tags_849[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56027,18 +56802,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_849, + asn_MBR_NGAP_QosFlowSetupRequestItem_ExtIEs_849, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowItemWithDataForwarding_ExtIEs_specs_849 /* Additional specs */ + &asn_SPC_NGAP_QosFlowSetupRequestItem_ExtIEs_specs_849 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_856[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue, choice.AlternativeQoSParaSetIndex), + (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), + 0, + &asn_DEF_NGAP_AlternativeQoSParaSetIndex, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "AlternativeQoSParaSetIndex" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_856[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* AlternativeQoSParaSetIndex */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_856 = { - sizeof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs__extensionValue), - offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QosFlowToBeForwardedItem_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowItemWithDataForwarding_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_856, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -56060,12 +56857,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_856 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_856, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_856 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_853[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_853[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -56082,11 +56880,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_853[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_QosFlowItemWithDataForwarding_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56099,11 +56897,11 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_853[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_856, - 0, + select_QosFlowItemWithDataForwarding_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56117,32 +56915,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_853[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_853[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_853[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowToBeForwardedItem_ExtIEs_tag2el_853[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tag2el_853[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowToBeForwardedItem_ExtIEs_specs_853 = { - sizeof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs), - offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QosFlowToBeForwardedItem_ExtIEs_tag2el_853, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowItemWithDataForwarding_ExtIEs_specs_853 = { + sizeof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs), + offsetof(struct NGAP_QosFlowItemWithDataForwarding_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tag2el_853, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs = { - "QosFlowToBeForwardedItem-ExtIEs", - "QosFlowToBeForwardedItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs = { + "QosFlowItemWithDataForwarding-ExtIEs", + "QosFlowItemWithDataForwarding-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_853, - sizeof(asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_853) - /sizeof(asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_853[0]), /* 1 */ - asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_853, /* Same as above */ - sizeof(asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_853) - /sizeof(asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_853[0]), /* 1 */ + asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_853, + sizeof(asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_853) + /sizeof(asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_853[0]), /* 1 */ + asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_853, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_853) + /sizeof(asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs_tags_853[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56152,16 +56950,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_853, + asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_853, 3, /* Elements count */ - &asn_SPC_NGAP_QosFlowToBeForwardedItem_ExtIEs_specs_853 /* Additional specs */ + &asn_SPC_NGAP_QosFlowItemWithDataForwarding_ExtIEs_specs_853 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_860 = { - sizeof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_QoSFlowsUsageReport_Item_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs__extensionValue), + offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QosFlowToBeForwardedItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -56189,8 +56987,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_860 = { &asn_SPC_NGAP_extensionValue_specs_860 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_857[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_857[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -56207,7 +57005,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_857[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -56224,7 +57022,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_857[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_860, @@ -56242,32 +57040,32 @@ asn_TYPE_member_t asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_857[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_857[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_857[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tag2el_857[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowToBeForwardedItem_ExtIEs_tag2el_857[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_QoSFlowsUsageReport_Item_ExtIEs_specs_857 = { - sizeof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs), - offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tag2el_857, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowToBeForwardedItem_ExtIEs_specs_857 = { + sizeof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs), + offsetof(struct NGAP_QosFlowToBeForwardedItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QosFlowToBeForwardedItem_ExtIEs_tag2el_857, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs = { - "QoSFlowsUsageReport-Item-ExtIEs", - "QoSFlowsUsageReport-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs = { + "QosFlowToBeForwardedItem-ExtIEs", + "QosFlowToBeForwardedItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_857, - sizeof(asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_857) - /sizeof(asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_857[0]), /* 1 */ - asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_857, /* Same as above */ - sizeof(asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_857) - /sizeof(asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_857[0]), /* 1 */ + asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_857, + sizeof(asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_857) + /sizeof(asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_857[0]), /* 1 */ + asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_857, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_857) + /sizeof(asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs_tags_857[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56277,16 +57075,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_857, + asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_857, 3, /* Elements count */ - &asn_SPC_NGAP_QoSFlowsUsageReport_Item_ExtIEs_specs_857 /* Additional specs */ + &asn_SPC_NGAP_QosFlowToBeForwardedItem_ExtIEs_specs_857 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_864 = { - sizeof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs__extensionValue), - offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_QoSFlowsUsageReport_Item_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -56314,8 +57112,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_864 = { &asn_SPC_NGAP_extensionValue_specs_864 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_861[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_861[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -56332,7 +57130,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_861 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -56349,7 +57147,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_861 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_864, @@ -56367,32 +57165,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_861 "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_861[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_861[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tag2el_861[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tag2el_861[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_specs_861 = { - sizeof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs), - offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tag2el_861, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QoSFlowsUsageReport_Item_ExtIEs_specs_861 = { + sizeof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs), + offsetof(struct NGAP_QoSFlowsUsageReport_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tag2el_861, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs = { - "RANStatusTransfer-TransparentContainer-ExtIEs", - "RANStatusTransfer-TransparentContainer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs = { + "QoSFlowsUsageReport-Item-ExtIEs", + "QoSFlowsUsageReport-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_861, - sizeof(asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_861) - /sizeof(asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_861[0]), /* 1 */ - asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_861, /* Same as above */ - sizeof(asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_861) - /sizeof(asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_861[0]), /* 1 */ + asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_861, + sizeof(asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_861) + /sizeof(asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_861[0]), /* 1 */ + asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_861, /* Same as above */ + sizeof(asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_861) + /sizeof(asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs_tags_861[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56402,40 +57200,18 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_861, + asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_861, 3, /* Elements count */ - &asn_SPC_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_specs_861 /* Additional specs */ + &asn_SPC_NGAP_QoSFlowsUsageReport_Item_ExtIEs_specs_861 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_868[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue, choice.ExtendedRATRestrictionInformation), - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), - 0, - &asn_DEF_NGAP_ExtendedRATRestrictionInformation, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "ExtendedRATRestrictionInformation" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_868[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* ExtendedRATRestrictionInformation */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_868 = { - sizeof(struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_868, - 1, /* Count of tags in the map */ + sizeof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs__extensionValue), + offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -56457,13 +57233,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_868 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_868, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_868 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_865[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_865[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -56480,11 +57255,11 @@ asn_TYPE_member_t asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_865[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_RATRestrictions_Item_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56497,11 +57272,11 @@ asn_TYPE_member_t asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_865[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_868, - select_RATRestrictions_Item_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56515,32 +57290,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_865[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_865[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_865[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RATRestrictions_Item_ExtIEs_tag2el_865[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tag2el_865[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RATRestrictions_Item_ExtIEs_specs_865 = { - sizeof(struct NGAP_RATRestrictions_Item_ExtIEs), - offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RATRestrictions_Item_ExtIEs_tag2el_865, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_specs_865 = { + sizeof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs), + offsetof(struct NGAP_RANStatusTransfer_TransparentContainer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tag2el_865, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RATRestrictions_Item_ExtIEs = { - "RATRestrictions-Item-ExtIEs", - "RATRestrictions-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs = { + "RANStatusTransfer-TransparentContainer-ExtIEs", + "RANStatusTransfer-TransparentContainer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_865, - sizeof(asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_865) - /sizeof(asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_865[0]), /* 1 */ - asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_865, /* Same as above */ - sizeof(asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_865) - /sizeof(asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_865[0]), /* 1 */ + asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_865, + sizeof(asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_865) + /sizeof(asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_865[0]), /* 1 */ + asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_865, /* Same as above */ + sizeof(asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_865) + /sizeof(asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_tags_865[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56550,18 +57325,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RATRestrictions_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_865, + asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_865, 3, /* Elements count */ - &asn_SPC_NGAP_RATRestrictions_Item_ExtIEs_specs_865 /* Additional specs */ + &asn_SPC_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_specs_865 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_872[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue, choice.ExtendedRATRestrictionInformation), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_ExtendedRATRestrictionInformation, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "ExtendedRATRestrictionInformation" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_872[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* ExtendedRATRestrictionInformation */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_872 = { - sizeof(struct NGAP_RecommendedCellsForPaging_ExtIEs__extensionValue), - offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RecommendedCellsForPaging_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RATRestrictions_Item_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_872, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -56583,12 +57380,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_872 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_872, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_872 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_869[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_869[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -56605,11 +57403,11 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_869[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_RATRestrictions_Item_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56622,11 +57420,11 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_869[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_872, - 0, + select_RATRestrictions_Item_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56640,32 +57438,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_869[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_869[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_869[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RecommendedCellsForPaging_ExtIEs_tag2el_869[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RATRestrictions_Item_ExtIEs_tag2el_869[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedCellsForPaging_ExtIEs_specs_869 = { - sizeof(struct NGAP_RecommendedCellsForPaging_ExtIEs), - offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RecommendedCellsForPaging_ExtIEs_tag2el_869, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RATRestrictions_Item_ExtIEs_specs_869 = { + sizeof(struct NGAP_RATRestrictions_Item_ExtIEs), + offsetof(struct NGAP_RATRestrictions_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RATRestrictions_Item_ExtIEs_tag2el_869, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs = { - "RecommendedCellsForPaging-ExtIEs", - "RecommendedCellsForPaging-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RATRestrictions_Item_ExtIEs = { + "RATRestrictions-Item-ExtIEs", + "RATRestrictions-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_869, - sizeof(asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_869) - /sizeof(asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_869[0]), /* 1 */ - asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_869, /* Same as above */ - sizeof(asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_869) - /sizeof(asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_869[0]), /* 1 */ + asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_869, + sizeof(asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_869) + /sizeof(asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_869[0]), /* 1 */ + asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_869, /* Same as above */ + sizeof(asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_869) + /sizeof(asn_DEF_NGAP_RATRestrictions_Item_ExtIEs_tags_869[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56675,16 +57473,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_869, + asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_869, 3, /* Elements count */ - &asn_SPC_NGAP_RecommendedCellsForPaging_ExtIEs_specs_869 /* Additional specs */ + &asn_SPC_NGAP_RATRestrictions_Item_ExtIEs_specs_869 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_876 = { - sizeof(struct NGAP_RecommendedCellItem_ExtIEs__extensionValue), - offsetof(struct NGAP_RecommendedCellItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RecommendedCellItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RecommendedCellItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_RecommendedCellsForPaging_ExtIEs__extensionValue), + offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RecommendedCellsForPaging_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -56712,8 +57510,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_876 = { &asn_SPC_NGAP_extensionValue_specs_876 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellItem_ExtIEs_873[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_873[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -56730,7 +57528,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellItem_ExtIEs_873[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -56747,7 +57545,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellItem_ExtIEs_873[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_876, @@ -56765,32 +57563,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellItem_ExtIEs_873[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_873[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_873[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RecommendedCellItem_ExtIEs_tag2el_873[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RecommendedCellsForPaging_ExtIEs_tag2el_873[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedCellItem_ExtIEs_specs_873 = { - sizeof(struct NGAP_RecommendedCellItem_ExtIEs), - offsetof(struct NGAP_RecommendedCellItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RecommendedCellItem_ExtIEs_tag2el_873, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedCellsForPaging_ExtIEs_specs_873 = { + sizeof(struct NGAP_RecommendedCellsForPaging_ExtIEs), + offsetof(struct NGAP_RecommendedCellsForPaging_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RecommendedCellsForPaging_ExtIEs_tag2el_873, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedCellItem_ExtIEs = { - "RecommendedCellItem-ExtIEs", - "RecommendedCellItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs = { + "RecommendedCellsForPaging-ExtIEs", + "RecommendedCellsForPaging-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_873, - sizeof(asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_873) - /sizeof(asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_873[0]), /* 1 */ - asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_873, /* Same as above */ - sizeof(asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_873) - /sizeof(asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_873[0]), /* 1 */ + asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_873, + sizeof(asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_873) + /sizeof(asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_873[0]), /* 1 */ + asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_873, /* Same as above */ + sizeof(asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_873) + /sizeof(asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs_tags_873[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56800,16 +57598,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedCellItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RecommendedCellItem_ExtIEs_873, + asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_873, 3, /* Elements count */ - &asn_SPC_NGAP_RecommendedCellItem_ExtIEs_specs_873 /* Additional specs */ + &asn_SPC_NGAP_RecommendedCellsForPaging_ExtIEs_specs_873 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_880 = { - sizeof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs__extensionValue), - offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RecommendedRANNodesForPaging_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_RecommendedCellItem_ExtIEs__extensionValue), + offsetof(struct NGAP_RecommendedCellItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RecommendedCellItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RecommendedCellItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -56837,8 +57635,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_880 = { &asn_SPC_NGAP_extensionValue_specs_880 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_877[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellItem_ExtIEs_877[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -56855,7 +57653,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_877[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -56872,7 +57670,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_877[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedCellItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_880, @@ -56890,32 +57688,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_877[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_877[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_877[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RecommendedRANNodesForPaging_ExtIEs_tag2el_877[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RecommendedCellItem_ExtIEs_tag2el_877[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedRANNodesForPaging_ExtIEs_specs_877 = { - sizeof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs), - offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RecommendedRANNodesForPaging_ExtIEs_tag2el_877, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedCellItem_ExtIEs_specs_877 = { + sizeof(struct NGAP_RecommendedCellItem_ExtIEs), + offsetof(struct NGAP_RecommendedCellItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RecommendedCellItem_ExtIEs_tag2el_877, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs = { - "RecommendedRANNodesForPaging-ExtIEs", - "RecommendedRANNodesForPaging-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedCellItem_ExtIEs = { + "RecommendedCellItem-ExtIEs", + "RecommendedCellItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_877, - sizeof(asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_877) - /sizeof(asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_877[0]), /* 1 */ - asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_877, /* Same as above */ - sizeof(asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_877) - /sizeof(asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_877[0]), /* 1 */ + asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_877, + sizeof(asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_877) + /sizeof(asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_877[0]), /* 1 */ + asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_877, /* Same as above */ + sizeof(asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_877) + /sizeof(asn_DEF_NGAP_RecommendedCellItem_ExtIEs_tags_877[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -56925,16 +57723,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_877, + asn_MBR_NGAP_RecommendedCellItem_ExtIEs_877, 3, /* Elements count */ - &asn_SPC_NGAP_RecommendedRANNodesForPaging_ExtIEs_specs_877 /* Additional specs */ + &asn_SPC_NGAP_RecommendedCellItem_ExtIEs_specs_877 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_884 = { - sizeof(struct NGAP_RecommendedRANNodeItem_ExtIEs__extensionValue), - offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RecommendedRANNodeItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs__extensionValue), + offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RecommendedRANNodesForPaging_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -56962,8 +57760,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_884 = { &asn_SPC_NGAP_extensionValue_specs_884 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_881[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_881[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -56980,7 +57778,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_881[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -56997,7 +57795,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_881[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_884, @@ -57015,32 +57813,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_881[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_881[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_881[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RecommendedRANNodeItem_ExtIEs_tag2el_881[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RecommendedRANNodesForPaging_ExtIEs_tag2el_881[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedRANNodeItem_ExtIEs_specs_881 = { - sizeof(struct NGAP_RecommendedRANNodeItem_ExtIEs), - offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RecommendedRANNodeItem_ExtIEs_tag2el_881, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedRANNodesForPaging_ExtIEs_specs_881 = { + sizeof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs), + offsetof(struct NGAP_RecommendedRANNodesForPaging_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RecommendedRANNodesForPaging_ExtIEs_tag2el_881, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs = { - "RecommendedRANNodeItem-ExtIEs", - "RecommendedRANNodeItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs = { + "RecommendedRANNodesForPaging-ExtIEs", + "RecommendedRANNodesForPaging-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_881, - sizeof(asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_881) - /sizeof(asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_881[0]), /* 1 */ - asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_881, /* Same as above */ - sizeof(asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_881) - /sizeof(asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_881[0]), /* 1 */ + asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_881, + sizeof(asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_881) + /sizeof(asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_881[0]), /* 1 */ + asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_881, /* Same as above */ + sizeof(asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_881) + /sizeof(asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs_tags_881[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -57050,16 +57848,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_881, + asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_881, 3, /* Elements count */ - &asn_SPC_NGAP_RecommendedRANNodeItem_ExtIEs_specs_881 /* Additional specs */ + &asn_SPC_NGAP_RecommendedRANNodesForPaging_ExtIEs_specs_881 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_888 = { - sizeof(struct NGAP_RedundantPDUSessionInformation_ExtIEs__extensionValue), - offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RedundantPDUSessionInformation_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_RecommendedRANNodeItem_ExtIEs__extensionValue), + offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RecommendedRANNodeItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -57087,8 +57885,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_888 = { &asn_SPC_NGAP_extensionValue_specs_888 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_885[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_885[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -57105,7 +57903,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_885[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -57122,7 +57920,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_885[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_888, @@ -57140,32 +57938,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_885[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_885[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_885[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RedundantPDUSessionInformation_ExtIEs_tag2el_885[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RecommendedRANNodeItem_ExtIEs_tag2el_885[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RedundantPDUSessionInformation_ExtIEs_specs_885 = { - sizeof(struct NGAP_RedundantPDUSessionInformation_ExtIEs), - offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RedundantPDUSessionInformation_ExtIEs_tag2el_885, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedRANNodeItem_ExtIEs_specs_885 = { + sizeof(struct NGAP_RecommendedRANNodeItem_ExtIEs), + offsetof(struct NGAP_RecommendedRANNodeItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RecommendedRANNodeItem_ExtIEs_tag2el_885, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs = { - "RedundantPDUSessionInformation-ExtIEs", - "RedundantPDUSessionInformation-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs = { + "RecommendedRANNodeItem-ExtIEs", + "RecommendedRANNodeItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_885, - sizeof(asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_885) - /sizeof(asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_885[0]), /* 1 */ - asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_885, /* Same as above */ - sizeof(asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_885) - /sizeof(asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_885[0]), /* 1 */ + asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_885, + sizeof(asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_885) + /sizeof(asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_885[0]), /* 1 */ + asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_885, /* Same as above */ + sizeof(asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_885) + /sizeof(asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs_tags_885[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -57175,16 +57973,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_885, + asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_885, 3, /* Elements count */ - &asn_SPC_NGAP_RedundantPDUSessionInformation_ExtIEs_specs_885 /* Additional specs */ + &asn_SPC_NGAP_RecommendedRANNodeItem_ExtIEs_specs_885 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_892 = { - sizeof(struct NGAP_RIMInformationTransfer_ExtIEs__extensionValue), - offsetof(struct NGAP_RIMInformationTransfer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RIMInformationTransfer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RIMInformationTransfer_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_RedundantPDUSessionInformation_ExtIEs__extensionValue), + offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RedundantPDUSessionInformation_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -57212,8 +58010,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_892 = { &asn_SPC_NGAP_extensionValue_specs_892 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_889[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformationTransfer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_889[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -57230,7 +58028,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_889[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformationTransfer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -57247,7 +58045,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_889[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformationTransfer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_892, @@ -57265,32 +58063,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_889[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_889[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_889[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RIMInformationTransfer_ExtIEs_tag2el_889[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RedundantPDUSessionInformation_ExtIEs_tag2el_889[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RIMInformationTransfer_ExtIEs_specs_889 = { - sizeof(struct NGAP_RIMInformationTransfer_ExtIEs), - offsetof(struct NGAP_RIMInformationTransfer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RIMInformationTransfer_ExtIEs_tag2el_889, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RedundantPDUSessionInformation_ExtIEs_specs_889 = { + sizeof(struct NGAP_RedundantPDUSessionInformation_ExtIEs), + offsetof(struct NGAP_RedundantPDUSessionInformation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RedundantPDUSessionInformation_ExtIEs_tag2el_889, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RIMInformationTransfer_ExtIEs = { - "RIMInformationTransfer-ExtIEs", - "RIMInformationTransfer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs = { + "RedundantPDUSessionInformation-ExtIEs", + "RedundantPDUSessionInformation-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_889, - sizeof(asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_889) - /sizeof(asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_889[0]), /* 1 */ - asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_889, /* Same as above */ - sizeof(asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_889) - /sizeof(asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_889[0]), /* 1 */ + asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_889, + sizeof(asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_889) + /sizeof(asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_889[0]), /* 1 */ + asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_889, /* Same as above */ + sizeof(asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_889) + /sizeof(asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs_tags_889[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -57300,16 +58098,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RIMInformationTransfer_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_889, + asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_889, 3, /* Elements count */ - &asn_SPC_NGAP_RIMInformationTransfer_ExtIEs_specs_889 /* Additional specs */ + &asn_SPC_NGAP_RedundantPDUSessionInformation_ExtIEs_specs_889 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_896 = { - sizeof(struct NGAP_RIMInformation_ExtIEs__extensionValue), - offsetof(struct NGAP_RIMInformation_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_RIMInformation_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_RIMInformation_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_RIMInformationTransfer_ExtIEs__extensionValue), + offsetof(struct NGAP_RIMInformationTransfer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RIMInformationTransfer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RIMInformationTransfer_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -57337,8 +58135,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_896 = { &asn_SPC_NGAP_extensionValue_specs_896 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_RIMInformation_ExtIEs_893[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformation_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_893[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformationTransfer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -57355,7 +58153,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RIMInformation_ExtIEs_893[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformation_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformationTransfer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -57372,7 +58170,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RIMInformation_ExtIEs_893[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformation_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformationTransfer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_896, @@ -57390,32 +58188,32 @@ asn_TYPE_member_t asn_MBR_NGAP_RIMInformation_ExtIEs_893[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_RIMInformation_ExtIEs_tags_893[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_893[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_RIMInformation_ExtIEs_tag2el_893[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RIMInformationTransfer_ExtIEs_tag2el_893[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_RIMInformation_ExtIEs_specs_893 = { - sizeof(struct NGAP_RIMInformation_ExtIEs), - offsetof(struct NGAP_RIMInformation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_RIMInformation_ExtIEs_tag2el_893, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RIMInformationTransfer_ExtIEs_specs_893 = { + sizeof(struct NGAP_RIMInformationTransfer_ExtIEs), + offsetof(struct NGAP_RIMInformationTransfer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RIMInformationTransfer_ExtIEs_tag2el_893, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_RIMInformation_ExtIEs = { - "RIMInformation-ExtIEs", - "RIMInformation-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RIMInformationTransfer_ExtIEs = { + "RIMInformationTransfer-ExtIEs", + "RIMInformationTransfer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_RIMInformation_ExtIEs_tags_893, - sizeof(asn_DEF_NGAP_RIMInformation_ExtIEs_tags_893) - /sizeof(asn_DEF_NGAP_RIMInformation_ExtIEs_tags_893[0]), /* 1 */ - asn_DEF_NGAP_RIMInformation_ExtIEs_tags_893, /* Same as above */ - sizeof(asn_DEF_NGAP_RIMInformation_ExtIEs_tags_893) - /sizeof(asn_DEF_NGAP_RIMInformation_ExtIEs_tags_893[0]), /* 1 */ + asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_893, + sizeof(asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_893) + /sizeof(asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_893[0]), /* 1 */ + asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_893, /* Same as above */ + sizeof(asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_893) + /sizeof(asn_DEF_NGAP_RIMInformationTransfer_ExtIEs_tags_893[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -57425,16 +58223,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_RIMInformation_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_RIMInformation_ExtIEs_893, + asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_893, 3, /* Elements count */ - &asn_SPC_NGAP_RIMInformation_ExtIEs_specs_893 /* Additional specs */ + &asn_SPC_NGAP_RIMInformationTransfer_ExtIEs_specs_893 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_900 = { - sizeof(struct NGAP_ScheduledCommunicationTime_ExtIEs__extensionValue), - offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_ScheduledCommunicationTime_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_RIMInformation_ExtIEs__extensionValue), + offsetof(struct NGAP_RIMInformation_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_RIMInformation_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_RIMInformation_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -57462,8 +58260,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_900 = { &asn_SPC_NGAP_extensionValue_specs_900 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_897[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_RIMInformation_ExtIEs_897[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformation_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -57480,7 +58278,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_897[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformation_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -57497,7 +58295,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_897[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_RIMInformation_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_900, @@ -57515,32 +58313,32 @@ asn_TYPE_member_t asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_897[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_897[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_RIMInformation_ExtIEs_tags_897[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_ScheduledCommunicationTime_ExtIEs_tag2el_897[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_RIMInformation_ExtIEs_tag2el_897[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_ScheduledCommunicationTime_ExtIEs_specs_897 = { - sizeof(struct NGAP_ScheduledCommunicationTime_ExtIEs), - offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs, _asn_ctx), - asn_MAP_NGAP_ScheduledCommunicationTime_ExtIEs_tag2el_897, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_RIMInformation_ExtIEs_specs_897 = { + sizeof(struct NGAP_RIMInformation_ExtIEs), + offsetof(struct NGAP_RIMInformation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_RIMInformation_ExtIEs_tag2el_897, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs = { - "ScheduledCommunicationTime-ExtIEs", - "ScheduledCommunicationTime-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_RIMInformation_ExtIEs = { + "RIMInformation-ExtIEs", + "RIMInformation-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_897, - sizeof(asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_897) - /sizeof(asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_897[0]), /* 1 */ - asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_897, /* Same as above */ - sizeof(asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_897) - /sizeof(asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_897[0]), /* 1 */ + asn_DEF_NGAP_RIMInformation_ExtIEs_tags_897, + sizeof(asn_DEF_NGAP_RIMInformation_ExtIEs_tags_897) + /sizeof(asn_DEF_NGAP_RIMInformation_ExtIEs_tags_897[0]), /* 1 */ + asn_DEF_NGAP_RIMInformation_ExtIEs_tags_897, /* Same as above */ + sizeof(asn_DEF_NGAP_RIMInformation_ExtIEs_tags_897) + /sizeof(asn_DEF_NGAP_RIMInformation_ExtIEs_tags_897[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -57550,16 +58348,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_897, + asn_MBR_NGAP_RIMInformation_ExtIEs_897, 3, /* Elements count */ - &asn_SPC_NGAP_ScheduledCommunicationTime_ExtIEs_specs_897 /* Additional specs */ + &asn_SPC_NGAP_RIMInformation_ExtIEs_specs_897 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_904 = { - sizeof(struct NGAP_SecondaryRATUsageInformation_ExtIEs__extensionValue), - offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SecondaryRATUsageInformation_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_ScheduledCommunicationTime_ExtIEs__extensionValue), + offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_ScheduledCommunicationTime_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -57587,8 +58385,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_904 = { &asn_SPC_NGAP_extensionValue_specs_904 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_901[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_901[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -57605,7 +58403,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_901[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -57622,7 +58420,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_901[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_904, @@ -57640,32 +58438,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_901[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_901[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_901[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecondaryRATUsageInformation_ExtIEs_tag2el_901[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_ScheduledCommunicationTime_ExtIEs_tag2el_901[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecondaryRATUsageInformation_ExtIEs_specs_901 = { - sizeof(struct NGAP_SecondaryRATUsageInformation_ExtIEs), - offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SecondaryRATUsageInformation_ExtIEs_tag2el_901, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_ScheduledCommunicationTime_ExtIEs_specs_901 = { + sizeof(struct NGAP_ScheduledCommunicationTime_ExtIEs), + offsetof(struct NGAP_ScheduledCommunicationTime_ExtIEs, _asn_ctx), + asn_MAP_NGAP_ScheduledCommunicationTime_ExtIEs_tag2el_901, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs = { - "SecondaryRATUsageInformation-ExtIEs", - "SecondaryRATUsageInformation-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs = { + "ScheduledCommunicationTime-ExtIEs", + "ScheduledCommunicationTime-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_901, - sizeof(asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_901) - /sizeof(asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_901[0]), /* 1 */ - asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_901, /* Same as above */ - sizeof(asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_901) - /sizeof(asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_901[0]), /* 1 */ + asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_901, + sizeof(asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_901) + /sizeof(asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_901[0]), /* 1 */ + asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_901, /* Same as above */ + sizeof(asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_901) + /sizeof(asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs_tags_901[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -57675,16 +58473,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_901, + asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_901, 3, /* Elements count */ - &asn_SPC_NGAP_SecondaryRATUsageInformation_ExtIEs_specs_901 /* Additional specs */ + &asn_SPC_NGAP_ScheduledCommunicationTime_ExtIEs_specs_901 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_908 = { - sizeof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs__extensionValue), - offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SecondaryRATUsageInformation_ExtIEs__extensionValue), + offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SecondaryRATUsageInformation_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -57712,8 +58510,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_908 = { &asn_SPC_NGAP_extensionValue_specs_908 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_905[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_905[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -57730,7 +58528,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_905[] 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -57747,7 +58545,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_905[] 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_908, @@ -57765,32 +58563,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_905[] "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_905[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_905[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tag2el_905[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecondaryRATUsageInformation_ExtIEs_tag2el_905[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_specs_905 = { - sizeof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs), - offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tag2el_905, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecondaryRATUsageInformation_ExtIEs_specs_905 = { + sizeof(struct NGAP_SecondaryRATUsageInformation_ExtIEs), + offsetof(struct NGAP_SecondaryRATUsageInformation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SecondaryRATUsageInformation_ExtIEs_tag2el_905, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs = { - "SecondaryRATDataUsageReportTransfer-ExtIEs", - "SecondaryRATDataUsageReportTransfer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs = { + "SecondaryRATUsageInformation-ExtIEs", + "SecondaryRATUsageInformation-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_905, - sizeof(asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_905) - /sizeof(asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_905[0]), /* 1 */ - asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_905, /* Same as above */ - sizeof(asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_905) - /sizeof(asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_905[0]), /* 1 */ + asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_905, + sizeof(asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_905) + /sizeof(asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_905[0]), /* 1 */ + asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_905, /* Same as above */ + sizeof(asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_905) + /sizeof(asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs_tags_905[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -57800,16 +58598,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs = #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_905, + asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_905, 3, /* Elements count */ - &asn_SPC_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_specs_905 /* Additional specs */ + &asn_SPC_NGAP_SecondaryRATUsageInformation_ExtIEs_specs_905 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_912 = { - sizeof(struct NGAP_SecurityContext_ExtIEs__extensionValue), - offsetof(struct NGAP_SecurityContext_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SecurityContext_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SecurityContext_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs__extensionValue), + offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -57837,8 +58635,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_912 = { &asn_SPC_NGAP_extensionValue_specs_912 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SecurityContext_ExtIEs_909[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityContext_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_909[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -57855,7 +58653,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityContext_ExtIEs_909[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityContext_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -57872,7 +58670,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityContext_ExtIEs_909[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityContext_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_912, @@ -57890,32 +58688,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityContext_ExtIEs_909[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SecurityContext_ExtIEs_tags_909[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_909[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecurityContext_ExtIEs_tag2el_909[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tag2el_909[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityContext_ExtIEs_specs_909 = { - sizeof(struct NGAP_SecurityContext_ExtIEs), - offsetof(struct NGAP_SecurityContext_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SecurityContext_ExtIEs_tag2el_909, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_specs_909 = { + sizeof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs), + offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tag2el_909, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityContext_ExtIEs = { - "SecurityContext-ExtIEs", - "SecurityContext-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs = { + "SecondaryRATDataUsageReportTransfer-ExtIEs", + "SecondaryRATDataUsageReportTransfer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SecurityContext_ExtIEs_tags_909, - sizeof(asn_DEF_NGAP_SecurityContext_ExtIEs_tags_909) - /sizeof(asn_DEF_NGAP_SecurityContext_ExtIEs_tags_909[0]), /* 1 */ - asn_DEF_NGAP_SecurityContext_ExtIEs_tags_909, /* Same as above */ - sizeof(asn_DEF_NGAP_SecurityContext_ExtIEs_tags_909) - /sizeof(asn_DEF_NGAP_SecurityContext_ExtIEs_tags_909[0]), /* 1 */ + asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_909, + sizeof(asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_909) + /sizeof(asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_909[0]), /* 1 */ + asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_909, /* Same as above */ + sizeof(asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_909) + /sizeof(asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_tags_909[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -57925,40 +58723,18 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityContext_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SecurityContext_ExtIEs_909, + asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_909, 3, /* Elements count */ - &asn_SPC_NGAP_SecurityContext_ExtIEs_specs_909 /* Additional specs */ + &asn_SPC_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_specs_909 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_916[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityIndication_ExtIEs__extensionValue, choice.MaximumIntegrityProtectedDataRate), - (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), - 0, - &asn_DEF_NGAP_MaximumIntegrityProtectedDataRate, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "MaximumIntegrityProtectedDataRate" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_916[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* MaximumIntegrityProtectedDataRate */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_916 = { - sizeof(struct NGAP_SecurityIndication_ExtIEs__extensionValue), - offsetof(struct NGAP_SecurityIndication_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SecurityIndication_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SecurityIndication_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_916, - 1, /* Count of tags in the map */ + sizeof(struct NGAP_SecurityContext_ExtIEs__extensionValue), + offsetof(struct NGAP_SecurityContext_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SecurityContext_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SecurityContext_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -57980,13 +58756,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_916 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_916, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_916 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SecurityIndication_ExtIEs_913[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityIndication_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SecurityContext_ExtIEs_913[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityContext_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -58003,11 +58778,11 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityIndication_ExtIEs_913[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityIndication_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityContext_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_SecurityIndication_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58020,11 +58795,11 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityIndication_ExtIEs_913[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityIndication_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityContext_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_916, - select_SecurityIndication_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58038,32 +58813,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityIndication_ExtIEs_913[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_913[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SecurityContext_ExtIEs_tags_913[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecurityIndication_ExtIEs_tag2el_913[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecurityContext_ExtIEs_tag2el_913[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityIndication_ExtIEs_specs_913 = { - sizeof(struct NGAP_SecurityIndication_ExtIEs), - offsetof(struct NGAP_SecurityIndication_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SecurityIndication_ExtIEs_tag2el_913, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityContext_ExtIEs_specs_913 = { + sizeof(struct NGAP_SecurityContext_ExtIEs), + offsetof(struct NGAP_SecurityContext_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SecurityContext_ExtIEs_tag2el_913, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityIndication_ExtIEs = { - "SecurityIndication-ExtIEs", - "SecurityIndication-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityContext_ExtIEs = { + "SecurityContext-ExtIEs", + "SecurityContext-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_913, - sizeof(asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_913) - /sizeof(asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_913[0]), /* 1 */ - asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_913, /* Same as above */ - sizeof(asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_913) - /sizeof(asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_913[0]), /* 1 */ + asn_DEF_NGAP_SecurityContext_ExtIEs_tags_913, + sizeof(asn_DEF_NGAP_SecurityContext_ExtIEs_tags_913) + /sizeof(asn_DEF_NGAP_SecurityContext_ExtIEs_tags_913[0]), /* 1 */ + asn_DEF_NGAP_SecurityContext_ExtIEs_tags_913, /* Same as above */ + sizeof(asn_DEF_NGAP_SecurityContext_ExtIEs_tags_913) + /sizeof(asn_DEF_NGAP_SecurityContext_ExtIEs_tags_913[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58073,18 +58848,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityIndication_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SecurityIndication_ExtIEs_913, + asn_MBR_NGAP_SecurityContext_ExtIEs_913, 3, /* Elements count */ - &asn_SPC_NGAP_SecurityIndication_ExtIEs_specs_913 /* Additional specs */ + &asn_SPC_NGAP_SecurityContext_ExtIEs_specs_913 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_920[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityIndication_ExtIEs__extensionValue, choice.MaximumIntegrityProtectedDataRate), + (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), + 0, + &asn_DEF_NGAP_MaximumIntegrityProtectedDataRate, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "MaximumIntegrityProtectedDataRate" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_920[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* MaximumIntegrityProtectedDataRate */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_920 = { - sizeof(struct NGAP_SecurityResult_ExtIEs__extensionValue), - offsetof(struct NGAP_SecurityResult_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SecurityResult_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SecurityResult_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_SecurityIndication_ExtIEs__extensionValue), + offsetof(struct NGAP_SecurityIndication_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SecurityIndication_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SecurityIndication_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_920, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -58106,12 +58903,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_920 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_920, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_920 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SecurityResult_ExtIEs_917[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityResult_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SecurityIndication_ExtIEs_917[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityIndication_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -58128,11 +58926,11 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityResult_ExtIEs_917[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityResult_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityIndication_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_SecurityIndication_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58145,11 +58943,11 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityResult_ExtIEs_917[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityResult_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityIndication_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_920, - 0, + select_SecurityIndication_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58163,32 +58961,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityResult_ExtIEs_917[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SecurityResult_ExtIEs_tags_917[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_917[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecurityResult_ExtIEs_tag2el_917[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecurityIndication_ExtIEs_tag2el_917[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityResult_ExtIEs_specs_917 = { - sizeof(struct NGAP_SecurityResult_ExtIEs), - offsetof(struct NGAP_SecurityResult_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SecurityResult_ExtIEs_tag2el_917, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityIndication_ExtIEs_specs_917 = { + sizeof(struct NGAP_SecurityIndication_ExtIEs), + offsetof(struct NGAP_SecurityIndication_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SecurityIndication_ExtIEs_tag2el_917, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityResult_ExtIEs = { - "SecurityResult-ExtIEs", - "SecurityResult-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityIndication_ExtIEs = { + "SecurityIndication-ExtIEs", + "SecurityIndication-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SecurityResult_ExtIEs_tags_917, - sizeof(asn_DEF_NGAP_SecurityResult_ExtIEs_tags_917) - /sizeof(asn_DEF_NGAP_SecurityResult_ExtIEs_tags_917[0]), /* 1 */ - asn_DEF_NGAP_SecurityResult_ExtIEs_tags_917, /* Same as above */ - sizeof(asn_DEF_NGAP_SecurityResult_ExtIEs_tags_917) - /sizeof(asn_DEF_NGAP_SecurityResult_ExtIEs_tags_917[0]), /* 1 */ + asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_917, + sizeof(asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_917) + /sizeof(asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_917[0]), /* 1 */ + asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_917, /* Same as above */ + sizeof(asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_917) + /sizeof(asn_DEF_NGAP_SecurityIndication_ExtIEs_tags_917[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58198,16 +58996,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityResult_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SecurityResult_ExtIEs_917, + asn_MBR_NGAP_SecurityIndication_ExtIEs_917, 3, /* Elements count */ - &asn_SPC_NGAP_SecurityResult_ExtIEs_specs_917 /* Additional specs */ + &asn_SPC_NGAP_SecurityIndication_ExtIEs_specs_917 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_924 = { - sizeof(struct NGAP_SensorMeasurementConfiguration_ExtIEs__extensionValue), - offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SensorMeasurementConfiguration_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SecurityResult_ExtIEs__extensionValue), + offsetof(struct NGAP_SecurityResult_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SecurityResult_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SecurityResult_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -58235,8 +59033,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_924 = { &asn_SPC_NGAP_extensionValue_specs_924 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_921[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SecurityResult_ExtIEs_921[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityResult_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -58253,7 +59051,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_921[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityResult_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -58270,7 +59068,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_921[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SecurityResult_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_924, @@ -58288,32 +59086,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_921[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_921[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SecurityResult_ExtIEs_tags_921[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SensorMeasurementConfiguration_ExtIEs_tag2el_921[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SecurityResult_ExtIEs_tag2el_921[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SensorMeasurementConfiguration_ExtIEs_specs_921 = { - sizeof(struct NGAP_SensorMeasurementConfiguration_ExtIEs), - offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SensorMeasurementConfiguration_ExtIEs_tag2el_921, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityResult_ExtIEs_specs_921 = { + sizeof(struct NGAP_SecurityResult_ExtIEs), + offsetof(struct NGAP_SecurityResult_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SecurityResult_ExtIEs_tag2el_921, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs = { - "SensorMeasurementConfiguration-ExtIEs", - "SensorMeasurementConfiguration-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityResult_ExtIEs = { + "SecurityResult-ExtIEs", + "SecurityResult-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_921, - sizeof(asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_921) - /sizeof(asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_921[0]), /* 1 */ - asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_921, /* Same as above */ - sizeof(asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_921) - /sizeof(asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_921[0]), /* 1 */ + asn_DEF_NGAP_SecurityResult_ExtIEs_tags_921, + sizeof(asn_DEF_NGAP_SecurityResult_ExtIEs_tags_921) + /sizeof(asn_DEF_NGAP_SecurityResult_ExtIEs_tags_921[0]), /* 1 */ + asn_DEF_NGAP_SecurityResult_ExtIEs_tags_921, /* Same as above */ + sizeof(asn_DEF_NGAP_SecurityResult_ExtIEs_tags_921) + /sizeof(asn_DEF_NGAP_SecurityResult_ExtIEs_tags_921[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58323,16 +59121,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_921, + asn_MBR_NGAP_SecurityResult_ExtIEs_921, 3, /* Elements count */ - &asn_SPC_NGAP_SensorMeasurementConfiguration_ExtIEs_specs_921 /* Additional specs */ + &asn_SPC_NGAP_SecurityResult_ExtIEs_specs_921 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_928 = { - sizeof(struct NGAP_SensorMeasConfigNameItem_ExtIEs__extensionValue), - offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SensorMeasConfigNameItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SensorMeasurementConfiguration_ExtIEs__extensionValue), + offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SensorMeasurementConfiguration_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -58360,8 +59158,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_928 = { &asn_SPC_NGAP_extensionValue_specs_928 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_925[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_925[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -58378,7 +59176,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_925[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -58395,7 +59193,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_925[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_928, @@ -58413,32 +59211,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_925[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_925[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_925[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SensorMeasConfigNameItem_ExtIEs_tag2el_925[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SensorMeasurementConfiguration_ExtIEs_tag2el_925[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SensorMeasConfigNameItem_ExtIEs_specs_925 = { - sizeof(struct NGAP_SensorMeasConfigNameItem_ExtIEs), - offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SensorMeasConfigNameItem_ExtIEs_tag2el_925, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SensorMeasurementConfiguration_ExtIEs_specs_925 = { + sizeof(struct NGAP_SensorMeasurementConfiguration_ExtIEs), + offsetof(struct NGAP_SensorMeasurementConfiguration_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SensorMeasurementConfiguration_ExtIEs_tag2el_925, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs = { - "SensorMeasConfigNameItem-ExtIEs", - "SensorMeasConfigNameItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs = { + "SensorMeasurementConfiguration-ExtIEs", + "SensorMeasurementConfiguration-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_925, - sizeof(asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_925) - /sizeof(asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_925[0]), /* 1 */ - asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_925, /* Same as above */ - sizeof(asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_925) - /sizeof(asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_925[0]), /* 1 */ + asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_925, + sizeof(asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_925) + /sizeof(asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_925[0]), /* 1 */ + asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_925, /* Same as above */ + sizeof(asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_925) + /sizeof(asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs_tags_925[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58448,40 +59246,18 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_925, + asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_925, 3, /* Elements count */ - &asn_SPC_NGAP_SensorMeasConfigNameItem_ExtIEs_specs_925 /* Additional specs */ + &asn_SPC_NGAP_SensorMeasurementConfiguration_ExtIEs_specs_925 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_932[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue, choice.GUAMIType), - (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), - 0, - &asn_DEF_NGAP_GUAMIType, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "GUAMIType" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_932[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* GUAMIType */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_932 = { - sizeof(struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue), - offsetof(struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_932, - 1, /* Count of tags in the map */ + sizeof(struct NGAP_SensorMeasConfigNameItem_ExtIEs__extensionValue), + offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SensorMeasConfigNameItem_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -58503,13 +59279,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_932 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_932, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_932 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_929[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_929[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -58526,11 +59301,11 @@ asn_TYPE_member_t asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_929[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_ServedGUAMIItem_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58543,11 +59318,11 @@ asn_TYPE_member_t asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_929[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_932, - select_ServedGUAMIItem_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58561,32 +59336,32 @@ asn_TYPE_member_t asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_929[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_929[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_929[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_ServedGUAMIItem_ExtIEs_tag2el_929[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SensorMeasConfigNameItem_ExtIEs_tag2el_929[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_ServedGUAMIItem_ExtIEs_specs_929 = { - sizeof(struct NGAP_ServedGUAMIItem_ExtIEs), - offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_ServedGUAMIItem_ExtIEs_tag2el_929, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SensorMeasConfigNameItem_ExtIEs_specs_929 = { + sizeof(struct NGAP_SensorMeasConfigNameItem_ExtIEs), + offsetof(struct NGAP_SensorMeasConfigNameItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SensorMeasConfigNameItem_ExtIEs_tag2el_929, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ServedGUAMIItem_ExtIEs = { - "ServedGUAMIItem-ExtIEs", - "ServedGUAMIItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs = { + "SensorMeasConfigNameItem-ExtIEs", + "SensorMeasConfigNameItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_929, - sizeof(asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_929) - /sizeof(asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_929[0]), /* 1 */ - asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_929, /* Same as above */ - sizeof(asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_929) - /sizeof(asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_929[0]), /* 1 */ + asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_929, + sizeof(asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_929) + /sizeof(asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_929[0]), /* 1 */ + asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_929, /* Same as above */ + sizeof(asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_929) + /sizeof(asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs_tags_929[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58596,18 +59371,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ServedGUAMIItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_929, + asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_929, 3, /* Elements count */ - &asn_SPC_NGAP_ServedGUAMIItem_ExtIEs_specs_929 /* Additional specs */ + &asn_SPC_NGAP_SensorMeasConfigNameItem_ExtIEs_specs_929 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_936[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue, choice.GUAMIType), + (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), + 0, + &asn_DEF_NGAP_GUAMIType, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "GUAMIType" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_936[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* GUAMIType */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_936 = { - sizeof(struct NGAP_ServiceAreaInformation_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_ServiceAreaInformation_Item_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue), + offsetof(struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_ServedGUAMIItem_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_936, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -58629,12 +59426,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_936 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_936, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_936 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_933[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_933[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -58651,11 +59449,11 @@ asn_TYPE_member_t asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_933[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_ServedGUAMIItem_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58668,11 +59466,11 @@ asn_TYPE_member_t asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_933[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_936, - 0, + select_ServedGUAMIItem_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58686,32 +59484,32 @@ asn_TYPE_member_t asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_933[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_933[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_933[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_ServiceAreaInformation_Item_ExtIEs_tag2el_933[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_ServedGUAMIItem_ExtIEs_tag2el_933[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_ServiceAreaInformation_Item_ExtIEs_specs_933 = { - sizeof(struct NGAP_ServiceAreaInformation_Item_ExtIEs), - offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_ServiceAreaInformation_Item_ExtIEs_tag2el_933, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_ServedGUAMIItem_ExtIEs_specs_933 = { + sizeof(struct NGAP_ServedGUAMIItem_ExtIEs), + offsetof(struct NGAP_ServedGUAMIItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_ServedGUAMIItem_ExtIEs_tag2el_933, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs = { - "ServiceAreaInformation-Item-ExtIEs", - "ServiceAreaInformation-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_ServedGUAMIItem_ExtIEs = { + "ServedGUAMIItem-ExtIEs", + "ServedGUAMIItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_933, - sizeof(asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_933) - /sizeof(asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_933[0]), /* 1 */ - asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_933, /* Same as above */ - sizeof(asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_933) - /sizeof(asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_933[0]), /* 1 */ + asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_933, + sizeof(asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_933) + /sizeof(asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_933[0]), /* 1 */ + asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_933, /* Same as above */ + sizeof(asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_933) + /sizeof(asn_DEF_NGAP_ServedGUAMIItem_ExtIEs_tags_933[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58721,16 +59519,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_933, + asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_933, 3, /* Elements count */ - &asn_SPC_NGAP_ServiceAreaInformation_Item_ExtIEs_specs_933 /* Additional specs */ + &asn_SPC_NGAP_ServedGUAMIItem_ExtIEs_specs_933 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_940 = { - sizeof(struct NGAP_SliceOverloadItem_ExtIEs__extensionValue), - offsetof(struct NGAP_SliceOverloadItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SliceOverloadItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SliceOverloadItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_ServiceAreaInformation_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_ServiceAreaInformation_Item_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -58758,8 +59556,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_940 = { &asn_SPC_NGAP_extensionValue_specs_940 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SliceOverloadItem_ExtIEs_937[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceOverloadItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_937[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -58776,7 +59574,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SliceOverloadItem_ExtIEs_937[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceOverloadItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -58793,7 +59591,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SliceOverloadItem_ExtIEs_937[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceOverloadItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_940, @@ -58811,32 +59609,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SliceOverloadItem_ExtIEs_937[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_937[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_937[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SliceOverloadItem_ExtIEs_tag2el_937[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_ServiceAreaInformation_Item_ExtIEs_tag2el_937[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SliceOverloadItem_ExtIEs_specs_937 = { - sizeof(struct NGAP_SliceOverloadItem_ExtIEs), - offsetof(struct NGAP_SliceOverloadItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SliceOverloadItem_ExtIEs_tag2el_937, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_ServiceAreaInformation_Item_ExtIEs_specs_937 = { + sizeof(struct NGAP_ServiceAreaInformation_Item_ExtIEs), + offsetof(struct NGAP_ServiceAreaInformation_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_ServiceAreaInformation_Item_ExtIEs_tag2el_937, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SliceOverloadItem_ExtIEs = { - "SliceOverloadItem-ExtIEs", - "SliceOverloadItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs = { + "ServiceAreaInformation-Item-ExtIEs", + "ServiceAreaInformation-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_937, - sizeof(asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_937) - /sizeof(asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_937[0]), /* 1 */ - asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_937, /* Same as above */ - sizeof(asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_937) - /sizeof(asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_937[0]), /* 1 */ + asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_937, + sizeof(asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_937) + /sizeof(asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_937[0]), /* 1 */ + asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_937, /* Same as above */ + sizeof(asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_937) + /sizeof(asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs_tags_937[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58846,16 +59644,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SliceOverloadItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SliceOverloadItem_ExtIEs_937, + asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_937, 3, /* Elements count */ - &asn_SPC_NGAP_SliceOverloadItem_ExtIEs_specs_937 /* Additional specs */ + &asn_SPC_NGAP_ServiceAreaInformation_Item_ExtIEs_specs_937 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_944 = { - sizeof(struct NGAP_SliceSupportItem_ExtIEs__extensionValue), - offsetof(struct NGAP_SliceSupportItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SliceSupportItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SliceSupportItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SliceOverloadItem_ExtIEs__extensionValue), + offsetof(struct NGAP_SliceOverloadItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SliceOverloadItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SliceOverloadItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -58883,8 +59681,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_944 = { &asn_SPC_NGAP_extensionValue_specs_944 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SliceSupportItem_ExtIEs_941[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceSupportItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SliceOverloadItem_ExtIEs_941[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceOverloadItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -58901,7 +59699,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SliceSupportItem_ExtIEs_941[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceSupportItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceOverloadItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -58918,7 +59716,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SliceSupportItem_ExtIEs_941[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceSupportItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceOverloadItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_944, @@ -58936,32 +59734,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SliceSupportItem_ExtIEs_941[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_941[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_941[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SliceSupportItem_ExtIEs_tag2el_941[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SliceOverloadItem_ExtIEs_tag2el_941[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SliceSupportItem_ExtIEs_specs_941 = { - sizeof(struct NGAP_SliceSupportItem_ExtIEs), - offsetof(struct NGAP_SliceSupportItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SliceSupportItem_ExtIEs_tag2el_941, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SliceOverloadItem_ExtIEs_specs_941 = { + sizeof(struct NGAP_SliceOverloadItem_ExtIEs), + offsetof(struct NGAP_SliceOverloadItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SliceOverloadItem_ExtIEs_tag2el_941, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SliceSupportItem_ExtIEs = { - "SliceSupportItem-ExtIEs", - "SliceSupportItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SliceOverloadItem_ExtIEs = { + "SliceOverloadItem-ExtIEs", + "SliceOverloadItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_941, - sizeof(asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_941) - /sizeof(asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_941[0]), /* 1 */ - asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_941, /* Same as above */ - sizeof(asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_941) - /sizeof(asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_941[0]), /* 1 */ + asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_941, + sizeof(asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_941) + /sizeof(asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_941[0]), /* 1 */ + asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_941, /* Same as above */ + sizeof(asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_941) + /sizeof(asn_DEF_NGAP_SliceOverloadItem_ExtIEs_tags_941[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -58971,16 +59769,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SliceSupportItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SliceSupportItem_ExtIEs_941, + asn_MBR_NGAP_SliceOverloadItem_ExtIEs_941, 3, /* Elements count */ - &asn_SPC_NGAP_SliceSupportItem_ExtIEs_specs_941 /* Additional specs */ + &asn_SPC_NGAP_SliceOverloadItem_ExtIEs_specs_941 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_948 = { - sizeof(struct NGAP_SNPN_MobilityInformation_ExtIEs__extensionValue), - offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SNPN_MobilityInformation_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SliceSupportItem_ExtIEs__extensionValue), + offsetof(struct NGAP_SliceSupportItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SliceSupportItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SliceSupportItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -59008,8 +59806,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_948 = { &asn_SPC_NGAP_extensionValue_specs_948 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_945[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SliceSupportItem_ExtIEs_945[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceSupportItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -59026,7 +59824,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_945[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceSupportItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -59043,7 +59841,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_945[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SliceSupportItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_948, @@ -59061,32 +59859,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_945[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_945[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_945[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SNPN_MobilityInformation_ExtIEs_tag2el_945[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SliceSupportItem_ExtIEs_tag2el_945[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SNPN_MobilityInformation_ExtIEs_specs_945 = { - sizeof(struct NGAP_SNPN_MobilityInformation_ExtIEs), - offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SNPN_MobilityInformation_ExtIEs_tag2el_945, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SliceSupportItem_ExtIEs_specs_945 = { + sizeof(struct NGAP_SliceSupportItem_ExtIEs), + offsetof(struct NGAP_SliceSupportItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SliceSupportItem_ExtIEs_tag2el_945, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs = { - "SNPN-MobilityInformation-ExtIEs", - "SNPN-MobilityInformation-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SliceSupportItem_ExtIEs = { + "SliceSupportItem-ExtIEs", + "SliceSupportItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_945, - sizeof(asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_945) - /sizeof(asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_945[0]), /* 1 */ - asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_945, /* Same as above */ - sizeof(asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_945) - /sizeof(asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_945[0]), /* 1 */ + asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_945, + sizeof(asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_945) + /sizeof(asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_945[0]), /* 1 */ + asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_945, /* Same as above */ + sizeof(asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_945) + /sizeof(asn_DEF_NGAP_SliceSupportItem_ExtIEs_tags_945[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -59096,16 +59894,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_945, + asn_MBR_NGAP_SliceSupportItem_ExtIEs_945, 3, /* Elements count */ - &asn_SPC_NGAP_SNPN_MobilityInformation_ExtIEs_specs_945 /* Additional specs */ + &asn_SPC_NGAP_SliceSupportItem_ExtIEs_specs_945 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_952 = { - sizeof(struct NGAP_S_NSSAI_ExtIEs__extensionValue), - offsetof(struct NGAP_S_NSSAI_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_S_NSSAI_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_S_NSSAI_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SNPN_MobilityInformation_ExtIEs__extensionValue), + offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SNPN_MobilityInformation_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -59133,8 +59931,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_952 = { &asn_SPC_NGAP_extensionValue_specs_952 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_S_NSSAI_ExtIEs_949[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_S_NSSAI_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_949[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -59151,7 +59949,7 @@ asn_TYPE_member_t asn_MBR_NGAP_S_NSSAI_ExtIEs_949[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_S_NSSAI_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -59168,7 +59966,7 @@ asn_TYPE_member_t asn_MBR_NGAP_S_NSSAI_ExtIEs_949[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_S_NSSAI_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_952, @@ -59186,32 +59984,32 @@ asn_TYPE_member_t asn_MBR_NGAP_S_NSSAI_ExtIEs_949[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_949[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_949[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_S_NSSAI_ExtIEs_tag2el_949[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SNPN_MobilityInformation_ExtIEs_tag2el_949[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_S_NSSAI_ExtIEs_specs_949 = { - sizeof(struct NGAP_S_NSSAI_ExtIEs), - offsetof(struct NGAP_S_NSSAI_ExtIEs, _asn_ctx), - asn_MAP_NGAP_S_NSSAI_ExtIEs_tag2el_949, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SNPN_MobilityInformation_ExtIEs_specs_949 = { + sizeof(struct NGAP_SNPN_MobilityInformation_ExtIEs), + offsetof(struct NGAP_SNPN_MobilityInformation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SNPN_MobilityInformation_ExtIEs_tag2el_949, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_S_NSSAI_ExtIEs = { - "S-NSSAI-ExtIEs", - "S-NSSAI-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs = { + "SNPN-MobilityInformation-ExtIEs", + "SNPN-MobilityInformation-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_949, - sizeof(asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_949) - /sizeof(asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_949[0]), /* 1 */ - asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_949, /* Same as above */ - sizeof(asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_949) - /sizeof(asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_949[0]), /* 1 */ + asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_949, + sizeof(asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_949) + /sizeof(asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_949[0]), /* 1 */ + asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_949, /* Same as above */ + sizeof(asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_949) + /sizeof(asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs_tags_949[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -59221,16 +60019,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_S_NSSAI_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_S_NSSAI_ExtIEs_949, + asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_949, 3, /* Elements count */ - &asn_SPC_NGAP_S_NSSAI_ExtIEs_specs_949 /* Additional specs */ + &asn_SPC_NGAP_SNPN_MobilityInformation_ExtIEs_specs_949 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_956 = { - sizeof(struct NGAP_SONConfigurationTransfer_ExtIEs__extensionValue), - offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SONConfigurationTransfer_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_S_NSSAI_ExtIEs__extensionValue), + offsetof(struct NGAP_S_NSSAI_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_S_NSSAI_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_S_NSSAI_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -59258,8 +60056,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_956 = { &asn_SPC_NGAP_extensionValue_specs_956 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_953[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_S_NSSAI_ExtIEs_953[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_S_NSSAI_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -59276,7 +60074,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_953[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_S_NSSAI_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -59293,7 +60091,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_953[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_S_NSSAI_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_956, @@ -59311,32 +60109,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_953[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_953[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_953[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SONConfigurationTransfer_ExtIEs_tag2el_953[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_S_NSSAI_ExtIEs_tag2el_953[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SONConfigurationTransfer_ExtIEs_specs_953 = { - sizeof(struct NGAP_SONConfigurationTransfer_ExtIEs), - offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SONConfigurationTransfer_ExtIEs_tag2el_953, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_S_NSSAI_ExtIEs_specs_953 = { + sizeof(struct NGAP_S_NSSAI_ExtIEs), + offsetof(struct NGAP_S_NSSAI_ExtIEs, _asn_ctx), + asn_MAP_NGAP_S_NSSAI_ExtIEs_tag2el_953, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs = { - "SONConfigurationTransfer-ExtIEs", - "SONConfigurationTransfer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_S_NSSAI_ExtIEs = { + "S-NSSAI-ExtIEs", + "S-NSSAI-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_953, - sizeof(asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_953) - /sizeof(asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_953[0]), /* 1 */ - asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_953, /* Same as above */ - sizeof(asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_953) - /sizeof(asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_953[0]), /* 1 */ + asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_953, + sizeof(asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_953) + /sizeof(asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_953[0]), /* 1 */ + asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_953, /* Same as above */ + sizeof(asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_953) + /sizeof(asn_DEF_NGAP_S_NSSAI_ExtIEs_tags_953[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -59346,16 +60144,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_953, + asn_MBR_NGAP_S_NSSAI_ExtIEs_953, 3, /* Elements count */ - &asn_SPC_NGAP_SONConfigurationTransfer_ExtIEs_specs_953 /* Additional specs */ + &asn_SPC_NGAP_S_NSSAI_ExtIEs_specs_953 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_960 = { - sizeof(struct NGAP_SONInformationReply_ExtIEs__extensionValue), - offsetof(struct NGAP_SONInformationReply_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SONInformationReply_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SONInformationReply_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SONConfigurationTransfer_ExtIEs__extensionValue), + offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SONConfigurationTransfer_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -59383,8 +60181,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_960 = { &asn_SPC_NGAP_extensionValue_specs_960 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SONInformationReply_ExtIEs_957[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SONInformationReply_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_957[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -59401,7 +60199,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SONInformationReply_ExtIEs_957[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SONInformationReply_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -59418,7 +60216,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SONInformationReply_ExtIEs_957[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SONInformationReply_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_960, @@ -59436,32 +60234,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SONInformationReply_ExtIEs_957[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_957[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_957[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SONInformationReply_ExtIEs_tag2el_957[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SONConfigurationTransfer_ExtIEs_tag2el_957[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SONInformationReply_ExtIEs_specs_957 = { - sizeof(struct NGAP_SONInformationReply_ExtIEs), - offsetof(struct NGAP_SONInformationReply_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SONInformationReply_ExtIEs_tag2el_957, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SONConfigurationTransfer_ExtIEs_specs_957 = { + sizeof(struct NGAP_SONConfigurationTransfer_ExtIEs), + offsetof(struct NGAP_SONConfigurationTransfer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SONConfigurationTransfer_ExtIEs_tag2el_957, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SONInformationReply_ExtIEs = { - "SONInformationReply-ExtIEs", - "SONInformationReply-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs = { + "SONConfigurationTransfer-ExtIEs", + "SONConfigurationTransfer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_957, - sizeof(asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_957) - /sizeof(asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_957[0]), /* 1 */ - asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_957, /* Same as above */ - sizeof(asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_957) - /sizeof(asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_957[0]), /* 1 */ + asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_957, + sizeof(asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_957) + /sizeof(asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_957[0]), /* 1 */ + asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_957, /* Same as above */ + sizeof(asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_957) + /sizeof(asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs_tags_957[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -59471,12 +60269,137 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SONInformationReply_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SONInformationReply_ExtIEs_957, + asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_957, 3, /* Elements count */ - &asn_SPC_NGAP_SONInformationReply_ExtIEs_specs_957 /* Additional specs */ + &asn_SPC_NGAP_SONConfigurationTransfer_ExtIEs_specs_957 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_964[] = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_964 = { + sizeof(struct NGAP_SONInformationReply_ExtIEs__extensionValue), + offsetof(struct NGAP_SONInformationReply_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SONInformationReply_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SONInformationReply_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ + 0, 0, + -1 /* Extensions start */ +}; +static /* Use -fall-defs-global to expose */ +asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_964 = { + "extensionValue", + "extensionValue", + &asn_OP_OPEN_TYPE, + 0, /* No effective tags (pointer) */ + 0, /* No effective tags (count) */ + 0, /* No tags (pointer) */ + 0, /* No tags (count) */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + OPEN_TYPE_constraint + }, + 0, 0, /* No members */ + &asn_SPC_NGAP_extensionValue_specs_964 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_SONInformationReply_ExtIEs_961[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SONInformationReply_ExtIEs, id), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionID, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_id_constr_962, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_id_constraint_961 + }, + 0, 0, /* No default value */ + "id" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SONInformationReply_ExtIEs, criticality), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_Criticality, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_criticality_constr_963, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_criticality_constraint_961 + }, + 0, 0, /* No default value */ + "criticality" + }, + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SONInformationReply_ExtIEs, extensionValue), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + +1, /* EXPLICIT tag at current level */ + &asn_DEF_NGAP_extensionValue_964, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_extensionValue_constr_964, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_extensionValue_constraint_961 + }, + 0, 0, /* No default value */ + "extensionValue" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_961[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SONInformationReply_ExtIEs_tag2el_961[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SONInformationReply_ExtIEs_specs_961 = { + sizeof(struct NGAP_SONInformationReply_ExtIEs), + offsetof(struct NGAP_SONInformationReply_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SONInformationReply_ExtIEs_tag2el_961, + 3, /* Count of tags in the map */ + 0, 0, 0, /* Optional elements (not needed) */ + -1, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_SONInformationReply_ExtIEs = { + "SONInformationReply-ExtIEs", + "SONInformationReply-ExtIEs", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_961, + sizeof(asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_961) + /sizeof(asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_961[0]), /* 1 */ + asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_961, /* Same as above */ + sizeof(asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_961) + /sizeof(asn_DEF_NGAP_SONInformationReply_ExtIEs_tags_961[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_SONInformationReply_ExtIEs_961, + 3, /* Elements count */ + &asn_SPC_NGAP_SONInformationReply_ExtIEs_specs_961 /* Additional specs */ +}; + +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_968[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs__extensionValue, choice.SgNB_UE_X2AP_ID), (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, @@ -59512,148 +60435,22 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_964[] = { "UEHistoryInformationFromTheUE" }, }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_964[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_968[] = { { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* SgNB-UE-X2AP-ID */ { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 1, 0, 0 }, /* nR */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* choice-Extensions */ }; -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_964 = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_968 = { sizeof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs__extensionValue), offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs__extensionValue, present), sizeof(((struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_964, + asn_MAP_NGAP_extensionValue_tag2el_968, 3, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; static /* Use -fall-defs-global to expose */ -asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_964 = { - "extensionValue", - "extensionValue", - &asn_OP_OPEN_TYPE, - 0, /* No effective tags (pointer) */ - 0, /* No effective tags (count) */ - 0, /* No tags (pointer) */ - 0, /* No tags (count) */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - OPEN_TYPE_constraint - }, - asn_MBR_NGAP_extensionValue_964, - 2, /* Elements count */ - &asn_SPC_NGAP_extensionValue_specs_964 /* Additional specs */ -}; - -asn_TYPE_member_t asn_MBR_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_961[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, id), - (ASN_TAG_CLASS_CONTEXT | (0 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionID, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_id_constr_962, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_id_constraint_961 - }, - 0, 0, /* No default value */ - "id" - }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, criticality), - (ASN_TAG_CLASS_CONTEXT | (1 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_Criticality, - select_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_NGAP_criticality_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_criticality_constr_963, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_criticality_constraint_961 - }, - 0, 0, /* No default value */ - "criticality" - }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, extensionValue), - (ASN_TAG_CLASS_CONTEXT | (2 << 2)), - +1, /* EXPLICIT tag at current level */ - &asn_DEF_NGAP_extensionValue_964, - select_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_NGAP_extensionValue_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_extensionValue_constr_964, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_extensionValue_constraint_961 - }, - 0, 0, /* No default value */ - "extensionValue" - }, -}; -static const ber_tlv_tag_t asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_961[] = { - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tag2el_961[] = { - { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ - { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ - { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ -}; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_specs_961 = { - sizeof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs), - offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tag2el_961, - 3, /* Count of tags in the map */ - 0, 0, 0, /* Optional elements (not needed) */ - -1, /* First extension addition */ -}; -asn_TYPE_descriptor_t asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs = { - "SourceNGRANNode-ToTargetNGRANNode-TransparentContainer-ExtIEs", - "SourceNGRANNode-ToTargetNGRANNode-TransparentContainer-ExtIEs", - &asn_OP_SEQUENCE, - asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_961, - sizeof(asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_961) - /sizeof(asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_961[0]), /* 1 */ - asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_961, /* Same as above */ - sizeof(asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_961) - /sizeof(asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_961[0]), /* 1 */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - SEQUENCE_constraint - }, - asn_MBR_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_961, - 3, /* Elements count */ - &asn_SPC_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_specs_961 /* Additional specs */ -}; - -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_968 = { - sizeof(struct NGAP_SourceRANNodeID_ExtIEs__extensionValue), - offsetof(struct NGAP_SourceRANNodeID_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SourceRANNodeID_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SourceRANNodeID_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ - 0, 0, - -1 /* Extensions start */ -}; -static /* Use -fall-defs-global to expose */ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_968 = { "extensionValue", "extensionValue", @@ -59671,12 +60468,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_968 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_968, + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_968 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SourceRANNodeID_ExtIEs_965[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceRANNodeID_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_965[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -59693,11 +60491,11 @@ asn_TYPE_member_t asn_MBR_NGAP_SourceRANNodeID_ExtIEs_965[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceRANNodeID_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -59710,11 +60508,11 @@ asn_TYPE_member_t asn_MBR_NGAP_SourceRANNodeID_ExtIEs_965[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceRANNodeID_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_968, - 0, + select_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -59728,32 +60526,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SourceRANNodeID_ExtIEs_965[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_965[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_965[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SourceRANNodeID_ExtIEs_tag2el_965[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tag2el_965[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceRANNodeID_ExtIEs_specs_965 = { - sizeof(struct NGAP_SourceRANNodeID_ExtIEs), - offsetof(struct NGAP_SourceRANNodeID_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SourceRANNodeID_ExtIEs_tag2el_965, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_specs_965 = { + sizeof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs), + offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tag2el_965, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SourceRANNodeID_ExtIEs = { - "SourceRANNodeID-ExtIEs", - "SourceRANNodeID-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs = { + "SourceNGRANNode-ToTargetNGRANNode-TransparentContainer-ExtIEs", + "SourceNGRANNode-ToTargetNGRANNode-TransparentContainer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_965, - sizeof(asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_965) - /sizeof(asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_965[0]), /* 1 */ - asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_965, /* Same as above */ - sizeof(asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_965) - /sizeof(asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_965[0]), /* 1 */ + asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_965, + sizeof(asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_965) + /sizeof(asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_965[0]), /* 1 */ + asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_965, /* Same as above */ + sizeof(asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_965) + /sizeof(asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_tags_965[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -59763,16 +60561,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SourceRANNodeID_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SourceRANNodeID_ExtIEs_965, + asn_MBR_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_965, 3, /* Elements count */ - &asn_SPC_NGAP_SourceRANNodeID_ExtIEs_specs_965 /* Additional specs */ + &asn_SPC_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_specs_965 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_972 = { - sizeof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs__extensionValue), - offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_SourceRANNodeID_ExtIEs__extensionValue), + offsetof(struct NGAP_SourceRANNodeID_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SourceRANNodeID_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SourceRANNodeID_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -59800,8 +60598,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_972 = { &asn_SPC_NGAP_extensionValue_specs_972 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_969[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SourceRANNodeID_ExtIEs_969[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceRANNodeID_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -59818,7 +60616,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_969[] 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceRANNodeID_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -59835,7 +60633,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_969[] 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceRANNodeID_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_972, @@ -59853,32 +60651,32 @@ asn_TYPE_member_t asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_969[] "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_969[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_969[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tag2el_969[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SourceRANNodeID_ExtIEs_tag2el_969[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_specs_969 = { - sizeof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs), - offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tag2el_969, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceRANNodeID_ExtIEs_specs_969 = { + sizeof(struct NGAP_SourceRANNodeID_ExtIEs), + offsetof(struct NGAP_SourceRANNodeID_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SourceRANNodeID_ExtIEs_tag2el_969, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs = { - "SourceToTarget-AMFInformationReroute-ExtIEs", - "SourceToTarget-AMFInformationReroute-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SourceRANNodeID_ExtIEs = { + "SourceRANNodeID-ExtIEs", + "SourceRANNodeID-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_969, - sizeof(asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_969) - /sizeof(asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_969[0]), /* 1 */ - asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_969, /* Same as above */ - sizeof(asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_969) - /sizeof(asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_969[0]), /* 1 */ + asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_969, + sizeof(asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_969) + /sizeof(asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_969[0]), /* 1 */ + asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_969, /* Same as above */ + sizeof(asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_969) + /sizeof(asn_DEF_NGAP_SourceRANNodeID_ExtIEs_tags_969[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -59888,12 +60686,137 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs = #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_969, + asn_MBR_NGAP_SourceRANNodeID_ExtIEs_969, 3, /* Elements count */ - &asn_SPC_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_specs_969 /* Additional specs */ + &asn_SPC_NGAP_SourceRANNodeID_ExtIEs_specs_969 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_976[] = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_976 = { + sizeof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs__extensionValue), + offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ + 0, 0, + -1 /* Extensions start */ +}; +static /* Use -fall-defs-global to expose */ +asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_976 = { + "extensionValue", + "extensionValue", + &asn_OP_OPEN_TYPE, + 0, /* No effective tags (pointer) */ + 0, /* No effective tags (count) */ + 0, /* No tags (pointer) */ + 0, /* No tags (count) */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + OPEN_TYPE_constraint + }, + 0, 0, /* No members */ + &asn_SPC_NGAP_extensionValue_specs_976 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_973[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs, id), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionID, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_id_constr_974, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_id_constraint_973 + }, + 0, 0, /* No default value */ + "id" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs, criticality), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_Criticality, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_criticality_constr_975, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_criticality_constraint_973 + }, + 0, 0, /* No default value */ + "criticality" + }, + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs, extensionValue), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + +1, /* EXPLICIT tag at current level */ + &asn_DEF_NGAP_extensionValue_976, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_extensionValue_constr_976, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_extensionValue_constraint_973 + }, + 0, 0, /* No default value */ + "extensionValue" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_973[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tag2el_973[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_specs_973 = { + sizeof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs), + offsetof(struct NGAP_SourceToTarget_AMFInformationReroute_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tag2el_973, + 3, /* Count of tags in the map */ + 0, 0, 0, /* Optional elements (not needed) */ + -1, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs = { + "SourceToTarget-AMFInformationReroute-ExtIEs", + "SourceToTarget-AMFInformationReroute-ExtIEs", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_973, + sizeof(asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_973) + /sizeof(asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_973[0]), /* 1 */ + asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_973, /* Same as above */ + sizeof(asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_973) + /sizeof(asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_tags_973[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_973, + 3, /* Elements count */ + &asn_SPC_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_specs_973 /* Additional specs */ +}; + +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_980[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_SupportedTAItem_ExtIEs__extensionValue, choice.ConfiguredTACIndication), (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, @@ -59929,147 +60852,21 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_976[] = { "RAT-Information" }, }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_976[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_980[] = { { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 1 }, /* ConfiguredTACIndication */ { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 1, -1, 0 } /* RAT-Information */ }; -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_976 = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_980 = { sizeof(struct NGAP_SupportedTAItem_ExtIEs__extensionValue), offsetof(struct NGAP_SupportedTAItem_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_SupportedTAItem_ExtIEs__extensionValue, present), sizeof(((struct NGAP_SupportedTAItem_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_976, + asn_MAP_NGAP_extensionValue_tag2el_980, 2, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; static /* Use -fall-defs-global to expose */ -asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_976 = { - "extensionValue", - "extensionValue", - &asn_OP_OPEN_TYPE, - 0, /* No effective tags (pointer) */ - 0, /* No effective tags (count) */ - 0, /* No tags (pointer) */ - 0, /* No tags (count) */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - OPEN_TYPE_constraint - }, - asn_MBR_NGAP_extensionValue_976, - 2, /* Elements count */ - &asn_SPC_NGAP_extensionValue_specs_976 /* Additional specs */ -}; - -asn_TYPE_member_t asn_MBR_NGAP_SupportedTAItem_ExtIEs_973[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SupportedTAItem_ExtIEs, id), - (ASN_TAG_CLASS_CONTEXT | (0 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionID, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_id_constr_974, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_id_constraint_973 - }, - 0, 0, /* No default value */ - "id" - }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_SupportedTAItem_ExtIEs, criticality), - (ASN_TAG_CLASS_CONTEXT | (1 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_Criticality, - select_SupportedTAItem_ExtIEs_NGAP_criticality_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_criticality_constr_975, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_criticality_constraint_973 - }, - 0, 0, /* No default value */ - "criticality" - }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SupportedTAItem_ExtIEs, extensionValue), - (ASN_TAG_CLASS_CONTEXT | (2 << 2)), - +1, /* EXPLICIT tag at current level */ - &asn_DEF_NGAP_extensionValue_976, - select_SupportedTAItem_ExtIEs_NGAP_extensionValue_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_extensionValue_constr_976, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_extensionValue_constraint_973 - }, - 0, 0, /* No default value */ - "extensionValue" - }, -}; -static const ber_tlv_tag_t asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_973[] = { - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_SupportedTAItem_ExtIEs_tag2el_973[] = { - { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ - { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ - { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ -}; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_SupportedTAItem_ExtIEs_specs_973 = { - sizeof(struct NGAP_SupportedTAItem_ExtIEs), - offsetof(struct NGAP_SupportedTAItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_SupportedTAItem_ExtIEs_tag2el_973, - 3, /* Count of tags in the map */ - 0, 0, 0, /* Optional elements (not needed) */ - -1, /* First extension addition */ -}; -asn_TYPE_descriptor_t asn_DEF_NGAP_SupportedTAItem_ExtIEs = { - "SupportedTAItem-ExtIEs", - "SupportedTAItem-ExtIEs", - &asn_OP_SEQUENCE, - asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_973, - sizeof(asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_973) - /sizeof(asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_973[0]), /* 1 */ - asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_973, /* Same as above */ - sizeof(asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_973) - /sizeof(asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_973[0]), /* 1 */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - SEQUENCE_constraint - }, - asn_MBR_NGAP_SupportedTAItem_ExtIEs_973, - 3, /* Elements count */ - &asn_SPC_NGAP_SupportedTAItem_ExtIEs_specs_973 /* Additional specs */ -}; - -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_980 = { - sizeof(struct NGAP_TAI_ExtIEs__extensionValue), - offsetof(struct NGAP_TAI_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TAI_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TAI_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ - 0, 0, - -1 /* Extensions start */ -}; -static /* Use -fall-defs-global to expose */ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_980 = { "extensionValue", "extensionValue", @@ -60087,12 +60884,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_980 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_980, + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_980 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TAI_ExtIEs_977[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAI_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_SupportedTAItem_ExtIEs_977[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SupportedTAItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -60109,11 +60907,11 @@ asn_TYPE_member_t asn_MBR_NGAP_TAI_ExtIEs_977[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAI_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_SupportedTAItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_SupportedTAItem_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60126,11 +60924,11 @@ asn_TYPE_member_t asn_MBR_NGAP_TAI_ExtIEs_977[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAI_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_SupportedTAItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_980, - 0, + select_SupportedTAItem_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60144,32 +60942,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TAI_ExtIEs_977[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TAI_ExtIEs_tags_977[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_977[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAI_ExtIEs_tag2el_977[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_SupportedTAItem_ExtIEs_tag2el_977[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAI_ExtIEs_specs_977 = { - sizeof(struct NGAP_TAI_ExtIEs), - offsetof(struct NGAP_TAI_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TAI_ExtIEs_tag2el_977, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_SupportedTAItem_ExtIEs_specs_977 = { + sizeof(struct NGAP_SupportedTAItem_ExtIEs), + offsetof(struct NGAP_SupportedTAItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_SupportedTAItem_ExtIEs_tag2el_977, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TAI_ExtIEs = { - "TAI-ExtIEs", - "TAI-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_SupportedTAItem_ExtIEs = { + "SupportedTAItem-ExtIEs", + "SupportedTAItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TAI_ExtIEs_tags_977, - sizeof(asn_DEF_NGAP_TAI_ExtIEs_tags_977) - /sizeof(asn_DEF_NGAP_TAI_ExtIEs_tags_977[0]), /* 1 */ - asn_DEF_NGAP_TAI_ExtIEs_tags_977, /* Same as above */ - sizeof(asn_DEF_NGAP_TAI_ExtIEs_tags_977) - /sizeof(asn_DEF_NGAP_TAI_ExtIEs_tags_977[0]), /* 1 */ + asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_977, + sizeof(asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_977) + /sizeof(asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_977[0]), /* 1 */ + asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_977, /* Same as above */ + sizeof(asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_977) + /sizeof(asn_DEF_NGAP_SupportedTAItem_ExtIEs_tags_977[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60179,16 +60977,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TAI_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TAI_ExtIEs_977, + asn_MBR_NGAP_SupportedTAItem_ExtIEs_977, 3, /* Elements count */ - &asn_SPC_NGAP_TAI_ExtIEs_specs_977 /* Additional specs */ + &asn_SPC_NGAP_SupportedTAItem_ExtIEs_specs_977 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_984 = { - sizeof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TAI_ExtIEs__extensionValue), + offsetof(struct NGAP_TAI_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TAI_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TAI_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -60216,8 +61014,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_984 = { &asn_SPC_NGAP_extensionValue_specs_984 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_981[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TAI_ExtIEs_981[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAI_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -60234,7 +61032,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_981[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAI_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -60251,7 +61049,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_981[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAI_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_984, @@ -60269,32 +61067,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_981[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_981[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TAI_ExtIEs_tags_981[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tag2el_981[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAI_ExtIEs_tag2el_981[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_specs_981 = { - sizeof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs), - offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tag2el_981, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAI_ExtIEs_specs_981 = { + sizeof(struct NGAP_TAI_ExtIEs), + offsetof(struct NGAP_TAI_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TAI_ExtIEs_tag2el_981, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs = { - "TAIBroadcastEUTRA-Item-ExtIEs", - "TAIBroadcastEUTRA-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TAI_ExtIEs = { + "TAI-ExtIEs", + "TAI-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_981, - sizeof(asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_981) - /sizeof(asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_981[0]), /* 1 */ - asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_981, /* Same as above */ - sizeof(asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_981) - /sizeof(asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_981[0]), /* 1 */ + asn_DEF_NGAP_TAI_ExtIEs_tags_981, + sizeof(asn_DEF_NGAP_TAI_ExtIEs_tags_981) + /sizeof(asn_DEF_NGAP_TAI_ExtIEs_tags_981[0]), /* 1 */ + asn_DEF_NGAP_TAI_ExtIEs_tags_981, /* Same as above */ + sizeof(asn_DEF_NGAP_TAI_ExtIEs_tags_981) + /sizeof(asn_DEF_NGAP_TAI_ExtIEs_tags_981[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60304,16 +61102,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_981, + asn_MBR_NGAP_TAI_ExtIEs_981, 3, /* Elements count */ - &asn_SPC_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_specs_981 /* Additional specs */ + &asn_SPC_NGAP_TAI_ExtIEs_specs_981 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_988 = { - sizeof(struct NGAP_TAIBroadcastNR_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TAIBroadcastNR_Item_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -60341,8 +61139,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_988 = { &asn_SPC_NGAP_extensionValue_specs_988 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_985[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_985[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -60359,7 +61157,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_985[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -60376,7 +61174,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_985[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_988, @@ -60394,32 +61192,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_985[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_985[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_985[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIBroadcastNR_Item_ExtIEs_tag2el_985[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tag2el_985[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBroadcastNR_Item_ExtIEs_specs_985 = { - sizeof(struct NGAP_TAIBroadcastNR_Item_ExtIEs), - offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TAIBroadcastNR_Item_ExtIEs_tag2el_985, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_specs_985 = { + sizeof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs), + offsetof(struct NGAP_TAIBroadcastEUTRA_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tag2el_985, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs = { - "TAIBroadcastNR-Item-ExtIEs", - "TAIBroadcastNR-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs = { + "TAIBroadcastEUTRA-Item-ExtIEs", + "TAIBroadcastEUTRA-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_985, - sizeof(asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_985) - /sizeof(asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_985[0]), /* 1 */ - asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_985, /* Same as above */ - sizeof(asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_985) - /sizeof(asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_985[0]), /* 1 */ + asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_985, + sizeof(asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_985) + /sizeof(asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_985[0]), /* 1 */ + asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_985, /* Same as above */ + sizeof(asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_985) + /sizeof(asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_tags_985[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60429,16 +61227,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_985, + asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_985, 3, /* Elements count */ - &asn_SPC_NGAP_TAIBroadcastNR_Item_ExtIEs_specs_985 /* Additional specs */ + &asn_SPC_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_specs_985 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_992 = { - sizeof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TAICancelledEUTRA_Item_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TAIBroadcastNR_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TAIBroadcastNR_Item_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -60466,8 +61264,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_992 = { &asn_SPC_NGAP_extensionValue_specs_992 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_989[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_989[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -60484,7 +61282,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_989[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -60501,7 +61299,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_989[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_992, @@ -60519,32 +61317,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_989[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_989[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_989[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAICancelledEUTRA_Item_ExtIEs_tag2el_989[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIBroadcastNR_Item_ExtIEs_tag2el_989[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAICancelledEUTRA_Item_ExtIEs_specs_989 = { - sizeof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs), - offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TAICancelledEUTRA_Item_ExtIEs_tag2el_989, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBroadcastNR_Item_ExtIEs_specs_989 = { + sizeof(struct NGAP_TAIBroadcastNR_Item_ExtIEs), + offsetof(struct NGAP_TAIBroadcastNR_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TAIBroadcastNR_Item_ExtIEs_tag2el_989, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs = { - "TAICancelledEUTRA-Item-ExtIEs", - "TAICancelledEUTRA-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs = { + "TAIBroadcastNR-Item-ExtIEs", + "TAIBroadcastNR-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_989, - sizeof(asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_989) - /sizeof(asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_989[0]), /* 1 */ - asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_989, /* Same as above */ - sizeof(asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_989) - /sizeof(asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_989[0]), /* 1 */ + asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_989, + sizeof(asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_989) + /sizeof(asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_989[0]), /* 1 */ + asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_989, /* Same as above */ + sizeof(asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_989) + /sizeof(asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs_tags_989[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60554,16 +61352,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_989, + asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_989, 3, /* Elements count */ - &asn_SPC_NGAP_TAICancelledEUTRA_Item_ExtIEs_specs_989 /* Additional specs */ + &asn_SPC_NGAP_TAIBroadcastNR_Item_ExtIEs_specs_989 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_996 = { - sizeof(struct NGAP_TAICancelledNR_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TAICancelledNR_Item_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TAICancelledEUTRA_Item_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -60591,8 +61389,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_996 = { &asn_SPC_NGAP_extensionValue_specs_996 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_993[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_993[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -60609,7 +61407,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_993[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -60626,7 +61424,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_993[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_996, @@ -60644,32 +61442,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_993[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_993[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_993[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAICancelledNR_Item_ExtIEs_tag2el_993[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAICancelledEUTRA_Item_ExtIEs_tag2el_993[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAICancelledNR_Item_ExtIEs_specs_993 = { - sizeof(struct NGAP_TAICancelledNR_Item_ExtIEs), - offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TAICancelledNR_Item_ExtIEs_tag2el_993, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAICancelledEUTRA_Item_ExtIEs_specs_993 = { + sizeof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs), + offsetof(struct NGAP_TAICancelledEUTRA_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TAICancelledEUTRA_Item_ExtIEs_tag2el_993, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs = { - "TAICancelledNR-Item-ExtIEs", - "TAICancelledNR-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs = { + "TAICancelledEUTRA-Item-ExtIEs", + "TAICancelledEUTRA-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_993, - sizeof(asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_993) - /sizeof(asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_993[0]), /* 1 */ - asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_993, /* Same as above */ - sizeof(asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_993) - /sizeof(asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_993[0]), /* 1 */ + asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_993, + sizeof(asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_993) + /sizeof(asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_993[0]), /* 1 */ + asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_993, /* Same as above */ + sizeof(asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_993) + /sizeof(asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs_tags_993[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60679,16 +61477,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_993, + asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_993, 3, /* Elements count */ - &asn_SPC_NGAP_TAICancelledNR_Item_ExtIEs_specs_993 /* Additional specs */ + &asn_SPC_NGAP_TAICancelledEUTRA_Item_ExtIEs_specs_993 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1000 = { - sizeof(struct NGAP_TAIListForInactiveItem_ExtIEs__extensionValue), - offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TAIListForInactiveItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TAICancelledNR_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TAICancelledNR_Item_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -60716,8 +61514,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1000 = { &asn_SPC_NGAP_extensionValue_specs_1000 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_997[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_997[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -60734,7 +61532,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_997[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -60751,7 +61549,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_997[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1000, @@ -60769,32 +61567,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_997[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_997[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_997[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIListForInactiveItem_ExtIEs_tag2el_997[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAICancelledNR_Item_ExtIEs_tag2el_997[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIListForInactiveItem_ExtIEs_specs_997 = { - sizeof(struct NGAP_TAIListForInactiveItem_ExtIEs), - offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TAIListForInactiveItem_ExtIEs_tag2el_997, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAICancelledNR_Item_ExtIEs_specs_997 = { + sizeof(struct NGAP_TAICancelledNR_Item_ExtIEs), + offsetof(struct NGAP_TAICancelledNR_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TAICancelledNR_Item_ExtIEs_tag2el_997, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs = { - "TAIListForInactiveItem-ExtIEs", - "TAIListForInactiveItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs = { + "TAICancelledNR-Item-ExtIEs", + "TAICancelledNR-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_997, - sizeof(asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_997) - /sizeof(asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_997[0]), /* 1 */ - asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_997, /* Same as above */ - sizeof(asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_997) - /sizeof(asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_997[0]), /* 1 */ + asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_997, + sizeof(asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_997) + /sizeof(asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_997[0]), /* 1 */ + asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_997, /* Same as above */ + sizeof(asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_997) + /sizeof(asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs_tags_997[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60804,16 +61602,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_997, + asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_997, 3, /* Elements count */ - &asn_SPC_NGAP_TAIListForInactiveItem_ExtIEs_specs_997 /* Additional specs */ + &asn_SPC_NGAP_TAICancelledNR_Item_ExtIEs_specs_997 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1004 = { - sizeof(struct NGAP_TAIListForPagingItem_ExtIEs__extensionValue), - offsetof(struct NGAP_TAIListForPagingItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TAIListForPagingItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TAIListForPagingItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TAIListForInactiveItem_ExtIEs__extensionValue), + offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TAIListForInactiveItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -60841,8 +61639,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1004 = { &asn_SPC_NGAP_extensionValue_specs_1004 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1001[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForPagingItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_1001[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -60859,7 +61657,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1001[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForPagingItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -60876,7 +61674,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1001[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForPagingItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1004, @@ -60894,32 +61692,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1001[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1001[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_1001[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIListForPagingItem_ExtIEs_tag2el_1001[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIListForInactiveItem_ExtIEs_tag2el_1001[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIListForPagingItem_ExtIEs_specs_1001 = { - sizeof(struct NGAP_TAIListForPagingItem_ExtIEs), - offsetof(struct NGAP_TAIListForPagingItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TAIListForPagingItem_ExtIEs_tag2el_1001, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIListForInactiveItem_ExtIEs_specs_1001 = { + sizeof(struct NGAP_TAIListForInactiveItem_ExtIEs), + offsetof(struct NGAP_TAIListForInactiveItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TAIListForInactiveItem_ExtIEs_tag2el_1001, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TAIListForPagingItem_ExtIEs = { - "TAIListForPagingItem-ExtIEs", - "TAIListForPagingItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs = { + "TAIListForInactiveItem-ExtIEs", + "TAIListForInactiveItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1001, - sizeof(asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1001) - /sizeof(asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1001[0]), /* 1 */ - asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1001, /* Same as above */ - sizeof(asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1001) - /sizeof(asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1001[0]), /* 1 */ + asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_1001, + sizeof(asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_1001) + /sizeof(asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_1001[0]), /* 1 */ + asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_1001, /* Same as above */ + sizeof(asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_1001) + /sizeof(asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs_tags_1001[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -60929,16 +61727,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TAIListForPagingItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1001, + asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_1001, 3, /* Elements count */ - &asn_SPC_NGAP_TAIListForPagingItem_ExtIEs_specs_1001 /* Additional specs */ + &asn_SPC_NGAP_TAIListForInactiveItem_ExtIEs_specs_1001 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1008 = { - sizeof(struct NGAP_TargeteNB_ID_ExtIEs__extensionValue), - offsetof(struct NGAP_TargeteNB_ID_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TargeteNB_ID_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TargeteNB_ID_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TAIListForPagingItem_ExtIEs__extensionValue), + offsetof(struct NGAP_TAIListForPagingItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TAIListForPagingItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TAIListForPagingItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -60966,8 +61764,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1008 = { &asn_SPC_NGAP_extensionValue_specs_1008 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1005[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargeteNB_ID_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1005[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForPagingItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -60984,7 +61782,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1005[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargeteNB_ID_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForPagingItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -61001,7 +61799,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1005[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargeteNB_ID_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIListForPagingItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1008, @@ -61019,32 +61817,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1005[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1005[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1005[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargeteNB_ID_ExtIEs_tag2el_1005[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIListForPagingItem_ExtIEs_tag2el_1005[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargeteNB_ID_ExtIEs_specs_1005 = { - sizeof(struct NGAP_TargeteNB_ID_ExtIEs), - offsetof(struct NGAP_TargeteNB_ID_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TargeteNB_ID_ExtIEs_tag2el_1005, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIListForPagingItem_ExtIEs_specs_1005 = { + sizeof(struct NGAP_TAIListForPagingItem_ExtIEs), + offsetof(struct NGAP_TAIListForPagingItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TAIListForPagingItem_ExtIEs_tag2el_1005, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TargeteNB_ID_ExtIEs = { - "TargeteNB-ID-ExtIEs", - "TargeteNB-ID-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TAIListForPagingItem_ExtIEs = { + "TAIListForPagingItem-ExtIEs", + "TAIListForPagingItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1005, - sizeof(asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1005) - /sizeof(asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1005[0]), /* 1 */ - asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1005, /* Same as above */ - sizeof(asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1005) - /sizeof(asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1005[0]), /* 1 */ + asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1005, + sizeof(asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1005) + /sizeof(asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1005[0]), /* 1 */ + asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1005, /* Same as above */ + sizeof(asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1005) + /sizeof(asn_DEF_NGAP_TAIListForPagingItem_ExtIEs_tags_1005[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61054,40 +61852,18 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TargeteNB_ID_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1005, + asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1005, 3, /* Elements count */ - &asn_SPC_NGAP_TargeteNB_ID_ExtIEs_specs_1005 /* Additional specs */ + &asn_SPC_NGAP_TAIListForPagingItem_ExtIEs_specs_1005 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1012[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue, choice.DAPSResponseInfoList), - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), - 0, - &asn_DEF_NGAP_DAPSResponseInfoList, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "DAPSResponseInfoList" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1012[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* DAPSResponseInfoList */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1012 = { - sizeof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue), - offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_1012, - 1, /* Count of tags in the map */ + sizeof(struct NGAP_TargeteNB_ID_ExtIEs__extensionValue), + offsetof(struct NGAP_TargeteNB_ID_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TargeteNB_ID_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TargeteNB_ID_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -61109,13 +61885,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1012 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_1012, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_1012 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1009[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1009[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargeteNB_ID_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -61132,11 +61907,11 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentCont 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargeteNB_ID_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61149,11 +61924,11 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentCont 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargeteNB_ID_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1012, - select_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61167,32 +61942,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentCont "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1009[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1009[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tag2el_1009[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargeteNB_ID_ExtIEs_tag2el_1009[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_specs_1009 = { - sizeof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs), - offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tag2el_1009, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargeteNB_ID_ExtIEs_specs_1009 = { + sizeof(struct NGAP_TargeteNB_ID_ExtIEs), + offsetof(struct NGAP_TargeteNB_ID_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TargeteNB_ID_ExtIEs_tag2el_1009, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs = { - "TargetNGRANNode-ToSourceNGRANNode-TransparentContainer-ExtIEs", - "TargetNGRANNode-ToSourceNGRANNode-TransparentContainer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TargeteNB_ID_ExtIEs = { + "TargeteNB-ID-ExtIEs", + "TargeteNB-ID-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1009, - sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1009) - /sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1009[0]), /* 1 */ - asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1009, /* Same as above */ - sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1009) - /sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1009[0]), /* 1 */ + asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1009, + sizeof(asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1009) + /sizeof(asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1009[0]), /* 1 */ + asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1009, /* Same as above */ + sizeof(asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1009) + /sizeof(asn_DEF_NGAP_TargeteNB_ID_ExtIEs_tags_1009[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61202,18 +61977,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_Transparent #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1009, + asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1009, 3, /* Elements count */ - &asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_specs_1009 /* Additional specs */ + &asn_SPC_NGAP_TargeteNB_ID_ExtIEs_specs_1009 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1016[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue, choice.DAPSResponseInfoList), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_DAPSResponseInfoList, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "DAPSResponseInfoList" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1016[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* DAPSResponseInfoList */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1016 = { - sizeof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs__extensionValue), - offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue), + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_1016, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -61235,12 +62032,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1016 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_1016, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_1016 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_1013[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1013[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -61257,11 +62055,11 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTranspar 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61274,11 +62072,11 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTranspar 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1016, - 0, + select_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61292,32 +62090,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTranspar "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1013[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1013[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tag2el_1013[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tag2el_1013[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_specs_1013 = { - sizeof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs), - offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tag2el_1013, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_specs_1013 = { + sizeof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs), + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tag2el_1013, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs = { - "TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer-ExtIEs", - "TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs = { + "TargetNGRANNode-ToSourceNGRANNode-TransparentContainer-ExtIEs", + "TargetNGRANNode-ToSourceNGRANNode-TransparentContainer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1013, - sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1013) - /sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1013[0]), /* 1 */ - asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1013, /* Same as above */ - sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1013) - /sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1013[0]), /* 1 */ + asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1013, + sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1013) + /sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1013[0]), /* 1 */ + asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1013, /* Same as above */ + sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1013) + /sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_tags_1013[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61327,16 +62125,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTran #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_1013, + asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1013, 3, /* Elements count */ - &asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_specs_1013 /* Additional specs */ + &asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_specs_1013 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1020 = { - sizeof(struct NGAP_TargetRANNodeID_ExtIEs__extensionValue), - offsetof(struct NGAP_TargetRANNodeID_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TargetRANNodeID_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TargetRANNodeID_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs__extensionValue), + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -61364,8 +62162,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1020 = { &asn_SPC_NGAP_extensionValue_specs_1020 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1017[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRANNodeID_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_1017[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -61382,7 +62180,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1017[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRANNodeID_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -61399,7 +62197,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1017[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRANNodeID_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1020, @@ -61417,32 +62215,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1017[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1017[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1017[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargetRANNodeID_ExtIEs_tag2el_1017[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tag2el_1017[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetRANNodeID_ExtIEs_specs_1017 = { - sizeof(struct NGAP_TargetRANNodeID_ExtIEs), - offsetof(struct NGAP_TargetRANNodeID_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TargetRANNodeID_ExtIEs_tag2el_1017, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_specs_1017 = { + sizeof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs), + offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tag2el_1017, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TargetRANNodeID_ExtIEs = { - "TargetRANNodeID-ExtIEs", - "TargetRANNodeID-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs = { + "TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer-ExtIEs", + "TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1017, - sizeof(asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1017) - /sizeof(asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1017[0]), /* 1 */ - asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1017, /* Same as above */ - sizeof(asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1017) - /sizeof(asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1017[0]), /* 1 */ + asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1017, + sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1017) + /sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1017[0]), /* 1 */ + asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1017, /* Same as above */ + sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1017) + /sizeof(asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_tags_1017[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61452,16 +62250,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TargetRANNodeID_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1017, + asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_1017, 3, /* Elements count */ - &asn_SPC_NGAP_TargetRANNodeID_ExtIEs_specs_1017 /* Additional specs */ + &asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_specs_1017 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1024 = { - sizeof(struct NGAP_TargetRNC_ID_ExtIEs__extensionValue), - offsetof(struct NGAP_TargetRNC_ID_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TargetRNC_ID_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TargetRNC_ID_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TargetRANNodeID_ExtIEs__extensionValue), + offsetof(struct NGAP_TargetRANNodeID_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TargetRANNodeID_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TargetRANNodeID_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -61489,8 +62287,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1024 = { &asn_SPC_NGAP_extensionValue_specs_1024 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1021[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRNC_ID_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1021[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRANNodeID_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -61507,7 +62305,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1021[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRNC_ID_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRANNodeID_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -61524,7 +62322,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1021[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRNC_ID_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRANNodeID_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1024, @@ -61542,32 +62340,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1021[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1021[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1021[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargetRNC_ID_ExtIEs_tag2el_1021[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargetRANNodeID_ExtIEs_tag2el_1021[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetRNC_ID_ExtIEs_specs_1021 = { - sizeof(struct NGAP_TargetRNC_ID_ExtIEs), - offsetof(struct NGAP_TargetRNC_ID_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TargetRNC_ID_ExtIEs_tag2el_1021, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetRANNodeID_ExtIEs_specs_1021 = { + sizeof(struct NGAP_TargetRANNodeID_ExtIEs), + offsetof(struct NGAP_TargetRANNodeID_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TargetRANNodeID_ExtIEs_tag2el_1021, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TargetRNC_ID_ExtIEs = { - "TargetRNC-ID-ExtIEs", - "TargetRNC-ID-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TargetRANNodeID_ExtIEs = { + "TargetRANNodeID-ExtIEs", + "TargetRANNodeID-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1021, - sizeof(asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1021) - /sizeof(asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1021[0]), /* 1 */ - asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1021, /* Same as above */ - sizeof(asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1021) - /sizeof(asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1021[0]), /* 1 */ + asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1021, + sizeof(asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1021) + /sizeof(asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1021[0]), /* 1 */ + asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1021, /* Same as above */ + sizeof(asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1021) + /sizeof(asn_DEF_NGAP_TargetRANNodeID_ExtIEs_tags_1021[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61577,16 +62375,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TargetRNC_ID_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1021, + asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1021, 3, /* Elements count */ - &asn_SPC_NGAP_TargetRNC_ID_ExtIEs_specs_1021 /* Additional specs */ + &asn_SPC_NGAP_TargetRANNodeID_ExtIEs_specs_1021 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1028 = { - sizeof(struct NGAP_TNLAssociationItem_ExtIEs__extensionValue), - offsetof(struct NGAP_TNLAssociationItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TNLAssociationItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TNLAssociationItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TargetRNC_ID_ExtIEs__extensionValue), + offsetof(struct NGAP_TargetRNC_ID_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TargetRNC_ID_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TargetRNC_ID_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -61614,8 +62412,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1028 = { &asn_SPC_NGAP_extensionValue_specs_1028 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1025[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TNLAssociationItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1025[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRNC_ID_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -61632,7 +62430,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1025[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TNLAssociationItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRNC_ID_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -61649,7 +62447,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1025[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TNLAssociationItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetRNC_ID_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1028, @@ -61667,32 +62465,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1025[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1025[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1025[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TNLAssociationItem_ExtIEs_tag2el_1025[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TargetRNC_ID_ExtIEs_tag2el_1025[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TNLAssociationItem_ExtIEs_specs_1025 = { - sizeof(struct NGAP_TNLAssociationItem_ExtIEs), - offsetof(struct NGAP_TNLAssociationItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TNLAssociationItem_ExtIEs_tag2el_1025, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetRNC_ID_ExtIEs_specs_1025 = { + sizeof(struct NGAP_TargetRNC_ID_ExtIEs), + offsetof(struct NGAP_TargetRNC_ID_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TargetRNC_ID_ExtIEs_tag2el_1025, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TNLAssociationItem_ExtIEs = { - "TNLAssociationItem-ExtIEs", - "TNLAssociationItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TargetRNC_ID_ExtIEs = { + "TargetRNC-ID-ExtIEs", + "TargetRNC-ID-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1025, - sizeof(asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1025) - /sizeof(asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1025[0]), /* 1 */ - asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1025, /* Same as above */ - sizeof(asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1025) - /sizeof(asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1025[0]), /* 1 */ + asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1025, + sizeof(asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1025) + /sizeof(asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1025[0]), /* 1 */ + asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1025, /* Same as above */ + sizeof(asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1025) + /sizeof(asn_DEF_NGAP_TargetRNC_ID_ExtIEs_tags_1025[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61702,16 +62500,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TNLAssociationItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1025, + asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1025, 3, /* Elements count */ - &asn_SPC_NGAP_TNLAssociationItem_ExtIEs_specs_1025 /* Additional specs */ + &asn_SPC_NGAP_TargetRNC_ID_ExtIEs_specs_1025 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1032 = { - sizeof(struct NGAP_TooearlyIntersystemHO_ExtIEs__extensionValue), - offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TooearlyIntersystemHO_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TNLAssociationItem_ExtIEs__extensionValue), + offsetof(struct NGAP_TNLAssociationItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TNLAssociationItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TNLAssociationItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -61739,8 +62537,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1032 = { &asn_SPC_NGAP_extensionValue_specs_1032 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1029[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1029[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TNLAssociationItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -61757,7 +62555,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1029[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TNLAssociationItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -61774,7 +62572,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1029[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TNLAssociationItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1032, @@ -61792,32 +62590,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1029[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1029[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1029[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TooearlyIntersystemHO_ExtIEs_tag2el_1029[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TNLAssociationItem_ExtIEs_tag2el_1029[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TooearlyIntersystemHO_ExtIEs_specs_1029 = { - sizeof(struct NGAP_TooearlyIntersystemHO_ExtIEs), - offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TooearlyIntersystemHO_ExtIEs_tag2el_1029, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TNLAssociationItem_ExtIEs_specs_1029 = { + sizeof(struct NGAP_TNLAssociationItem_ExtIEs), + offsetof(struct NGAP_TNLAssociationItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TNLAssociationItem_ExtIEs_tag2el_1029, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs = { - "TooearlyIntersystemHO-ExtIEs", - "TooearlyIntersystemHO-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TNLAssociationItem_ExtIEs = { + "TNLAssociationItem-ExtIEs", + "TNLAssociationItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1029, - sizeof(asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1029) - /sizeof(asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1029[0]), /* 1 */ - asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1029, /* Same as above */ - sizeof(asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1029) - /sizeof(asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1029[0]), /* 1 */ + asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1029, + sizeof(asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1029) + /sizeof(asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1029[0]), /* 1 */ + asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1029, /* Same as above */ + sizeof(asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1029) + /sizeof(asn_DEF_NGAP_TNLAssociationItem_ExtIEs_tags_1029[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -61827,12 +62625,137 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1029, + asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1029, 3, /* Elements count */ - &asn_SPC_NGAP_TooearlyIntersystemHO_ExtIEs_specs_1029 /* Additional specs */ + &asn_SPC_NGAP_TNLAssociationItem_ExtIEs_specs_1029 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1036[] = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1036 = { + sizeof(struct NGAP_TooearlyIntersystemHO_ExtIEs__extensionValue), + offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TooearlyIntersystemHO_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ + 0, 0, + -1 /* Extensions start */ +}; +static /* Use -fall-defs-global to expose */ +asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1036 = { + "extensionValue", + "extensionValue", + &asn_OP_OPEN_TYPE, + 0, /* No effective tags (pointer) */ + 0, /* No effective tags (count) */ + 0, /* No tags (pointer) */ + 0, /* No tags (count) */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + OPEN_TYPE_constraint + }, + 0, 0, /* No members */ + &asn_SPC_NGAP_extensionValue_specs_1036 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1033[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs, id), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionID, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_id_constr_1034, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_id_constraint_1033 + }, + 0, 0, /* No default value */ + "id" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs, criticality), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_Criticality, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_criticality_constr_1035, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_criticality_constraint_1033 + }, + 0, 0, /* No default value */ + "criticality" + }, + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs, extensionValue), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + +1, /* EXPLICIT tag at current level */ + &asn_DEF_NGAP_extensionValue_1036, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_extensionValue_constr_1036, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_extensionValue_constraint_1033 + }, + 0, 0, /* No default value */ + "extensionValue" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1033[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TooearlyIntersystemHO_ExtIEs_tag2el_1033[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TooearlyIntersystemHO_ExtIEs_specs_1033 = { + sizeof(struct NGAP_TooearlyIntersystemHO_ExtIEs), + offsetof(struct NGAP_TooearlyIntersystemHO_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TooearlyIntersystemHO_ExtIEs_tag2el_1033, + 3, /* Count of tags in the map */ + 0, 0, 0, /* Optional elements (not needed) */ + -1, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs = { + "TooearlyIntersystemHO-ExtIEs", + "TooearlyIntersystemHO-ExtIEs", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1033, + sizeof(asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1033) + /sizeof(asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1033[0]), /* 1 */ + asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1033, /* Same as above */ + sizeof(asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1033) + /sizeof(asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs_tags_1033[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1033, + 3, /* Elements count */ + &asn_SPC_NGAP_TooearlyIntersystemHO_ExtIEs_specs_1033 /* Additional specs */ +}; + +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1040[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceActivation_ExtIEs__extensionValue, choice.MDT_Configuration), (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -61868,147 +62791,21 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1036[] = { "URI-address" }, }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1036[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1040[] = { { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 }, /* MDT-Configuration */ { (ASN_TAG_CLASS_UNIVERSAL | (26 << 2)), 1, 0, 0 } /* URI-address */ }; -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1036 = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1040 = { sizeof(struct NGAP_TraceActivation_ExtIEs__extensionValue), offsetof(struct NGAP_TraceActivation_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_TraceActivation_ExtIEs__extensionValue, present), sizeof(((struct NGAP_TraceActivation_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_1036, + asn_MAP_NGAP_extensionValue_tag2el_1040, 2, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; static /* Use -fall-defs-global to expose */ -asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1036 = { - "extensionValue", - "extensionValue", - &asn_OP_OPEN_TYPE, - 0, /* No effective tags (pointer) */ - 0, /* No effective tags (count) */ - 0, /* No tags (pointer) */ - 0, /* No tags (count) */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - OPEN_TYPE_constraint - }, - asn_MBR_NGAP_extensionValue_1036, - 2, /* Elements count */ - &asn_SPC_NGAP_extensionValue_specs_1036 /* Additional specs */ -}; - -asn_TYPE_member_t asn_MBR_NGAP_TraceActivation_ExtIEs_1033[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceActivation_ExtIEs, id), - (ASN_TAG_CLASS_CONTEXT | (0 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionID, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_id_constr_1034, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_id_constraint_1033 - }, - 0, 0, /* No default value */ - "id" - }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceActivation_ExtIEs, criticality), - (ASN_TAG_CLASS_CONTEXT | (1 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_Criticality, - select_TraceActivation_ExtIEs_NGAP_criticality_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_criticality_constr_1035, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_criticality_constraint_1033 - }, - 0, 0, /* No default value */ - "criticality" - }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceActivation_ExtIEs, extensionValue), - (ASN_TAG_CLASS_CONTEXT | (2 << 2)), - +1, /* EXPLICIT tag at current level */ - &asn_DEF_NGAP_extensionValue_1036, - select_TraceActivation_ExtIEs_NGAP_extensionValue_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_extensionValue_constr_1036, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_extensionValue_constraint_1033 - }, - 0, 0, /* No default value */ - "extensionValue" - }, -}; -static const ber_tlv_tag_t asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1033[] = { - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TraceActivation_ExtIEs_tag2el_1033[] = { - { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ - { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ - { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ -}; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TraceActivation_ExtIEs_specs_1033 = { - sizeof(struct NGAP_TraceActivation_ExtIEs), - offsetof(struct NGAP_TraceActivation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TraceActivation_ExtIEs_tag2el_1033, - 3, /* Count of tags in the map */ - 0, 0, 0, /* Optional elements (not needed) */ - -1, /* First extension addition */ -}; -asn_TYPE_descriptor_t asn_DEF_NGAP_TraceActivation_ExtIEs = { - "TraceActivation-ExtIEs", - "TraceActivation-ExtIEs", - &asn_OP_SEQUENCE, - asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1033, - sizeof(asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1033) - /sizeof(asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1033[0]), /* 1 */ - asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1033, /* Same as above */ - sizeof(asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1033) - /sizeof(asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1033[0]), /* 1 */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - SEQUENCE_constraint - }, - asn_MBR_NGAP_TraceActivation_ExtIEs_1033, - 3, /* Elements count */ - &asn_SPC_NGAP_TraceActivation_ExtIEs_specs_1033 /* Additional specs */ -}; - -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1040 = { - sizeof(struct NGAP_TAIBasedMDT_ExtIEs__extensionValue), - offsetof(struct NGAP_TAIBasedMDT_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TAIBasedMDT_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TAIBasedMDT_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ - 0, 0, - -1 /* Extensions start */ -}; -static /* Use -fall-defs-global to expose */ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1040 = { "extensionValue", "extensionValue", @@ -62026,12 +62823,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1040 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_1040, + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_1040 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1037[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBasedMDT_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TraceActivation_ExtIEs_1037[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceActivation_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -62048,11 +62846,11 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1037[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBasedMDT_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceActivation_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_TraceActivation_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62065,11 +62863,11 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1037[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBasedMDT_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceActivation_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1040, - 0, + select_TraceActivation_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62083,32 +62881,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1037[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1037[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1037[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIBasedMDT_ExtIEs_tag2el_1037[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TraceActivation_ExtIEs_tag2el_1037[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBasedMDT_ExtIEs_specs_1037 = { - sizeof(struct NGAP_TAIBasedMDT_ExtIEs), - offsetof(struct NGAP_TAIBasedMDT_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TAIBasedMDT_ExtIEs_tag2el_1037, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TraceActivation_ExtIEs_specs_1037 = { + sizeof(struct NGAP_TraceActivation_ExtIEs), + offsetof(struct NGAP_TraceActivation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TraceActivation_ExtIEs_tag2el_1037, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBasedMDT_ExtIEs = { - "TAIBasedMDT-ExtIEs", - "TAIBasedMDT-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TraceActivation_ExtIEs = { + "TraceActivation-ExtIEs", + "TraceActivation-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1037, - sizeof(asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1037) - /sizeof(asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1037[0]), /* 1 */ - asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1037, /* Same as above */ - sizeof(asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1037) - /sizeof(asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1037[0]), /* 1 */ + asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1037, + sizeof(asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1037) + /sizeof(asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1037[0]), /* 1 */ + asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1037, /* Same as above */ + sizeof(asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1037) + /sizeof(asn_DEF_NGAP_TraceActivation_ExtIEs_tags_1037[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62118,16 +62916,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBasedMDT_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1037, + asn_MBR_NGAP_TraceActivation_ExtIEs_1037, 3, /* Elements count */ - &asn_SPC_NGAP_TAIBasedMDT_ExtIEs_specs_1037 /* Additional specs */ + &asn_SPC_NGAP_TraceActivation_ExtIEs_specs_1037 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1044 = { - sizeof(struct NGAP_TABasedMDT_ExtIEs__extensionValue), - offsetof(struct NGAP_TABasedMDT_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TABasedMDT_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TABasedMDT_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TAIBasedMDT_ExtIEs__extensionValue), + offsetof(struct NGAP_TAIBasedMDT_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TAIBasedMDT_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TAIBasedMDT_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -62155,8 +62953,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1044 = { &asn_SPC_NGAP_extensionValue_specs_1044 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TABasedMDT_ExtIEs_1041[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TABasedMDT_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1041[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBasedMDT_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -62173,7 +62971,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TABasedMDT_ExtIEs_1041[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TABasedMDT_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBasedMDT_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -62190,7 +62988,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TABasedMDT_ExtIEs_1041[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TABasedMDT_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TAIBasedMDT_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1044, @@ -62208,32 +63006,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TABasedMDT_ExtIEs_1041[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1041[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1041[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TABasedMDT_ExtIEs_tag2el_1041[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TAIBasedMDT_ExtIEs_tag2el_1041[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TABasedMDT_ExtIEs_specs_1041 = { - sizeof(struct NGAP_TABasedMDT_ExtIEs), - offsetof(struct NGAP_TABasedMDT_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TABasedMDT_ExtIEs_tag2el_1041, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBasedMDT_ExtIEs_specs_1041 = { + sizeof(struct NGAP_TAIBasedMDT_ExtIEs), + offsetof(struct NGAP_TAIBasedMDT_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TAIBasedMDT_ExtIEs_tag2el_1041, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TABasedMDT_ExtIEs = { - "TABasedMDT-ExtIEs", - "TABasedMDT-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBasedMDT_ExtIEs = { + "TAIBasedMDT-ExtIEs", + "TAIBasedMDT-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1041, - sizeof(asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1041) - /sizeof(asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1041[0]), /* 1 */ - asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1041, /* Same as above */ - sizeof(asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1041) - /sizeof(asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1041[0]), /* 1 */ + asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1041, + sizeof(asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1041) + /sizeof(asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1041[0]), /* 1 */ + asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1041, /* Same as above */ + sizeof(asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1041) + /sizeof(asn_DEF_NGAP_TAIBasedMDT_ExtIEs_tags_1041[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62243,16 +63041,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TABasedMDT_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TABasedMDT_ExtIEs_1041, + asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1041, 3, /* Elements count */ - &asn_SPC_NGAP_TABasedMDT_ExtIEs_specs_1041 /* Additional specs */ + &asn_SPC_NGAP_TAIBasedMDT_ExtIEs_specs_1041 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1048 = { - sizeof(struct NGAP_TSCAssistanceInformation_ExtIEs__extensionValue), - offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TSCAssistanceInformation_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TABasedMDT_ExtIEs__extensionValue), + offsetof(struct NGAP_TABasedMDT_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TABasedMDT_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TABasedMDT_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -62280,8 +63078,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1048 = { &asn_SPC_NGAP_extensionValue_specs_1048 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1045[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TABasedMDT_ExtIEs_1045[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TABasedMDT_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -62298,7 +63096,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1045[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TABasedMDT_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -62315,7 +63113,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1045[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TABasedMDT_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1048, @@ -62333,32 +63131,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1045[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1045[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1045[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TSCAssistanceInformation_ExtIEs_tag2el_1045[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TABasedMDT_ExtIEs_tag2el_1045[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TSCAssistanceInformation_ExtIEs_specs_1045 = { - sizeof(struct NGAP_TSCAssistanceInformation_ExtIEs), - offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TSCAssistanceInformation_ExtIEs_tag2el_1045, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TABasedMDT_ExtIEs_specs_1045 = { + sizeof(struct NGAP_TABasedMDT_ExtIEs), + offsetof(struct NGAP_TABasedMDT_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TABasedMDT_ExtIEs_tag2el_1045, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs = { - "TSCAssistanceInformation-ExtIEs", - "TSCAssistanceInformation-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TABasedMDT_ExtIEs = { + "TABasedMDT-ExtIEs", + "TABasedMDT-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1045, - sizeof(asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1045) - /sizeof(asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1045[0]), /* 1 */ - asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1045, /* Same as above */ - sizeof(asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1045) - /sizeof(asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1045[0]), /* 1 */ + asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1045, + sizeof(asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1045) + /sizeof(asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1045[0]), /* 1 */ + asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1045, /* Same as above */ + sizeof(asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1045) + /sizeof(asn_DEF_NGAP_TABasedMDT_ExtIEs_tags_1045[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62368,16 +63166,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1045, + asn_MBR_NGAP_TABasedMDT_ExtIEs_1045, 3, /* Elements count */ - &asn_SPC_NGAP_TSCAssistanceInformation_ExtIEs_specs_1045 /* Additional specs */ + &asn_SPC_NGAP_TABasedMDT_ExtIEs_specs_1045 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1052 = { - sizeof(struct NGAP_TSCTrafficCharacteristics_ExtIEs__extensionValue), - offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_TSCTrafficCharacteristics_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TSCAssistanceInformation_ExtIEs__extensionValue), + offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TSCAssistanceInformation_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -62405,8 +63203,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1052 = { &asn_SPC_NGAP_extensionValue_specs_1052 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1049[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1049[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -62423,7 +63221,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1049[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -62440,7 +63238,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1049[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1052, @@ -62458,32 +63256,32 @@ asn_TYPE_member_t asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1049[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1049[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1049[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_TSCTrafficCharacteristics_ExtIEs_tag2el_1049[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TSCAssistanceInformation_ExtIEs_tag2el_1049[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_TSCTrafficCharacteristics_ExtIEs_specs_1049 = { - sizeof(struct NGAP_TSCTrafficCharacteristics_ExtIEs), - offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs, _asn_ctx), - asn_MAP_NGAP_TSCTrafficCharacteristics_ExtIEs_tag2el_1049, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TSCAssistanceInformation_ExtIEs_specs_1049 = { + sizeof(struct NGAP_TSCAssistanceInformation_ExtIEs), + offsetof(struct NGAP_TSCAssistanceInformation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TSCAssistanceInformation_ExtIEs_tag2el_1049, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs = { - "TSCTrafficCharacteristics-ExtIEs", - "TSCTrafficCharacteristics-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs = { + "TSCAssistanceInformation-ExtIEs", + "TSCAssistanceInformation-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1049, - sizeof(asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1049) - /sizeof(asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1049[0]), /* 1 */ - asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1049, /* Same as above */ - sizeof(asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1049) - /sizeof(asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1049[0]), /* 1 */ + asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1049, + sizeof(asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1049) + /sizeof(asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1049[0]), /* 1 */ + asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1049, /* Same as above */ + sizeof(asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1049) + /sizeof(asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs_tags_1049[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62493,16 +63291,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1049, + asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1049, 3, /* Elements count */ - &asn_SPC_NGAP_TSCTrafficCharacteristics_ExtIEs_specs_1049 /* Additional specs */ + &asn_SPC_NGAP_TSCAssistanceInformation_ExtIEs_specs_1049 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1056 = { - sizeof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs__extensionValue), - offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UEAggregateMaximumBitRate_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_TSCTrafficCharacteristics_ExtIEs__extensionValue), + offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_TSCTrafficCharacteristics_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -62530,8 +63328,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1056 = { &asn_SPC_NGAP_extensionValue_specs_1056 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1053[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1053[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -62548,7 +63346,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1053[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -62565,7 +63363,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1053[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1056, @@ -62583,32 +63381,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1053[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1053[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1053[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEAggregateMaximumBitRate_ExtIEs_tag2el_1053[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_TSCTrafficCharacteristics_ExtIEs_tag2el_1053[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEAggregateMaximumBitRate_ExtIEs_specs_1053 = { - sizeof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs), - offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UEAggregateMaximumBitRate_ExtIEs_tag2el_1053, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_TSCTrafficCharacteristics_ExtIEs_specs_1053 = { + sizeof(struct NGAP_TSCTrafficCharacteristics_ExtIEs), + offsetof(struct NGAP_TSCTrafficCharacteristics_ExtIEs, _asn_ctx), + asn_MAP_NGAP_TSCTrafficCharacteristics_ExtIEs_tag2el_1053, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs = { - "UEAggregateMaximumBitRate-ExtIEs", - "UEAggregateMaximumBitRate-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs = { + "TSCTrafficCharacteristics-ExtIEs", + "TSCTrafficCharacteristics-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1053, - sizeof(asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1053) - /sizeof(asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1053[0]), /* 1 */ - asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1053, /* Same as above */ - sizeof(asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1053) - /sizeof(asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1053[0]), /* 1 */ + asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1053, + sizeof(asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1053) + /sizeof(asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1053[0]), /* 1 */ + asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1053, /* Same as above */ + sizeof(asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1053) + /sizeof(asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs_tags_1053[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62618,16 +63416,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1053, + asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1053, 3, /* Elements count */ - &asn_SPC_NGAP_UEAggregateMaximumBitRate_ExtIEs_specs_1053 /* Additional specs */ + &asn_SPC_NGAP_TSCTrafficCharacteristics_ExtIEs_specs_1053 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1060 = { - sizeof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs__extensionValue), - offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs__extensionValue), + offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UEAggregateMaximumBitRate_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -62655,8 +63453,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1060 = { &asn_SPC_NGAP_extensionValue_specs_1060 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1057[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1057[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -62673,7 +63471,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1057 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -62690,7 +63488,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1057 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1060, @@ -62708,32 +63506,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1057 "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1057[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1057[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tag2el_1057[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEAggregateMaximumBitRate_ExtIEs_tag2el_1057[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_specs_1057 = { - sizeof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs), - offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tag2el_1057, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEAggregateMaximumBitRate_ExtIEs_specs_1057 = { + sizeof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs), + offsetof(struct NGAP_UEAggregateMaximumBitRate_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UEAggregateMaximumBitRate_ExtIEs_tag2el_1057, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs = { - "UE-associatedLogicalNG-connectionItem-ExtIEs", - "UE-associatedLogicalNG-connectionItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs = { + "UEAggregateMaximumBitRate-ExtIEs", + "UEAggregateMaximumBitRate-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1057, - sizeof(asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1057) - /sizeof(asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1057[0]), /* 1 */ - asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1057, /* Same as above */ - sizeof(asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1057) - /sizeof(asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1057[0]), /* 1 */ + asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1057, + sizeof(asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1057) + /sizeof(asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1057[0]), /* 1 */ + asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1057, /* Same as above */ + sizeof(asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1057) + /sizeof(asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs_tags_1057[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62743,16 +63541,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1057, + asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1057, 3, /* Elements count */ - &asn_SPC_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_specs_1057 /* Additional specs */ + &asn_SPC_NGAP_UEAggregateMaximumBitRate_ExtIEs_specs_1057 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1064 = { - sizeof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs__extensionValue), - offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UEContextResumeRequestTransfer_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs__extensionValue), + offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -62780,8 +63578,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1064 = { &asn_SPC_NGAP_extensionValue_specs_1064 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1061[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1061[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -62798,7 +63596,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1061[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -62815,7 +63613,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1061[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1064, @@ -62833,32 +63631,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1061[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1061[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1061[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEContextResumeRequestTransfer_ExtIEs_tag2el_1061[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tag2el_1061[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextResumeRequestTransfer_ExtIEs_specs_1061 = { - sizeof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs), - offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UEContextResumeRequestTransfer_ExtIEs_tag2el_1061, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_specs_1061 = { + sizeof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs), + offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tag2el_1061, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs = { - "UEContextResumeRequestTransfer-ExtIEs", - "UEContextResumeRequestTransfer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs = { + "UE-associatedLogicalNG-connectionItem-ExtIEs", + "UE-associatedLogicalNG-connectionItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1061, - sizeof(asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1061) - /sizeof(asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1061[0]), /* 1 */ - asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1061, /* Same as above */ - sizeof(asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1061) - /sizeof(asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1061[0]), /* 1 */ + asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1061, + sizeof(asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1061) + /sizeof(asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1061[0]), /* 1 */ + asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1061, /* Same as above */ + sizeof(asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1061) + /sizeof(asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_tags_1061[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62868,16 +63666,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1061, + asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1061, 3, /* Elements count */ - &asn_SPC_NGAP_UEContextResumeRequestTransfer_ExtIEs_specs_1061 /* Additional specs */ + &asn_SPC_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_specs_1061 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1068 = { - sizeof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs__extensionValue), - offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UEContextResumeResponseTransfer_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs__extensionValue), + offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UEContextResumeRequestTransfer_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -62905,8 +63703,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1068 = { &asn_SPC_NGAP_extensionValue_specs_1068 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1065[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1065[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -62923,7 +63721,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1065[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -62940,7 +63738,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1065[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1068, @@ -62958,32 +63756,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1065[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1065[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1065[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEContextResumeResponseTransfer_ExtIEs_tag2el_1065[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEContextResumeRequestTransfer_ExtIEs_tag2el_1065[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextResumeResponseTransfer_ExtIEs_specs_1065 = { - sizeof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs), - offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UEContextResumeResponseTransfer_ExtIEs_tag2el_1065, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextResumeRequestTransfer_ExtIEs_specs_1065 = { + sizeof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs), + offsetof(struct NGAP_UEContextResumeRequestTransfer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UEContextResumeRequestTransfer_ExtIEs_tag2el_1065, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs = { - "UEContextResumeResponseTransfer-ExtIEs", - "UEContextResumeResponseTransfer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs = { + "UEContextResumeRequestTransfer-ExtIEs", + "UEContextResumeRequestTransfer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1065, - sizeof(asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1065) - /sizeof(asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1065[0]), /* 1 */ - asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1065, /* Same as above */ - sizeof(asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1065) - /sizeof(asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1065[0]), /* 1 */ + asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1065, + sizeof(asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1065) + /sizeof(asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1065[0]), /* 1 */ + asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1065, /* Same as above */ + sizeof(asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1065) + /sizeof(asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs_tags_1065[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -62993,16 +63791,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1065, + asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1065, 3, /* Elements count */ - &asn_SPC_NGAP_UEContextResumeResponseTransfer_ExtIEs_specs_1065 /* Additional specs */ + &asn_SPC_NGAP_UEContextResumeRequestTransfer_ExtIEs_specs_1065 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1072 = { - sizeof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs__extensionValue), - offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UEContextSuspendRequestTransfer_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs__extensionValue), + offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UEContextResumeResponseTransfer_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -63030,8 +63828,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1072 = { &asn_SPC_NGAP_extensionValue_specs_1072 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1069[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1069[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -63048,7 +63846,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1069[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -63065,7 +63863,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1069[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1072, @@ -63083,32 +63881,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1069[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1069[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1069[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tag2el_1069[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEContextResumeResponseTransfer_ExtIEs_tag2el_1069[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextSuspendRequestTransfer_ExtIEs_specs_1069 = { - sizeof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs), - offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tag2el_1069, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextResumeResponseTransfer_ExtIEs_specs_1069 = { + sizeof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs), + offsetof(struct NGAP_UEContextResumeResponseTransfer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UEContextResumeResponseTransfer_ExtIEs_tag2el_1069, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs = { - "UEContextSuspendRequestTransfer-ExtIEs", - "UEContextSuspendRequestTransfer-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs = { + "UEContextResumeResponseTransfer-ExtIEs", + "UEContextResumeResponseTransfer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1069, - sizeof(asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1069) - /sizeof(asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1069[0]), /* 1 */ - asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1069, /* Same as above */ - sizeof(asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1069) - /sizeof(asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1069[0]), /* 1 */ + asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1069, + sizeof(asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1069) + /sizeof(asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1069[0]), /* 1 */ + asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1069, /* Same as above */ + sizeof(asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1069) + /sizeof(asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs_tags_1069[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63118,16 +63916,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1069, + asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1069, 3, /* Elements count */ - &asn_SPC_NGAP_UEContextSuspendRequestTransfer_ExtIEs_specs_1069 /* Additional specs */ + &asn_SPC_NGAP_UEContextResumeResponseTransfer_ExtIEs_specs_1069 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1076 = { - sizeof(struct NGAP_UE_DifferentiationInfo_ExtIEs__extensionValue), - offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UE_DifferentiationInfo_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs__extensionValue), + offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UEContextSuspendRequestTransfer_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -63155,8 +63953,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1076 = { &asn_SPC_NGAP_extensionValue_specs_1076 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1073[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1073[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -63173,7 +63971,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1073[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -63190,7 +63988,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1073[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1076, @@ -63208,32 +64006,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1073[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1073[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1073[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UE_DifferentiationInfo_ExtIEs_tag2el_1073[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tag2el_1073[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_DifferentiationInfo_ExtIEs_specs_1073 = { - sizeof(struct NGAP_UE_DifferentiationInfo_ExtIEs), - offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UE_DifferentiationInfo_ExtIEs_tag2el_1073, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextSuspendRequestTransfer_ExtIEs_specs_1073 = { + sizeof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs), + offsetof(struct NGAP_UEContextSuspendRequestTransfer_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tag2el_1073, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs = { - "UE-DifferentiationInfo-ExtIEs", - "UE-DifferentiationInfo-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs = { + "UEContextSuspendRequestTransfer-ExtIEs", + "UEContextSuspendRequestTransfer-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1073, - sizeof(asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1073) - /sizeof(asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1073[0]), /* 1 */ - asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1073, /* Same as above */ - sizeof(asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1073) - /sizeof(asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1073[0]), /* 1 */ + asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1073, + sizeof(asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1073) + /sizeof(asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1073[0]), /* 1 */ + asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1073, /* Same as above */ + sizeof(asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1073) + /sizeof(asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs_tags_1073[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63243,16 +64041,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1073, + asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1073, 3, /* Elements count */ - &asn_SPC_NGAP_UE_DifferentiationInfo_ExtIEs_specs_1073 /* Additional specs */ + &asn_SPC_NGAP_UEContextSuspendRequestTransfer_ExtIEs_specs_1073 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1080 = { - sizeof(struct NGAP_UE_NGAP_ID_pair_ExtIEs__extensionValue), - offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UE_NGAP_ID_pair_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UE_DifferentiationInfo_ExtIEs__extensionValue), + offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UE_DifferentiationInfo_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -63280,8 +64078,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1080 = { &asn_SPC_NGAP_extensionValue_specs_1080 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1077[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1077[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -63298,7 +64096,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1077[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -63315,7 +64113,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1077[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1080, @@ -63333,32 +64131,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1077[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1077[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1077[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UE_NGAP_ID_pair_ExtIEs_tag2el_1077[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UE_DifferentiationInfo_ExtIEs_tag2el_1077[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_NGAP_ID_pair_ExtIEs_specs_1077 = { - sizeof(struct NGAP_UE_NGAP_ID_pair_ExtIEs), - offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UE_NGAP_ID_pair_ExtIEs_tag2el_1077, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_DifferentiationInfo_ExtIEs_specs_1077 = { + sizeof(struct NGAP_UE_DifferentiationInfo_ExtIEs), + offsetof(struct NGAP_UE_DifferentiationInfo_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UE_DifferentiationInfo_ExtIEs_tag2el_1077, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs = { - "UE-NGAP-ID-pair-ExtIEs", - "UE-NGAP-ID-pair-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs = { + "UE-DifferentiationInfo-ExtIEs", + "UE-DifferentiationInfo-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1077, - sizeof(asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1077) - /sizeof(asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1077[0]), /* 1 */ - asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1077, /* Same as above */ - sizeof(asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1077) - /sizeof(asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1077[0]), /* 1 */ + asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1077, + sizeof(asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1077) + /sizeof(asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1077[0]), /* 1 */ + asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1077, /* Same as above */ + sizeof(asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1077) + /sizeof(asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs_tags_1077[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63368,16 +64166,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1077, + asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1077, 3, /* Elements count */ - &asn_SPC_NGAP_UE_NGAP_ID_pair_ExtIEs_specs_1077 /* Additional specs */ + &asn_SPC_NGAP_UE_DifferentiationInfo_ExtIEs_specs_1077 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1084 = { - sizeof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs__extensionValue), - offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UE_NGAP_ID_pair_ExtIEs__extensionValue), + offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UE_NGAP_ID_pair_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -63405,8 +64203,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1084 = { &asn_SPC_NGAP_extensionValue_specs_1084 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1081[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1081[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -63423,7 +64221,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1081[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -63440,7 +64238,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1081[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1084, @@ -63458,32 +64256,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1081[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1081[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1081[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tag2el_1081[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UE_NGAP_ID_pair_ExtIEs_tag2el_1081[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_specs_1081 = { - sizeof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs), - offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tag2el_1081, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_NGAP_ID_pair_ExtIEs_specs_1081 = { + sizeof(struct NGAP_UE_NGAP_ID_pair_ExtIEs), + offsetof(struct NGAP_UE_NGAP_ID_pair_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UE_NGAP_ID_pair_ExtIEs_tag2el_1081, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs = { - "UEPresenceInAreaOfInterestItem-ExtIEs", - "UEPresenceInAreaOfInterestItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs = { + "UE-NGAP-ID-pair-ExtIEs", + "UE-NGAP-ID-pair-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1081, - sizeof(asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1081) - /sizeof(asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1081[0]), /* 1 */ - asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1081, /* Same as above */ - sizeof(asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1081) - /sizeof(asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1081[0]), /* 1 */ + asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1081, + sizeof(asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1081) + /sizeof(asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1081[0]), /* 1 */ + asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1081, /* Same as above */ + sizeof(asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1081) + /sizeof(asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs_tags_1081[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63493,40 +64291,18 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1081, + asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1081, 3, /* Elements count */ - &asn_SPC_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_specs_1081 /* Additional specs */ + &asn_SPC_NGAP_UE_NGAP_ID_pair_ExtIEs_specs_1081 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1088[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue, choice.UERadioCapabilityForPagingOfNB_IoT), - (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), - 0, - &asn_DEF_NGAP_UERadioCapabilityForPagingOfNB_IoT, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "UERadioCapabilityForPagingOfNB-IoT" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1088[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 0, 0, 0 } /* UERadioCapabilityForPagingOfNB-IoT */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1088 = { - sizeof(struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue), - offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_1088, - 1, /* Count of tags in the map */ + sizeof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs__extensionValue), + offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -63548,13 +64324,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1088 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_1088, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_1088 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1085[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1085[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -63571,11 +64346,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1085[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_UERadioCapabilityForPaging_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63588,11 +64363,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1085[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1088, - select_UERadioCapabilityForPaging_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63606,32 +64381,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1085[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1085[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1085[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UERadioCapabilityForPaging_ExtIEs_tag2el_1085[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tag2el_1085[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UERadioCapabilityForPaging_ExtIEs_specs_1085 = { - sizeof(struct NGAP_UERadioCapabilityForPaging_ExtIEs), - offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UERadioCapabilityForPaging_ExtIEs_tag2el_1085, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_specs_1085 = { + sizeof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs), + offsetof(struct NGAP_UEPresenceInAreaOfInterestItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tag2el_1085, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs = { - "UERadioCapabilityForPaging-ExtIEs", - "UERadioCapabilityForPaging-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs = { + "UEPresenceInAreaOfInterestItem-ExtIEs", + "UEPresenceInAreaOfInterestItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1085, - sizeof(asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1085) - /sizeof(asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1085[0]), /* 1 */ - asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1085, /* Same as above */ - sizeof(asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1085) - /sizeof(asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1085[0]), /* 1 */ + asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1085, + sizeof(asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1085) + /sizeof(asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1085[0]), /* 1 */ + asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1085, /* Same as above */ + sizeof(asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1085) + /sizeof(asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_tags_1085[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63641,18 +64416,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1085, + asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1085, 3, /* Elements count */ - &asn_SPC_NGAP_UERadioCapabilityForPaging_ExtIEs_specs_1085 /* Additional specs */ + &asn_SPC_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_specs_1085 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1092[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue, choice.UERadioCapabilityForPagingOfNB_IoT), + (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), + 0, + &asn_DEF_NGAP_UERadioCapabilityForPagingOfNB_IoT, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "UERadioCapabilityForPagingOfNB-IoT" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1092[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 0, 0, 0 } /* UERadioCapabilityForPagingOfNB-IoT */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1092 = { - sizeof(struct NGAP_UESecurityCapabilities_ExtIEs__extensionValue), - offsetof(struct NGAP_UESecurityCapabilities_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UESecurityCapabilities_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UESecurityCapabilities_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue), + offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UERadioCapabilityForPaging_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_1092, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -63674,12 +64471,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1092 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_1092, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_1092 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1089[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UESecurityCapabilities_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1089[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -63696,11 +64494,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1089[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UESecurityCapabilities_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_UERadioCapabilityForPaging_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63713,11 +64511,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1089[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UESecurityCapabilities_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1092, - 0, + select_UERadioCapabilityForPaging_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63731,32 +64529,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1089[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1089[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1089[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UESecurityCapabilities_ExtIEs_tag2el_1089[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UERadioCapabilityForPaging_ExtIEs_tag2el_1089[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UESecurityCapabilities_ExtIEs_specs_1089 = { - sizeof(struct NGAP_UESecurityCapabilities_ExtIEs), - offsetof(struct NGAP_UESecurityCapabilities_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UESecurityCapabilities_ExtIEs_tag2el_1089, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UERadioCapabilityForPaging_ExtIEs_specs_1089 = { + sizeof(struct NGAP_UERadioCapabilityForPaging_ExtIEs), + offsetof(struct NGAP_UERadioCapabilityForPaging_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UERadioCapabilityForPaging_ExtIEs_tag2el_1089, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UESecurityCapabilities_ExtIEs = { - "UESecurityCapabilities-ExtIEs", - "UESecurityCapabilities-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs = { + "UERadioCapabilityForPaging-ExtIEs", + "UERadioCapabilityForPaging-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1089, - sizeof(asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1089) - /sizeof(asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1089[0]), /* 1 */ - asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1089, /* Same as above */ - sizeof(asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1089) - /sizeof(asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1089[0]), /* 1 */ + asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1089, + sizeof(asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1089) + /sizeof(asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1089[0]), /* 1 */ + asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1089, /* Same as above */ + sizeof(asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1089) + /sizeof(asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs_tags_1089[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63766,16 +64564,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UESecurityCapabilities_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1089, + asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1089, 3, /* Elements count */ - &asn_SPC_NGAP_UESecurityCapabilities_ExtIEs_specs_1089 /* Additional specs */ + &asn_SPC_NGAP_UERadioCapabilityForPaging_ExtIEs_specs_1089 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1096 = { - sizeof(struct NGAP_UL_CP_SecurityInformation_ExtIEs__extensionValue), - offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UL_CP_SecurityInformation_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UESecurityCapabilities_ExtIEs__extensionValue), + offsetof(struct NGAP_UESecurityCapabilities_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UESecurityCapabilities_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UESecurityCapabilities_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -63803,8 +64601,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1096 = { &asn_SPC_NGAP_extensionValue_specs_1096 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1093[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1093[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UESecurityCapabilities_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -63821,7 +64619,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1093[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UESecurityCapabilities_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -63838,7 +64636,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1093[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UESecurityCapabilities_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1096, @@ -63856,32 +64654,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1093[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1093[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1093[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UL_CP_SecurityInformation_ExtIEs_tag2el_1093[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UESecurityCapabilities_ExtIEs_tag2el_1093[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UL_CP_SecurityInformation_ExtIEs_specs_1093 = { - sizeof(struct NGAP_UL_CP_SecurityInformation_ExtIEs), - offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UL_CP_SecurityInformation_ExtIEs_tag2el_1093, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UESecurityCapabilities_ExtIEs_specs_1093 = { + sizeof(struct NGAP_UESecurityCapabilities_ExtIEs), + offsetof(struct NGAP_UESecurityCapabilities_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UESecurityCapabilities_ExtIEs_tag2el_1093, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs = { - "UL-CP-SecurityInformation-ExtIEs", - "UL-CP-SecurityInformation-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UESecurityCapabilities_ExtIEs = { + "UESecurityCapabilities-ExtIEs", + "UESecurityCapabilities-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1093, - sizeof(asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1093) - /sizeof(asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1093[0]), /* 1 */ - asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1093, /* Same as above */ - sizeof(asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1093) - /sizeof(asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1093[0]), /* 1 */ + asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1093, + sizeof(asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1093) + /sizeof(asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1093[0]), /* 1 */ + asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1093, /* Same as above */ + sizeof(asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1093) + /sizeof(asn_DEF_NGAP_UESecurityCapabilities_ExtIEs_tags_1093[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -63891,12 +64689,137 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1093, + asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1093, 3, /* Elements count */ - &asn_SPC_NGAP_UL_CP_SecurityInformation_ExtIEs_specs_1093 /* Additional specs */ + &asn_SPC_NGAP_UESecurityCapabilities_ExtIEs_specs_1093 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1100[] = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1100 = { + sizeof(struct NGAP_UL_CP_SecurityInformation_ExtIEs__extensionValue), + offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UL_CP_SecurityInformation_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ + 0, 0, + -1 /* Extensions start */ +}; +static /* Use -fall-defs-global to expose */ +asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1100 = { + "extensionValue", + "extensionValue", + &asn_OP_OPEN_TYPE, + 0, /* No effective tags (pointer) */ + 0, /* No effective tags (count) */ + 0, /* No tags (pointer) */ + 0, /* No tags (count) */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + OPEN_TYPE_constraint + }, + 0, 0, /* No members */ + &asn_SPC_NGAP_extensionValue_specs_1100 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1097[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs, id), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionID, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_id_constr_1098, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_id_constraint_1097 + }, + 0, 0, /* No default value */ + "id" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs, criticality), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_Criticality, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_criticality_constr_1099, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_criticality_constraint_1097 + }, + 0, 0, /* No default value */ + "criticality" + }, + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs, extensionValue), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + +1, /* EXPLICIT tag at current level */ + &asn_DEF_NGAP_extensionValue_1100, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_extensionValue_constr_1100, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_extensionValue_constraint_1097 + }, + 0, 0, /* No default value */ + "extensionValue" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1097[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UL_CP_SecurityInformation_ExtIEs_tag2el_1097[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UL_CP_SecurityInformation_ExtIEs_specs_1097 = { + sizeof(struct NGAP_UL_CP_SecurityInformation_ExtIEs), + offsetof(struct NGAP_UL_CP_SecurityInformation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UL_CP_SecurityInformation_ExtIEs_tag2el_1097, + 3, /* Count of tags in the map */ + 0, 0, 0, /* Optional elements (not needed) */ + -1, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs = { + "UL-CP-SecurityInformation-ExtIEs", + "UL-CP-SecurityInformation-ExtIEs", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1097, + sizeof(asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1097) + /sizeof(asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1097[0]), /* 1 */ + asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1097, /* Same as above */ + sizeof(asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1097) + /sizeof(asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs_tags_1097[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1097, + 3, /* Elements count */ + &asn_SPC_NGAP_UL_CP_SecurityInformation_ExtIEs_specs_1097 /* Additional specs */ +}; + +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1104[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs__extensionValue, choice.UPTransportLayerInformation), -1 /* Ambiguous tag (CHOICE?) */, 0, @@ -63932,149 +64855,23 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1100[] = { "UPTransportLayerInformation" }, }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1100[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1104[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 1 }, /* gTPTunnel */ { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 1, -1, 0 }, /* gTPTunnel */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 0, 0, 1 }, /* choice-Extensions */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, -1, 0 } /* choice-Extensions */ }; -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1100 = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1104 = { sizeof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs__extensionValue), offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs__extensionValue, present), sizeof(((struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_1100, + asn_MAP_NGAP_extensionValue_tag2el_1104, 4, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; static /* Use -fall-defs-global to expose */ -asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1100 = { - "extensionValue", - "extensionValue", - &asn_OP_OPEN_TYPE, - 0, /* No effective tags (pointer) */ - 0, /* No effective tags (count) */ - 0, /* No tags (pointer) */ - 0, /* No tags (count) */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - OPEN_TYPE_constraint - }, - asn_MBR_NGAP_extensionValue_1100, - 2, /* Elements count */ - &asn_SPC_NGAP_extensionValue_specs_1100 /* Additional specs */ -}; - -asn_TYPE_member_t asn_MBR_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1097[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, id), - (ASN_TAG_CLASS_CONTEXT | (0 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionID, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_id_constr_1098, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_id_constraint_1097 - }, - 0, 0, /* No default value */ - "id" - }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, criticality), - (ASN_TAG_CLASS_CONTEXT | (1 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_Criticality, - select_UL_NGU_UP_TNLModifyItem_ExtIEs_NGAP_criticality_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_criticality_constr_1099, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_criticality_constraint_1097 - }, - 0, 0, /* No default value */ - "criticality" - }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, extensionValue), - (ASN_TAG_CLASS_CONTEXT | (2 << 2)), - +1, /* EXPLICIT tag at current level */ - &asn_DEF_NGAP_extensionValue_1100, - select_UL_NGU_UP_TNLModifyItem_ExtIEs_NGAP_extensionValue_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_extensionValue_constr_1100, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_extensionValue_constraint_1097 - }, - 0, 0, /* No default value */ - "extensionValue" - }, -}; -static const ber_tlv_tag_t asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1097[] = { - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tag2el_1097[] = { - { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ - { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ - { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ -}; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_specs_1097 = { - sizeof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs), - offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tag2el_1097, - 3, /* Count of tags in the map */ - 0, 0, 0, /* Optional elements (not needed) */ - -1, /* First extension addition */ -}; -asn_TYPE_descriptor_t asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs = { - "UL-NGU-UP-TNLModifyItem-ExtIEs", - "UL-NGU-UP-TNLModifyItem-ExtIEs", - &asn_OP_SEQUENCE, - asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1097, - sizeof(asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1097) - /sizeof(asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1097[0]), /* 1 */ - asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1097, /* Same as above */ - sizeof(asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1097) - /sizeof(asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1097[0]), /* 1 */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - SEQUENCE_constraint - }, - asn_MBR_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1097, - 3, /* Elements count */ - &asn_SPC_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_specs_1097 /* Additional specs */ -}; - -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1104 = { - sizeof(struct NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue), - offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ - 0, 0, - -1 /* Extensions start */ -}; -static /* Use -fall-defs-global to expose */ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1104 = { "extensionValue", "extensionValue", @@ -64092,12 +64889,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1104 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_1104, + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_1104 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1101[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1101[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -64114,11 +64912,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1101[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_UL_NGU_UP_TNLModifyItem_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64131,11 +64929,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1101[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1104, - 0, + select_UL_NGU_UP_TNLModifyItem_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64149,32 +64947,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1101[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1101[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1101[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UnavailableGUAMIItem_ExtIEs_tag2el_1101[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tag2el_1101[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UnavailableGUAMIItem_ExtIEs_specs_1101 = { - sizeof(struct NGAP_UnavailableGUAMIItem_ExtIEs), - offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UnavailableGUAMIItem_ExtIEs_tag2el_1101, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_specs_1101 = { + sizeof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs), + offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tag2el_1101, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs = { - "UnavailableGUAMIItem-ExtIEs", - "UnavailableGUAMIItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs = { + "UL-NGU-UP-TNLModifyItem-ExtIEs", + "UL-NGU-UP-TNLModifyItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1101, - sizeof(asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1101) - /sizeof(asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1101[0]), /* 1 */ - asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1101, /* Same as above */ - sizeof(asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1101) - /sizeof(asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1101[0]), /* 1 */ + asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1101, + sizeof(asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1101) + /sizeof(asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1101[0]), /* 1 */ + asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1101, /* Same as above */ + sizeof(asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1101) + /sizeof(asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_tags_1101[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64184,16 +64982,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1101, + asn_MBR_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1101, 3, /* Elements count */ - &asn_SPC_NGAP_UnavailableGUAMIItem_ExtIEs_specs_1101 /* Additional specs */ + &asn_SPC_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_specs_1101 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1108 = { - sizeof(struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue), - offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue), + offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -64221,8 +65019,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1108 = { &asn_SPC_NGAP_extensionValue_specs_1108 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1105[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1105[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -64239,7 +65037,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1105[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -64256,7 +65054,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1105[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1108, @@ -64274,32 +65072,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1105[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1105[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1105[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UPTransportLayerInformationItem_ExtIEs_tag2el_1105[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UnavailableGUAMIItem_ExtIEs_tag2el_1105[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UPTransportLayerInformationItem_ExtIEs_specs_1105 = { - sizeof(struct NGAP_UPTransportLayerInformationItem_ExtIEs), - offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UPTransportLayerInformationItem_ExtIEs_tag2el_1105, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UnavailableGUAMIItem_ExtIEs_specs_1105 = { + sizeof(struct NGAP_UnavailableGUAMIItem_ExtIEs), + offsetof(struct NGAP_UnavailableGUAMIItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UnavailableGUAMIItem_ExtIEs_tag2el_1105, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs = { - "UPTransportLayerInformationItem-ExtIEs", - "UPTransportLayerInformationItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs = { + "UnavailableGUAMIItem-ExtIEs", + "UnavailableGUAMIItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1105, - sizeof(asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1105) - /sizeof(asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1105[0]), /* 1 */ - asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1105, /* Same as above */ - sizeof(asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1105) - /sizeof(asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1105[0]), /* 1 */ + asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1105, + sizeof(asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1105) + /sizeof(asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1105[0]), /* 1 */ + asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1105, /* Same as above */ + sizeof(asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1105) + /sizeof(asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs_tags_1105[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64309,18 +65107,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1105, + asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1105, 3, /* Elements count */ - &asn_SPC_NGAP_UPTransportLayerInformationItem_ExtIEs_specs_1105 /* Additional specs */ + &asn_SPC_NGAP_UnavailableGUAMIItem_ExtIEs_specs_1105 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1112[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue, choice.CommonNetworkInstance), + (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), + 0, + &asn_DEF_NGAP_CommonNetworkInstance, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "CommonNetworkInstance" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1112[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 0, 0, 0 } /* CommonNetworkInstance */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1112 = { - sizeof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue), - offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue), + offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_1112, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -64342,12 +65162,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1112 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_1112, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_1112 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1109[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1109[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -64364,11 +65185,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1109[] 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_UPTransportLayerInformationItem_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64381,11 +65202,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1109[] 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1112, - 0, + select_UPTransportLayerInformationItem_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64399,32 +65220,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1109[] "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1109[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1109[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tag2el_1109[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UPTransportLayerInformationItem_ExtIEs_tag2el_1109[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UPTransportLayerInformationPairItem_ExtIEs_specs_1109 = { - sizeof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs), - offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tag2el_1109, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UPTransportLayerInformationItem_ExtIEs_specs_1109 = { + sizeof(struct NGAP_UPTransportLayerInformationItem_ExtIEs), + offsetof(struct NGAP_UPTransportLayerInformationItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UPTransportLayerInformationItem_ExtIEs_tag2el_1109, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs = { - "UPTransportLayerInformationPairItem-ExtIEs", - "UPTransportLayerInformationPairItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs = { + "UPTransportLayerInformationItem-ExtIEs", + "UPTransportLayerInformationItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1109, - sizeof(asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1109) - /sizeof(asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1109[0]), /* 1 */ - asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1109, /* Same as above */ - sizeof(asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1109) - /sizeof(asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1109[0]), /* 1 */ + asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1109, + sizeof(asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1109) + /sizeof(asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1109[0]), /* 1 */ + asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1109, /* Same as above */ + sizeof(asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1109) + /sizeof(asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs_tags_1109[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64434,42 +65255,18 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs = #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1109, + asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1109, 3, /* Elements count */ - &asn_SPC_NGAP_UPTransportLayerInformationPairItem_ExtIEs_specs_1109 /* Additional specs */ + &asn_SPC_NGAP_UPTransportLayerInformationItem_ExtIEs_specs_1109 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1116[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue, choice.NGRAN_CGI), - -1 /* Ambiguous tag (CHOICE?) */, - 0, - &asn_DEF_NGAP_NGRAN_CGI, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "NGRAN-CGI" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1116[] = { - { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* nR-CGI */ - { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 0, 0, 0 }, /* eUTRA-CGI */ - { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 0, 0, 0 } /* choice-Extensions */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1116 = { - sizeof(struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue), - offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_1116, - 3, /* Count of tags in the map */ + sizeof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue), + offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -64491,13 +65288,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1116 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_1116, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_1116 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1113[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1113[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -64514,11 +65310,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1113[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_UserLocationInformationEUTRA_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64531,11 +65327,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1113[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1116, - select_UserLocationInformationEUTRA_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64549,32 +65345,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1113[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1113[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1113[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationEUTRA_ExtIEs_tag2el_1113[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tag2el_1113[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationEUTRA_ExtIEs_specs_1113 = { - sizeof(struct NGAP_UserLocationInformationEUTRA_ExtIEs), - offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UserLocationInformationEUTRA_ExtIEs_tag2el_1113, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UPTransportLayerInformationPairItem_ExtIEs_specs_1113 = { + sizeof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs), + offsetof(struct NGAP_UPTransportLayerInformationPairItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tag2el_1113, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs = { - "UserLocationInformationEUTRA-ExtIEs", - "UserLocationInformationEUTRA-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs = { + "UPTransportLayerInformationPairItem-ExtIEs", + "UPTransportLayerInformationPairItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1113, - sizeof(asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1113) - /sizeof(asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1113[0]), /* 1 */ - asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1113, /* Same as above */ - sizeof(asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1113) - /sizeof(asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1113[0]), /* 1 */ + asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1113, + sizeof(asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1113) + /sizeof(asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1113[0]), /* 1 */ + asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1113, /* Same as above */ + sizeof(asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1113) + /sizeof(asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs_tags_1113[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64584,18 +65380,42 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1113, + asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1113, 3, /* Elements count */ - &asn_SPC_NGAP_UserLocationInformationEUTRA_ExtIEs_specs_1113 /* Additional specs */ + &asn_SPC_NGAP_UPTransportLayerInformationPairItem_ExtIEs_specs_1113 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1120[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue, choice.NGRAN_CGI), + -1 /* Ambiguous tag (CHOICE?) */, + 0, + &asn_DEF_NGAP_NGRAN_CGI, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "NGRAN-CGI" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1120[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* nR-CGI */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 0, 0, 0 }, /* eUTRA-CGI */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 0, 0, 0 } /* choice-Extensions */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1120 = { - sizeof(struct NGAP_UserLocationInformationN3IWF_ExtIEs__extensionValue), - offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UserLocationInformationN3IWF_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue), + offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UserLocationInformationEUTRA_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_1120, + 3, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -64617,12 +65437,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1120 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_1120, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_1120 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1117[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1117[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -64639,11 +65460,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1117[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_UserLocationInformationEUTRA_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64656,11 +65477,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1117[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1120, - 0, + select_UserLocationInformationEUTRA_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64674,32 +65495,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1117[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1117[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1117[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationN3IWF_ExtIEs_tag2el_1117[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationEUTRA_ExtIEs_tag2el_1117[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationN3IWF_ExtIEs_specs_1117 = { - sizeof(struct NGAP_UserLocationInformationN3IWF_ExtIEs), - offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UserLocationInformationN3IWF_ExtIEs_tag2el_1117, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationEUTRA_ExtIEs_specs_1117 = { + sizeof(struct NGAP_UserLocationInformationEUTRA_ExtIEs), + offsetof(struct NGAP_UserLocationInformationEUTRA_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UserLocationInformationEUTRA_ExtIEs_tag2el_1117, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs = { - "UserLocationInformationN3IWF-ExtIEs", - "UserLocationInformationN3IWF-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs = { + "UserLocationInformationEUTRA-ExtIEs", + "UserLocationInformationEUTRA-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1117, - sizeof(asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1117) - /sizeof(asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1117[0]), /* 1 */ - asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1117, /* Same as above */ - sizeof(asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1117) - /sizeof(asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1117[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1117, + sizeof(asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1117) + /sizeof(asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1117[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1117, /* Same as above */ + sizeof(asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1117) + /sizeof(asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs_tags_1117[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64709,16 +65530,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1117, + asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1117, 3, /* Elements count */ - &asn_SPC_NGAP_UserLocationInformationN3IWF_ExtIEs_specs_1117 /* Additional specs */ + &asn_SPC_NGAP_UserLocationInformationEUTRA_ExtIEs_specs_1117 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1124 = { - sizeof(struct NGAP_UserLocationInformationTNGF_ExtIEs__extensionValue), - offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UserLocationInformationTNGF_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UserLocationInformationN3IWF_ExtIEs__extensionValue), + offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UserLocationInformationN3IWF_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -64746,8 +65567,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1124 = { &asn_SPC_NGAP_extensionValue_specs_1124 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1121[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1121[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -64764,7 +65585,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1121[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -64781,7 +65602,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1121[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1124, @@ -64799,32 +65620,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1121[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1121[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1121[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationTNGF_ExtIEs_tag2el_1121[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationN3IWF_ExtIEs_tag2el_1121[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationTNGF_ExtIEs_specs_1121 = { - sizeof(struct NGAP_UserLocationInformationTNGF_ExtIEs), - offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UserLocationInformationTNGF_ExtIEs_tag2el_1121, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationN3IWF_ExtIEs_specs_1121 = { + sizeof(struct NGAP_UserLocationInformationN3IWF_ExtIEs), + offsetof(struct NGAP_UserLocationInformationN3IWF_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UserLocationInformationN3IWF_ExtIEs_tag2el_1121, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs = { - "UserLocationInformationTNGF-ExtIEs", - "UserLocationInformationTNGF-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs = { + "UserLocationInformationN3IWF-ExtIEs", + "UserLocationInformationN3IWF-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1121, - sizeof(asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1121) - /sizeof(asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1121[0]), /* 1 */ - asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1121, /* Same as above */ - sizeof(asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1121) - /sizeof(asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1121[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1121, + sizeof(asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1121) + /sizeof(asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1121[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1121, /* Same as above */ + sizeof(asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1121) + /sizeof(asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs_tags_1121[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64834,16 +65655,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1121, + asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1121, 3, /* Elements count */ - &asn_SPC_NGAP_UserLocationInformationTNGF_ExtIEs_specs_1121 /* Additional specs */ + &asn_SPC_NGAP_UserLocationInformationN3IWF_ExtIEs_specs_1121 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1128 = { - sizeof(struct NGAP_UserLocationInformationTWIF_ExtIEs__extensionValue), - offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UserLocationInformationTWIF_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UserLocationInformationTNGF_ExtIEs__extensionValue), + offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UserLocationInformationTNGF_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -64871,8 +65692,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1128 = { &asn_SPC_NGAP_extensionValue_specs_1128 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1125[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1125[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -64889,7 +65710,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1125[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -64906,7 +65727,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1125[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1128, @@ -64924,32 +65745,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1125[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1125[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1125[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationTWIF_ExtIEs_tag2el_1125[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationTNGF_ExtIEs_tag2el_1125[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationTWIF_ExtIEs_specs_1125 = { - sizeof(struct NGAP_UserLocationInformationTWIF_ExtIEs), - offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UserLocationInformationTWIF_ExtIEs_tag2el_1125, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationTNGF_ExtIEs_specs_1125 = { + sizeof(struct NGAP_UserLocationInformationTNGF_ExtIEs), + offsetof(struct NGAP_UserLocationInformationTNGF_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UserLocationInformationTNGF_ExtIEs_tag2el_1125, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs = { - "UserLocationInformationTWIF-ExtIEs", - "UserLocationInformationTWIF-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs = { + "UserLocationInformationTNGF-ExtIEs", + "UserLocationInformationTNGF-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1125, - sizeof(asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1125) - /sizeof(asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1125[0]), /* 1 */ - asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1125, /* Same as above */ - sizeof(asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1125) - /sizeof(asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1125[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1125, + sizeof(asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1125) + /sizeof(asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1125[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1125, /* Same as above */ + sizeof(asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1125) + /sizeof(asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs_tags_1125[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -64959,12 +65780,137 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1125, + asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1125, 3, /* Elements count */ - &asn_SPC_NGAP_UserLocationInformationTWIF_ExtIEs_specs_1125 /* Additional specs */ + &asn_SPC_NGAP_UserLocationInformationTNGF_ExtIEs_specs_1125 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1132[] = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1132 = { + sizeof(struct NGAP_UserLocationInformationTWIF_ExtIEs__extensionValue), + offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UserLocationInformationTWIF_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ + 0, 0, + -1 /* Extensions start */ +}; +static /* Use -fall-defs-global to expose */ +asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1132 = { + "extensionValue", + "extensionValue", + &asn_OP_OPEN_TYPE, + 0, /* No effective tags (pointer) */ + 0, /* No effective tags (count) */ + 0, /* No tags (pointer) */ + 0, /* No tags (count) */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + OPEN_TYPE_constraint + }, + 0, 0, /* No members */ + &asn_SPC_NGAP_extensionValue_specs_1132 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1129[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs, id), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionID, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_id_constr_1130, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_id_constraint_1129 + }, + 0, 0, /* No default value */ + "id" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs, criticality), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_Criticality, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_criticality_constr_1131, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_criticality_constraint_1129 + }, + 0, 0, /* No default value */ + "criticality" + }, + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs, extensionValue), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + +1, /* EXPLICIT tag at current level */ + &asn_DEF_NGAP_extensionValue_1132, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_extensionValue_constr_1132, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_extensionValue_constraint_1129 + }, + 0, 0, /* No default value */ + "extensionValue" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1129[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationTWIF_ExtIEs_tag2el_1129[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationTWIF_ExtIEs_specs_1129 = { + sizeof(struct NGAP_UserLocationInformationTWIF_ExtIEs), + offsetof(struct NGAP_UserLocationInformationTWIF_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UserLocationInformationTWIF_ExtIEs_tag2el_1129, + 3, /* Count of tags in the map */ + 0, 0, 0, /* Optional elements (not needed) */ + -1, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs = { + "UserLocationInformationTWIF-ExtIEs", + "UserLocationInformationTWIF-ExtIEs", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1129, + sizeof(asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1129) + /sizeof(asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1129[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1129, /* Same as above */ + sizeof(asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1129) + /sizeof(asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs_tags_1129[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1129, + 3, /* Elements count */ + &asn_SPC_NGAP_UserLocationInformationTWIF_ExtIEs_specs_1129 /* Additional specs */ +}; + +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1136[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationNR_ExtIEs__extensionValue, choice.NGRAN_CGI), -1 /* Ambiguous tag (CHOICE?) */, 0, @@ -65000,149 +65946,23 @@ static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1132[] = { "NID" }, }; -static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_1132[] = { 1, 0 }; -static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_1132[] = { 1, 0 }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1132[] = { +static const unsigned asn_MAP_NGAP_extensionValue_to_canonical_1136[] = { 1, 0 }; +static const unsigned asn_MAP_NGAP_extensionValue_from_canonical_1136[] = { 1, 0 }; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1136[] = { { (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)), 1, 0, 0 }, /* NID */ { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* nR-CGI */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 0, 0, 0 }, /* eUTRA-CGI */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 0, 0, 0 } /* choice-Extensions */ }; -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1132 = { +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1136 = { sizeof(struct NGAP_UserLocationInformationNR_ExtIEs__extensionValue), offsetof(struct NGAP_UserLocationInformationNR_ExtIEs__extensionValue, _asn_ctx), offsetof(struct NGAP_UserLocationInformationNR_ExtIEs__extensionValue, present), sizeof(((struct NGAP_UserLocationInformationNR_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_1132, + asn_MAP_NGAP_extensionValue_tag2el_1136, 4, /* Count of tags in the map */ - asn_MAP_NGAP_extensionValue_to_canonical_1132, - asn_MAP_NGAP_extensionValue_from_canonical_1132, - -1 /* Extensions start */ -}; -static /* Use -fall-defs-global to expose */ -asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1132 = { - "extensionValue", - "extensionValue", - &asn_OP_OPEN_TYPE, - 0, /* No effective tags (pointer) */ - 0, /* No effective tags (count) */ - 0, /* No tags (pointer) */ - 0, /* No tags (count) */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - OPEN_TYPE_constraint - }, - asn_MBR_NGAP_extensionValue_1132, - 2, /* Elements count */ - &asn_SPC_NGAP_extensionValue_specs_1132 /* Additional specs */ -}; - -asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationNR_ExtIEs_1129[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, id), - (ASN_TAG_CLASS_CONTEXT | (0 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionID, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_id_constr_1130, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_id_constraint_1129 - }, - 0, 0, /* No default value */ - "id" - }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, criticality), - (ASN_TAG_CLASS_CONTEXT | (1 << 2)), - -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_Criticality, - select_UserLocationInformationNR_ExtIEs_NGAP_criticality_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_criticality_constr_1131, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_criticality_constraint_1129 - }, - 0, 0, /* No default value */ - "criticality" - }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, extensionValue), - (ASN_TAG_CLASS_CONTEXT | (2 << 2)), - +1, /* EXPLICIT tag at current level */ - &asn_DEF_NGAP_extensionValue_1132, - select_UserLocationInformationNR_ExtIEs_NGAP_extensionValue_type, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_memb_NGAP_extensionValue_constr_1132, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - memb_NGAP_extensionValue_constraint_1129 - }, - 0, 0, /* No default value */ - "extensionValue" - }, -}; -static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1129[] = { - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationNR_ExtIEs_tag2el_1129[] = { - { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ - { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ - { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ -}; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationNR_ExtIEs_specs_1129 = { - sizeof(struct NGAP_UserLocationInformationNR_ExtIEs), - offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UserLocationInformationNR_ExtIEs_tag2el_1129, - 3, /* Count of tags in the map */ - 0, 0, 0, /* Optional elements (not needed) */ - -1, /* First extension addition */ -}; -asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationNR_ExtIEs = { - "UserLocationInformationNR-ExtIEs", - "UserLocationInformationNR-ExtIEs", - &asn_OP_SEQUENCE, - asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1129, - sizeof(asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1129) - /sizeof(asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1129[0]), /* 1 */ - asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1129, /* Same as above */ - sizeof(asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1129) - /sizeof(asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1129[0]), /* 1 */ - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - SEQUENCE_constraint - }, - asn_MBR_NGAP_UserLocationInformationNR_ExtIEs_1129, - 3, /* Elements count */ - &asn_SPC_NGAP_UserLocationInformationNR_ExtIEs_specs_1129 /* Additional specs */ -}; - -static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1136 = { - sizeof(struct NGAP_UserPlaneSecurityInformation_ExtIEs__extensionValue), - offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_UserPlaneSecurityInformation_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ - 0, 0, + asn_MAP_NGAP_extensionValue_to_canonical_1136, + asn_MAP_NGAP_extensionValue_from_canonical_1136, -1 /* Extensions start */ }; static /* Use -fall-defs-global to expose */ @@ -65163,12 +65983,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1136 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_1136, + 2, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_1136 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1133[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationNR_ExtIEs_1133[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -65185,11 +66006,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1133[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_UserLocationInformationNR_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65202,11 +66023,11 @@ asn_TYPE_member_t asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1133[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1136, - 0, + select_UserLocationInformationNR_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65220,32 +66041,32 @@ asn_TYPE_member_t asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1133[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1133[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1133[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserPlaneSecurityInformation_ExtIEs_tag2el_1133[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserLocationInformationNR_ExtIEs_tag2el_1133[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserPlaneSecurityInformation_ExtIEs_specs_1133 = { - sizeof(struct NGAP_UserPlaneSecurityInformation_ExtIEs), - offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs, _asn_ctx), - asn_MAP_NGAP_UserPlaneSecurityInformation_ExtIEs_tag2el_1133, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationNR_ExtIEs_specs_1133 = { + sizeof(struct NGAP_UserLocationInformationNR_ExtIEs), + offsetof(struct NGAP_UserLocationInformationNR_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UserLocationInformationNR_ExtIEs_tag2el_1133, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs = { - "UserPlaneSecurityInformation-ExtIEs", - "UserPlaneSecurityInformation-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationNR_ExtIEs = { + "UserLocationInformationNR-ExtIEs", + "UserLocationInformationNR-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1133, - sizeof(asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1133) - /sizeof(asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1133[0]), /* 1 */ - asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1133, /* Same as above */ - sizeof(asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1133) - /sizeof(asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1133[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1133, + sizeof(asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1133) + /sizeof(asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1133[0]), /* 1 */ + asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1133, /* Same as above */ + sizeof(asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1133) + /sizeof(asn_DEF_NGAP_UserLocationInformationNR_ExtIEs_tags_1133[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65255,16 +66076,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1133, + asn_MBR_NGAP_UserLocationInformationNR_ExtIEs_1133, 3, /* Elements count */ - &asn_SPC_NGAP_UserPlaneSecurityInformation_ExtIEs_specs_1133 /* Additional specs */ + &asn_SPC_NGAP_UserLocationInformationNR_ExtIEs_specs_1133 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1140 = { - sizeof(struct NGAP_VolumeTimedReport_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_VolumeTimedReport_Item_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_UserPlaneSecurityInformation_ExtIEs__extensionValue), + offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_UserPlaneSecurityInformation_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -65292,8 +66113,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1140 = { &asn_SPC_NGAP_extensionValue_specs_1140 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1137[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1137[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -65310,7 +66131,7 @@ asn_TYPE_member_t asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1137[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -65327,7 +66148,7 @@ asn_TYPE_member_t asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1137[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1140, @@ -65345,32 +66166,32 @@ asn_TYPE_member_t asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1137[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1137[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1137[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_VolumeTimedReport_Item_ExtIEs_tag2el_1137[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_UserPlaneSecurityInformation_ExtIEs_tag2el_1137[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_VolumeTimedReport_Item_ExtIEs_specs_1137 = { - sizeof(struct NGAP_VolumeTimedReport_Item_ExtIEs), - offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_VolumeTimedReport_Item_ExtIEs_tag2el_1137, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserPlaneSecurityInformation_ExtIEs_specs_1137 = { + sizeof(struct NGAP_UserPlaneSecurityInformation_ExtIEs), + offsetof(struct NGAP_UserPlaneSecurityInformation_ExtIEs, _asn_ctx), + asn_MAP_NGAP_UserPlaneSecurityInformation_ExtIEs_tag2el_1137, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs = { - "VolumeTimedReport-Item-ExtIEs", - "VolumeTimedReport-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs = { + "UserPlaneSecurityInformation-ExtIEs", + "UserPlaneSecurityInformation-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1137, - sizeof(asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1137) - /sizeof(asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1137[0]), /* 1 */ - asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1137, /* Same as above */ - sizeof(asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1137) - /sizeof(asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1137[0]), /* 1 */ + asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1137, + sizeof(asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1137) + /sizeof(asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1137[0]), /* 1 */ + asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1137, /* Same as above */ + sizeof(asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1137) + /sizeof(asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs_tags_1137[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65380,16 +66201,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1137, + asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1137, 3, /* Elements count */ - &asn_SPC_NGAP_VolumeTimedReport_Item_ExtIEs_specs_1137 /* Additional specs */ + &asn_SPC_NGAP_UserPlaneSecurityInformation_ExtIEs_specs_1137 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1144 = { - sizeof(struct NGAP_WLANMeasurementConfiguration_ExtIEs__extensionValue), - offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_WLANMeasurementConfiguration_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_VolumeTimedReport_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_VolumeTimedReport_Item_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -65417,8 +66238,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1144 = { &asn_SPC_NGAP_extensionValue_specs_1144 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1141[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1141[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -65435,7 +66256,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1141[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -65452,7 +66273,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1141[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1144, @@ -65470,32 +66291,32 @@ asn_TYPE_member_t asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1141[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1141[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1141[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_WLANMeasurementConfiguration_ExtIEs_tag2el_1141[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_VolumeTimedReport_Item_ExtIEs_tag2el_1141[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_WLANMeasurementConfiguration_ExtIEs_specs_1141 = { - sizeof(struct NGAP_WLANMeasurementConfiguration_ExtIEs), - offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs, _asn_ctx), - asn_MAP_NGAP_WLANMeasurementConfiguration_ExtIEs_tag2el_1141, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_VolumeTimedReport_Item_ExtIEs_specs_1141 = { + sizeof(struct NGAP_VolumeTimedReport_Item_ExtIEs), + offsetof(struct NGAP_VolumeTimedReport_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_VolumeTimedReport_Item_ExtIEs_tag2el_1141, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs = { - "WLANMeasurementConfiguration-ExtIEs", - "WLANMeasurementConfiguration-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs = { + "VolumeTimedReport-Item-ExtIEs", + "VolumeTimedReport-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1141, - sizeof(asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1141) - /sizeof(asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1141[0]), /* 1 */ - asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1141, /* Same as above */ - sizeof(asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1141) - /sizeof(asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1141[0]), /* 1 */ + asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1141, + sizeof(asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1141) + /sizeof(asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1141[0]), /* 1 */ + asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1141, /* Same as above */ + sizeof(asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1141) + /sizeof(asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs_tags_1141[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65505,16 +66326,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1141, + asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1141, 3, /* Elements count */ - &asn_SPC_NGAP_WLANMeasurementConfiguration_ExtIEs_specs_1141 /* Additional specs */ + &asn_SPC_NGAP_VolumeTimedReport_Item_ExtIEs_specs_1141 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1148 = { - sizeof(struct NGAP_WLANMeasConfigNameItem_ExtIEs__extensionValue), - offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_WLANMeasConfigNameItem_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_WLANMeasurementConfiguration_ExtIEs__extensionValue), + offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_WLANMeasurementConfiguration_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -65542,8 +66363,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1148 = { &asn_SPC_NGAP_extensionValue_specs_1148 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1145[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1145[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -65560,7 +66381,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1145[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -65577,7 +66398,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1145[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1148, @@ -65595,32 +66416,32 @@ asn_TYPE_member_t asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1145[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1145[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1145[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_WLANMeasConfigNameItem_ExtIEs_tag2el_1145[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_WLANMeasurementConfiguration_ExtIEs_tag2el_1145[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_WLANMeasConfigNameItem_ExtIEs_specs_1145 = { - sizeof(struct NGAP_WLANMeasConfigNameItem_ExtIEs), - offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs, _asn_ctx), - asn_MAP_NGAP_WLANMeasConfigNameItem_ExtIEs_tag2el_1145, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_WLANMeasurementConfiguration_ExtIEs_specs_1145 = { + sizeof(struct NGAP_WLANMeasurementConfiguration_ExtIEs), + offsetof(struct NGAP_WLANMeasurementConfiguration_ExtIEs, _asn_ctx), + asn_MAP_NGAP_WLANMeasurementConfiguration_ExtIEs_tag2el_1145, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs = { - "WLANMeasConfigNameItem-ExtIEs", - "WLANMeasConfigNameItem-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs = { + "WLANMeasurementConfiguration-ExtIEs", + "WLANMeasurementConfiguration-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1145, - sizeof(asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1145) - /sizeof(asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1145[0]), /* 1 */ - asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1145, /* Same as above */ - sizeof(asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1145) - /sizeof(asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1145[0]), /* 1 */ + asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1145, + sizeof(asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1145) + /sizeof(asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1145[0]), /* 1 */ + asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1145, /* Same as above */ + sizeof(asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1145) + /sizeof(asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs_tags_1145[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65630,16 +66451,16 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1145, + asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1145, 3, /* Elements count */ - &asn_SPC_NGAP_WLANMeasConfigNameItem_ExtIEs_specs_1145 /* Additional specs */ + &asn_SPC_NGAP_WLANMeasurementConfiguration_ExtIEs_specs_1145 /* Additional specs */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1152 = { - sizeof(struct NGAP_WUS_Assistance_Information_ExtIEs__extensionValue), - offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_WUS_Assistance_Information_ExtIEs__extensionValue *)0)->present), + sizeof(struct NGAP_WLANMeasConfigNameItem_ExtIEs__extensionValue), + offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_WLANMeasConfigNameItem_ExtIEs__extensionValue *)0)->present), 0, /* No top level tags */ 0, /* No tags in the map */ 0, 0, @@ -65667,8 +66488,8 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1152 = { &asn_SPC_NGAP_extensionValue_specs_1152 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1149[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1149[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -65685,7 +66506,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1149[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, @@ -65702,7 +66523,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1149[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1152, @@ -65720,32 +66541,32 @@ asn_TYPE_member_t asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1149[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1149[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1149[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_WUS_Assistance_Information_ExtIEs_tag2el_1149[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_WLANMeasConfigNameItem_ExtIEs_tag2el_1149[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_WUS_Assistance_Information_ExtIEs_specs_1149 = { - sizeof(struct NGAP_WUS_Assistance_Information_ExtIEs), - offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs, _asn_ctx), - asn_MAP_NGAP_WUS_Assistance_Information_ExtIEs_tag2el_1149, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_WLANMeasConfigNameItem_ExtIEs_specs_1149 = { + sizeof(struct NGAP_WLANMeasConfigNameItem_ExtIEs), + offsetof(struct NGAP_WLANMeasConfigNameItem_ExtIEs, _asn_ctx), + asn_MAP_NGAP_WLANMeasConfigNameItem_ExtIEs_tag2el_1149, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs = { - "WUS-Assistance-Information-ExtIEs", - "WUS-Assistance-Information-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs = { + "WLANMeasConfigNameItem-ExtIEs", + "WLANMeasConfigNameItem-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1149, - sizeof(asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1149) - /sizeof(asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1149[0]), /* 1 */ - asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1149, /* Same as above */ - sizeof(asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1149) - /sizeof(asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1149[0]), /* 1 */ + asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1149, + sizeof(asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1149) + /sizeof(asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1149[0]), /* 1 */ + asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1149, /* Same as above */ + sizeof(asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1149) + /sizeof(asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs_tags_1149[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65755,40 +66576,18 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1149, + asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1149, 3, /* Elements count */ - &asn_SPC_NGAP_WUS_Assistance_Information_ExtIEs_specs_1149 /* Additional specs */ + &asn_SPC_NGAP_WLANMeasConfigNameItem_ExtIEs_specs_1149 /* Additional specs */ }; -static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1156[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue, choice.SCTP_TLAs), - (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), - 0, - &asn_DEF_NGAP_SCTP_TLAs, - 0, - { -#if !defined(ASN_DISABLE_OER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ -#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - 0, -#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ - 0 - }, - 0, 0, /* No default value */ - "SCTP-TLAs" - }, -}; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1156[] = { - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* SCTP-TLAs */ -}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1156 = { - sizeof(struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue), - offsetof(struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue *)0)->present), - asn_MAP_NGAP_extensionValue_tag2el_1156, - 1, /* Count of tags in the map */ + sizeof(struct NGAP_WUS_Assistance_Information_ExtIEs__extensionValue), + offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_WUS_Assistance_Information_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -65810,13 +66609,12 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1156 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - asn_MBR_NGAP_extensionValue_1156, - 1, /* Elements count */ + 0, 0, /* No members */ &asn_SPC_NGAP_extensionValue_specs_1156 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1153[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1153[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -65833,11 +66631,11 @@ asn_TYPE_member_t asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1153[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - select_XnExtTLA_Item_ExtIEs_NGAP_criticality_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65850,11 +66648,11 @@ asn_TYPE_member_t asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1153[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1156, - select_XnExtTLA_Item_ExtIEs_NGAP_extensionValue_type, + 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65868,32 +66666,32 @@ asn_TYPE_member_t asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1153[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1153[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1153[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_XnExtTLA_Item_ExtIEs_tag2el_1153[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_WUS_Assistance_Information_ExtIEs_tag2el_1153[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_XnExtTLA_Item_ExtIEs_specs_1153 = { - sizeof(struct NGAP_XnExtTLA_Item_ExtIEs), - offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, _asn_ctx), - asn_MAP_NGAP_XnExtTLA_Item_ExtIEs_tag2el_1153, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_WUS_Assistance_Information_ExtIEs_specs_1153 = { + sizeof(struct NGAP_WUS_Assistance_Information_ExtIEs), + offsetof(struct NGAP_WUS_Assistance_Information_ExtIEs, _asn_ctx), + asn_MAP_NGAP_WUS_Assistance_Information_ExtIEs_tag2el_1153, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_XnExtTLA_Item_ExtIEs = { - "XnExtTLA-Item-ExtIEs", - "XnExtTLA-Item-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs = { + "WUS-Assistance-Information-ExtIEs", + "WUS-Assistance-Information-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1153, - sizeof(asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1153) - /sizeof(asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1153[0]), /* 1 */ - asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1153, /* Same as above */ - sizeof(asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1153) - /sizeof(asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1153[0]), /* 1 */ + asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1153, + sizeof(asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1153) + /sizeof(asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1153[0]), /* 1 */ + asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1153, /* Same as above */ + sizeof(asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1153) + /sizeof(asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs_tags_1153[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65903,18 +66701,40 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_XnExtTLA_Item_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1153, + asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1153, 3, /* Elements count */ - &asn_SPC_NGAP_XnExtTLA_Item_ExtIEs_specs_1153 /* Additional specs */ + &asn_SPC_NGAP_WUS_Assistance_Information_ExtIEs_specs_1153 /* Additional specs */ }; +static asn_TYPE_member_t asn_MBR_NGAP_extensionValue_1160[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue, choice.SCTP_TLAs), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_SCTP_TLAs, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "SCTP-TLAs" + }, +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_extensionValue_tag2el_1160[] = { + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* SCTP-TLAs */ +}; static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1160 = { - sizeof(struct NGAP_XnTNLConfigurationInfo_ExtIEs__extensionValue), - offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs__extensionValue, _asn_ctx), - offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs__extensionValue, present), - sizeof(((struct NGAP_XnTNLConfigurationInfo_ExtIEs__extensionValue *)0)->present), - 0, /* No top level tags */ - 0, /* No tags in the map */ + sizeof(struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue), + offsetof(struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_XnExtTLA_Item_ExtIEs__extensionValue *)0)->present), + asn_MAP_NGAP_extensionValue_tag2el_1160, + 1, /* Count of tags in the map */ 0, 0, -1 /* Extensions start */ }; @@ -65936,12 +66756,13 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1160 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ OPEN_TYPE_constraint }, - 0, 0, /* No members */ + asn_MBR_NGAP_extensionValue_1160, + 1, /* Elements count */ &asn_SPC_NGAP_extensionValue_specs_1160 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1157[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs, id), +asn_TYPE_member_t asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1157[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, id), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_ProtocolExtensionID, @@ -65958,11 +66779,11 @@ asn_TYPE_member_t asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1157[] = { 0, 0, /* No default value */ "id" }, - { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs, criticality), + { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, criticality), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Criticality, - 0, + select_XnExtTLA_Item_ExtIEs_NGAP_criticality_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65975,11 +66796,11 @@ asn_TYPE_member_t asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1157[] = { 0, 0, /* No default value */ "criticality" }, - { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs, extensionValue), + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, extensionValue), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), +1, /* EXPLICIT tag at current level */ &asn_DEF_NGAP_extensionValue_1160, - 0, + select_XnExtTLA_Item_ExtIEs_NGAP_extensionValue_type, { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -65993,32 +66814,32 @@ asn_TYPE_member_t asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1157[] = { "extensionValue" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1157[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1157[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -static const asn_TYPE_tag2member_t asn_MAP_NGAP_XnTNLConfigurationInfo_ExtIEs_tag2el_1157[] = { +static const asn_TYPE_tag2member_t asn_MAP_NGAP_XnExtTLA_Item_ExtIEs_tag2el_1157[] = { { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ }; -asn_SEQUENCE_specifics_t asn_SPC_NGAP_XnTNLConfigurationInfo_ExtIEs_specs_1157 = { - sizeof(struct NGAP_XnTNLConfigurationInfo_ExtIEs), - offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs, _asn_ctx), - asn_MAP_NGAP_XnTNLConfigurationInfo_ExtIEs_tag2el_1157, +asn_SEQUENCE_specifics_t asn_SPC_NGAP_XnExtTLA_Item_ExtIEs_specs_1157 = { + sizeof(struct NGAP_XnExtTLA_Item_ExtIEs), + offsetof(struct NGAP_XnExtTLA_Item_ExtIEs, _asn_ctx), + asn_MAP_NGAP_XnExtTLA_Item_ExtIEs_tag2el_1157, 3, /* Count of tags in the map */ 0, 0, 0, /* Optional elements (not needed) */ -1, /* First extension addition */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs = { - "XnTNLConfigurationInfo-ExtIEs", - "XnTNLConfigurationInfo-ExtIEs", +asn_TYPE_descriptor_t asn_DEF_NGAP_XnExtTLA_Item_ExtIEs = { + "XnExtTLA-Item-ExtIEs", + "XnExtTLA-Item-ExtIEs", &asn_OP_SEQUENCE, - asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1157, - sizeof(asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1157) - /sizeof(asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1157[0]), /* 1 */ - asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1157, /* Same as above */ - sizeof(asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1157) - /sizeof(asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1157[0]), /* 1 */ + asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1157, + sizeof(asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1157) + /sizeof(asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1157[0]), /* 1 */ + asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1157, /* Same as above */ + sizeof(asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1157) + /sizeof(asn_DEF_NGAP_XnExtTLA_Item_ExtIEs_tags_1157[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -66028,8 +66849,133 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_constraint }, - asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1157, + asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1157, 3, /* Elements count */ - &asn_SPC_NGAP_XnTNLConfigurationInfo_ExtIEs_specs_1157 /* Additional specs */ + &asn_SPC_NGAP_XnExtTLA_Item_ExtIEs_specs_1157 /* Additional specs */ +}; + +static asn_CHOICE_specifics_t asn_SPC_NGAP_extensionValue_specs_1164 = { + sizeof(struct NGAP_XnTNLConfigurationInfo_ExtIEs__extensionValue), + offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs__extensionValue, _asn_ctx), + offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs__extensionValue, present), + sizeof(((struct NGAP_XnTNLConfigurationInfo_ExtIEs__extensionValue *)0)->present), + 0, /* No top level tags */ + 0, /* No tags in the map */ + 0, 0, + -1 /* Extensions start */ +}; +static /* Use -fall-defs-global to expose */ +asn_TYPE_descriptor_t asn_DEF_NGAP_extensionValue_1164 = { + "extensionValue", + "extensionValue", + &asn_OP_OPEN_TYPE, + 0, /* No effective tags (pointer) */ + 0, /* No effective tags (count) */ + 0, /* No tags (pointer) */ + 0, /* No tags (count) */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + OPEN_TYPE_constraint + }, + 0, 0, /* No members */ + &asn_SPC_NGAP_extensionValue_specs_1164 /* Additional specs */ +}; + +asn_TYPE_member_t asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1161[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs, id), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionID, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_id_constr_1162, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_id_constraint_1161 + }, + 0, 0, /* No default value */ + "id" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs, criticality), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_Criticality, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_criticality_constr_1163, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_criticality_constraint_1161 + }, + 0, 0, /* No default value */ + "criticality" + }, + { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs, extensionValue), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + +1, /* EXPLICIT tag at current level */ + &asn_DEF_NGAP_extensionValue_1164, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_memb_NGAP_extensionValue_constr_1164, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + memb_NGAP_extensionValue_constraint_1161 + }, + 0, 0, /* No default value */ + "extensionValue" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1161[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_XnTNLConfigurationInfo_ExtIEs_tag2el_1161[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* id */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* extensionValue */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_XnTNLConfigurationInfo_ExtIEs_specs_1161 = { + sizeof(struct NGAP_XnTNLConfigurationInfo_ExtIEs), + offsetof(struct NGAP_XnTNLConfigurationInfo_ExtIEs, _asn_ctx), + asn_MAP_NGAP_XnTNLConfigurationInfo_ExtIEs_tag2el_1161, + 3, /* Count of tags in the map */ + 0, 0, 0, /* Optional elements (not needed) */ + -1, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs = { + "XnTNLConfigurationInfo-ExtIEs", + "XnTNLConfigurationInfo-ExtIEs", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1161, + sizeof(asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1161) + /sizeof(asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1161[0]), /* 1 */ + asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1161, /* Same as above */ + sizeof(asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1161) + /sizeof(asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs_tags_1161[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1161, + 3, /* Elements count */ + &asn_SPC_NGAP_XnTNLConfigurationInfo_ExtIEs_specs_1161 /* Additional specs */ }; diff --git a/lib/asn1c/ngap/NGAP_ProtocolExtensionField.h b/lib/asn1c/ngap/NGAP_ProtocolExtensionField.h index 100092c35..3e061cd55 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolExtensionField.h +++ b/lib/asn1c/ngap/NGAP_ProtocolExtensionField.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -28,6 +28,9 @@ #include "NGAP_NPN-Support.h" #include "NGAP_ExtendedSliceSupportList.h" #include "NGAP_PagingeDRXInformation.h" +#include "NGAP_ExtendedUEIdentityIndexValue.h" +#include "NGAP_UERadioCapabilityForPaging.h" +#include "NGAP_MicoAllPLMN.h" #include "NGAP_AssociatedQosFlowList.h" #include "NGAP_DAPSRequestInfo.h" #include "NGAP_ExtendedPacketDelayBudget.h" @@ -35,6 +38,7 @@ #include "NGAP_QosFlowPerTNLInformationList.h" #include "NGAP_UPTransportLayerInformationList.h" #include "NGAP_DataForwardingResponseERABList.h" +#include "NGAP_QosFlowListWithCause.h" #include "NGAP_AdditionalDLUPTNLInformationForHOList.h" #include "NGAP_RedundantPDUSessionInformation.h" #include "NGAP_GlobalRANNodeID.h" @@ -51,12 +55,15 @@ #include "NGAP_SecurityResult.h" #include "NGAP_QosFlowPerTNLInformation.h" #include "NGAP_S-NSSAI.h" +#include "NGAP_ExpectedUEActivityBehaviour.h" +#include "NGAP_QosFlowFeedbackList.h" #include "NGAP_TSCTrafficCharacteristics.h" #include "NGAP_RedundantQosFlowIndicator.h" #include "NGAP_ULForwarding.h" #include "NGAP_QosMonitoringRequest.h" #include "NGAP_QosMonitoringReportingFrequency.h" #include "NGAP_AlternativeQoSParaSetNotifyIndex.h" +#include "NGAP_BurstArrivalTime.h" #include "NGAP_ExtendedRATRestrictionInformation.h" #include "NGAP_MaximumIntegrityProtectedDataRate.h" #include "NGAP_GUAMIType.h" @@ -68,6 +75,7 @@ #include "NGAP_MDT-Configuration.h" #include "NGAP_URI-address.h" #include "NGAP_UERadioCapabilityForPagingOfNB-IoT.h" +#include "NGAP_CommonNetworkInstance.h" #include "NGAP_NGRAN-CGI.h" #include "NGAP_NID.h" #include "NGAP_SCTP-TLAs.h" @@ -241,7 +249,10 @@ typedef enum NGAP_CompletedCellsInTAI_NR_Item_ExtIEs__extensionValue_PR { } NGAP_CompletedCellsInTAI_NR_Item_ExtIEs__extensionValue_PR; typedef enum NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR { NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ - NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR_PagingeDRXInformation + NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR_PagingeDRXInformation, + NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR_ExtendedUEIdentityIndexValue, + NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR_UERadioCapabilityForPaging, + NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR_MicoAllPLMN } NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR; typedef enum NGAP_COUNTValueForPDCP_SN12_ExtIEs__extensionValue_PR { NGAP_COUNTValueForPDCP_SN12_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -466,7 +477,8 @@ typedef enum NGAP_HandoverCommandTransfer_ExtIEs__extensionValue_PR { NGAP_HandoverCommandTransfer_ExtIEs__extensionValue_PR_QosFlowPerTNLInformationList, NGAP_HandoverCommandTransfer_ExtIEs__extensionValue_PR_UPTransportLayerInformation, NGAP_HandoverCommandTransfer_ExtIEs__extensionValue_PR_UPTransportLayerInformationList, - NGAP_HandoverCommandTransfer_ExtIEs__extensionValue_PR_DataForwardingResponseERABList + NGAP_HandoverCommandTransfer_ExtIEs__extensionValue_PR_DataForwardingResponseERABList, + NGAP_HandoverCommandTransfer_ExtIEs__extensionValue_PR_QosFlowListWithCause } NGAP_HandoverCommandTransfer_ExtIEs__extensionValue_PR; typedef enum NGAP_HandoverPreparationUnsuccessfulTransfer_ExtIEs__extensionValue_PR { NGAP_HandoverPreparationUnsuccessfulTransfer_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -793,7 +805,8 @@ typedef enum NGAP_PDUSessionResourceModifyItemModInd_ExtIEs__extensionValue_PR { } NGAP_PDUSessionResourceModifyItemModInd_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue_PR { NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ - NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue_PR_S_NSSAI + NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue_PR_S_NSSAI, + NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue_PR_ExpectedUEActivityBehaviour } NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceModifyItemModRes_ExtIEs__extensionValue_PR { NGAP_PDUSessionResourceModifyItemModRes_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -813,7 +826,8 @@ typedef enum NGAP_PDUSessionResourceNotifyReleasedTransfer_ExtIEs__extensionValu } NGAP_PDUSessionResourceNotifyReleasedTransfer_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue_PR { NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ - NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue_PR_SecondaryRATUsageInformation + NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue_PR_SecondaryRATUsageInformation, + NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue_PR_QosFlowFeedbackList } NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceReleaseCommandTransfer_ExtIEs__extensionValue_PR { NGAP_PDUSessionResourceReleaseCommandTransfer_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -852,20 +866,20 @@ typedef enum NGAP_PDUSessionResourceSecondaryRATUsageItem_ExtIEs__extensionValue } NGAP_PDUSessionResourceSecondaryRATUsageItem_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue_PR { - NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue_PR_NOTHING /* No components present */ - + NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ + NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue_PR_ExpectedUEActivityBehaviour } NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceSetupItemCxtRes_ExtIEs__extensionValue_PR { NGAP_PDUSessionResourceSetupItemCxtRes_ExtIEs__extensionValue_PR_NOTHING /* No components present */ } NGAP_PDUSessionResourceSetupItemCxtRes_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue_PR { - NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue_PR_NOTHING /* No components present */ - + NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ + NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue_PR_ExpectedUEActivityBehaviour } NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue_PR { - NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue_PR_NOTHING /* No components present */ - + NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ + NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue_PR_ExpectedUEActivityBehaviour } NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceSetupItemSURes_ExtIEs__extensionValue_PR { NGAP_PDUSessionResourceSetupItemSURes_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -887,8 +901,8 @@ typedef enum NGAP_PDUSessionResourceSuspendItemSUSReq_ExtIEs__extensionValue_PR } NGAP_PDUSessionResourceSuspendItemSUSReq_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue_PR { - NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue_PR_NOTHING /* No components present */ - + NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ + NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue_PR_ExpectedUEActivityBehaviour } NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue_PR; typedef enum NGAP_PDUSessionResourceToBeSwitchedDLItem_ExtIEs__extensionValue_PR { NGAP_PDUSessionResourceToBeSwitchedDLItem_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -928,6 +942,10 @@ typedef enum NGAP_QosFlowAddOrModifyResponseItem_ExtIEs__extensionValue_PR { NGAP_QosFlowAddOrModifyResponseItem_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ NGAP_QosFlowAddOrModifyResponseItem_ExtIEs__extensionValue_PR_AlternativeQoSParaSetIndex } NGAP_QosFlowAddOrModifyResponseItem_ExtIEs__extensionValue_PR; +typedef enum NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue_PR { + NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue_PR_NOTHING /* No components present */ + +} NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue_PR; typedef enum NGAP_QosFlowInformationItem_ExtIEs__extensionValue_PR { NGAP_QosFlowInformationItem_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ NGAP_QosFlowInformationItem_ExtIEs__extensionValue_PR_ULForwarding @@ -950,8 +968,10 @@ typedef enum NGAP_QosFlowNotifyItem_ExtIEs__extensionValue_PR { NGAP_QosFlowNotifyItem_ExtIEs__extensionValue_PR_AlternativeQoSParaSetNotifyIndex } NGAP_QosFlowNotifyItem_ExtIEs__extensionValue_PR; typedef enum NGAP_QosFlowParametersItem_ExtIEs__extensionValue_PR { - NGAP_QosFlowParametersItem_ExtIEs__extensionValue_PR_NOTHING /* No components present */ - + NGAP_QosFlowParametersItem_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ + NGAP_QosFlowParametersItem_ExtIEs__extensionValue_PR_ExtendedPacketDelayBudget, + NGAP_QosFlowParametersItem_ExtIEs__extensionValue_PR_ExtendedPacketDelayBudget_1, + NGAP_QosFlowParametersItem_ExtIEs__extensionValue_PR_BurstArrivalTime } NGAP_QosFlowParametersItem_ExtIEs__extensionValue_PR; typedef enum NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue_PR { NGAP_QosFlowPerTNLInformation_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -1227,8 +1247,8 @@ typedef enum NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue_PR { } NGAP_UnavailableGUAMIItem_ExtIEs__extensionValue_PR; typedef enum NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue_PR { - NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue_PR_NOTHING /* No components present */ - + NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue_PR_NOTHING, /* No components present */ + NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue_PR_CommonNetworkInstance } NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue_PR; typedef enum NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue_PR { NGAP_UPTransportLayerInformationPairItem_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -1899,6 +1919,9 @@ typedef struct NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs { NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__extensionValue_PR present; union NGAP_CoreNetworkAssistanceInformationForInactive_ExtIEs__NGAP_extensionValue_u { NGAP_PagingeDRXInformation_t PagingeDRXInformation; + NGAP_ExtendedUEIdentityIndexValue_t ExtendedUEIdentityIndexValue; + NGAP_UERadioCapabilityForPaging_t UERadioCapabilityForPaging; + NGAP_MicoAllPLMN_t MicoAllPLMN; } choice; /* Context for parsing across buffer boundaries */ @@ -2734,6 +2757,7 @@ typedef struct NGAP_HandoverCommandTransfer_ExtIEs { NGAP_UPTransportLayerInformation_t UPTransportLayerInformation; NGAP_UPTransportLayerInformationList_t UPTransportLayerInformationList; NGAP_DataForwardingResponseERABList_t DataForwardingResponseERABList; + NGAP_QosFlowListWithCause_t QosFlowListWithCause; } choice; /* Context for parsing across buffer boundaries */ @@ -3897,6 +3921,7 @@ typedef struct NGAP_PDUSessionResourceModifyItemModReq_ExtIEs { NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__extensionValue_PR present; union NGAP_PDUSessionResourceModifyItemModReq_ExtIEs__NGAP_extensionValue_u { NGAP_S_NSSAI_t S_NSSAI; + NGAP_ExpectedUEActivityBehaviour_t ExpectedUEActivityBehaviour; } choice; /* Context for parsing across buffer boundaries */ @@ -3974,6 +3999,7 @@ typedef struct NGAP_PDUSessionResourceNotifyTransfer_ExtIEs { NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__extensionValue_PR present; union NGAP_PDUSessionResourceNotifyTransfer_ExtIEs__NGAP_extensionValue_u { NGAP_SecondaryRATUsageInformation_t SecondaryRATUsageInformation; + NGAP_QosFlowFeedbackList_t QosFlowFeedbackList; } choice; /* Context for parsing across buffer boundaries */ @@ -4125,6 +4151,7 @@ typedef struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs { struct NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue { NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__extensionValue_PR present; union NGAP_PDUSessionResourceSetupItemCxtReq_ExtIEs__NGAP_extensionValue_u { + NGAP_ExpectedUEActivityBehaviour_t ExpectedUEActivityBehaviour; } choice; /* Context for parsing across buffer boundaries */ @@ -4155,6 +4182,7 @@ typedef struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs { struct NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue { NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__extensionValue_PR present; union NGAP_PDUSessionResourceSetupItemHOReq_ExtIEs__NGAP_extensionValue_u { + NGAP_ExpectedUEActivityBehaviour_t ExpectedUEActivityBehaviour; } choice; /* Context for parsing across buffer boundaries */ @@ -4170,6 +4198,7 @@ typedef struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs { struct NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue { NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__extensionValue_PR present; union NGAP_PDUSessionResourceSetupItemSUReq_ExtIEs__NGAP_extensionValue_u { + NGAP_ExpectedUEActivityBehaviour_t ExpectedUEActivityBehaviour; } choice; /* Context for parsing across buffer boundaries */ @@ -4249,6 +4278,7 @@ typedef struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs { struct NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue { NGAP_PDUSessionResourceSwitchedItem_ExtIEs__extensionValue_PR present; union NGAP_PDUSessionResourceSwitchedItem_ExtIEs__NGAP_extensionValue_u { + NGAP_ExpectedUEActivityBehaviour_t ExpectedUEActivityBehaviour; } choice; /* Context for parsing across buffer boundaries */ @@ -4399,6 +4429,21 @@ typedef struct NGAP_QosFlowAddOrModifyResponseItem_ExtIEs { /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; } NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_t; +typedef struct NGAP_QosFlowFeedbackItem_ExtIEs { + NGAP_ProtocolExtensionID_t id; + NGAP_Criticality_t criticality; + struct NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue { + NGAP_QosFlowFeedbackItem_ExtIEs__extensionValue_PR present; + union NGAP_QosFlowFeedbackItem_ExtIEs__NGAP_extensionValue_u { + } choice; + + /* Context for parsing across buffer boundaries */ + asn_struct_ctx_t _asn_ctx; + } extensionValue; + + /* Context for parsing across buffer boundaries */ + asn_struct_ctx_t _asn_ctx; +} NGAP_QosFlowFeedbackItem_ExtIEs_t; typedef struct NGAP_QosFlowInformationItem_ExtIEs { NGAP_ProtocolExtensionID_t id; NGAP_Criticality_t criticality; @@ -4484,6 +4529,9 @@ typedef struct NGAP_QosFlowParametersItem_ExtIEs { struct NGAP_QosFlowParametersItem_ExtIEs__extensionValue { NGAP_QosFlowParametersItem_ExtIEs__extensionValue_PR present; union NGAP_QosFlowParametersItem_ExtIEs__NGAP_extensionValue_u { + NGAP_ExtendedPacketDelayBudget_t ExtendedPacketDelayBudget; + NGAP_ExtendedPacketDelayBudget_t ExtendedPacketDelayBudget_1; + NGAP_BurstArrivalTime_t BurstArrivalTime; } choice; /* Context for parsing across buffer boundaries */ @@ -5520,6 +5568,7 @@ typedef struct NGAP_UPTransportLayerInformationItem_ExtIEs { struct NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue { NGAP_UPTransportLayerInformationItem_ExtIEs__extensionValue_PR present; union NGAP_UPTransportLayerInformationItem_ExtIEs__NGAP_extensionValue_u { + NGAP_CommonNetworkInstance_t CommonNetworkInstance; } choice; /* Context for parsing across buffer boundaries */ @@ -6339,267 +6388,270 @@ extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowAddOrModifyRequestItem_ExtIEs_805[3 extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs; extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_specs_809; extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowAddOrModifyResponseItem_ExtIEs_809[3]; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowFeedbackItem_ExtIEs; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowFeedbackItem_ExtIEs_specs_813; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowFeedbackItem_ExtIEs_813[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowInformationItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowInformationItem_ExtIEs_specs_813; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_813[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowInformationItem_ExtIEs_specs_817; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowInformationItem_ExtIEs_817[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowLevelQosParameters_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowLevelQosParameters_ExtIEs_specs_817; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowLevelQosParameters_ExtIEs_817[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowLevelQosParameters_ExtIEs_specs_821; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowLevelQosParameters_ExtIEs_821[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowWithCauseItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowWithCauseItem_ExtIEs_specs_821; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_821[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowWithCauseItem_ExtIEs_specs_825; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowWithCauseItem_ExtIEs_825[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowModifyConfirmItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowModifyConfirmItem_ExtIEs_specs_825; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_825[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowModifyConfirmItem_ExtIEs_specs_829; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowModifyConfirmItem_ExtIEs_829[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowNotifyItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowNotifyItem_ExtIEs_specs_829; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_829[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowNotifyItem_ExtIEs_specs_833; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowNotifyItem_ExtIEs_833[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowParametersItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowParametersItem_ExtIEs_specs_833; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_833[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowParametersItem_ExtIEs_specs_837; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowParametersItem_ExtIEs_837[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowPerTNLInformation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowPerTNLInformation_ExtIEs_specs_837; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_837[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowPerTNLInformation_ExtIEs_specs_841; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformation_ExtIEs_841[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowPerTNLInformationItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowPerTNLInformationItem_ExtIEs_specs_841; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_841[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowPerTNLInformationItem_ExtIEs_specs_845; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformationItem_ExtIEs_845[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowSetupRequestItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowSetupRequestItem_ExtIEs_specs_845; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowSetupRequestItem_ExtIEs_845[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowSetupRequestItem_ExtIEs_specs_849; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowSetupRequestItem_ExtIEs_849[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowItemWithDataForwarding_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowItemWithDataForwarding_ExtIEs_specs_849; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_849[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowItemWithDataForwarding_ExtIEs_specs_853; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowItemWithDataForwarding_ExtIEs_853[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowToBeForwardedItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowToBeForwardedItem_ExtIEs_specs_853; -extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_853[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowToBeForwardedItem_ExtIEs_specs_857; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowToBeForwardedItem_ExtIEs_857[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_QoSFlowsUsageReport_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QoSFlowsUsageReport_Item_ExtIEs_specs_857; -extern asn_TYPE_member_t asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_857[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QoSFlowsUsageReport_Item_ExtIEs_specs_861; +extern asn_TYPE_member_t asn_MBR_NGAP_QoSFlowsUsageReport_Item_ExtIEs_861[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_specs_861; -extern asn_TYPE_member_t asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_861[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_specs_865; +extern asn_TYPE_member_t asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_ExtIEs_865[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RATRestrictions_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RATRestrictions_Item_ExtIEs_specs_865; -extern asn_TYPE_member_t asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_865[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RATRestrictions_Item_ExtIEs_specs_869; +extern asn_TYPE_member_t asn_MBR_NGAP_RATRestrictions_Item_ExtIEs_869[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedCellsForPaging_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedCellsForPaging_ExtIEs_specs_869; -extern asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_869[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedCellsForPaging_ExtIEs_specs_873; +extern asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellsForPaging_ExtIEs_873[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedCellItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedCellItem_ExtIEs_specs_873; -extern asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellItem_ExtIEs_873[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedCellItem_ExtIEs_specs_877; +extern asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellItem_ExtIEs_877[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedRANNodesForPaging_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedRANNodesForPaging_ExtIEs_specs_877; -extern asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_877[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedRANNodesForPaging_ExtIEs_specs_881; +extern asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodesForPaging_ExtIEs_881[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RecommendedRANNodeItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedRANNodeItem_ExtIEs_specs_881; -extern asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_881[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RecommendedRANNodeItem_ExtIEs_specs_885; +extern asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodeItem_ExtIEs_885[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RedundantPDUSessionInformation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RedundantPDUSessionInformation_ExtIEs_specs_885; -extern asn_TYPE_member_t asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_885[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RedundantPDUSessionInformation_ExtIEs_specs_889; +extern asn_TYPE_member_t asn_MBR_NGAP_RedundantPDUSessionInformation_ExtIEs_889[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RIMInformationTransfer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RIMInformationTransfer_ExtIEs_specs_889; -extern asn_TYPE_member_t asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_889[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RIMInformationTransfer_ExtIEs_specs_893; +extern asn_TYPE_member_t asn_MBR_NGAP_RIMInformationTransfer_ExtIEs_893[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_RIMInformation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RIMInformation_ExtIEs_specs_893; -extern asn_TYPE_member_t asn_MBR_NGAP_RIMInformation_ExtIEs_893[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_RIMInformation_ExtIEs_specs_897; +extern asn_TYPE_member_t asn_MBR_NGAP_RIMInformation_ExtIEs_897[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_ScheduledCommunicationTime_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_ScheduledCommunicationTime_ExtIEs_specs_897; -extern asn_TYPE_member_t asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_897[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_ScheduledCommunicationTime_ExtIEs_specs_901; +extern asn_TYPE_member_t asn_MBR_NGAP_ScheduledCommunicationTime_ExtIEs_901[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SecondaryRATUsageInformation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecondaryRATUsageInformation_ExtIEs_specs_901; -extern asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_901[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecondaryRATUsageInformation_ExtIEs_specs_905; +extern asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATUsageInformation_ExtIEs_905[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_specs_905; -extern asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_905[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_specs_909; +extern asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_ExtIEs_909[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityContext_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityContext_ExtIEs_specs_909; -extern asn_TYPE_member_t asn_MBR_NGAP_SecurityContext_ExtIEs_909[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityContext_ExtIEs_specs_913; +extern asn_TYPE_member_t asn_MBR_NGAP_SecurityContext_ExtIEs_913[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityIndication_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityIndication_ExtIEs_specs_913; -extern asn_TYPE_member_t asn_MBR_NGAP_SecurityIndication_ExtIEs_913[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityIndication_ExtIEs_specs_917; +extern asn_TYPE_member_t asn_MBR_NGAP_SecurityIndication_ExtIEs_917[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SecurityResult_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityResult_ExtIEs_specs_917; -extern asn_TYPE_member_t asn_MBR_NGAP_SecurityResult_ExtIEs_917[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SecurityResult_ExtIEs_specs_921; +extern asn_TYPE_member_t asn_MBR_NGAP_SecurityResult_ExtIEs_921[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SensorMeasurementConfiguration_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SensorMeasurementConfiguration_ExtIEs_specs_921; -extern asn_TYPE_member_t asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_921[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SensorMeasurementConfiguration_ExtIEs_specs_925; +extern asn_TYPE_member_t asn_MBR_NGAP_SensorMeasurementConfiguration_ExtIEs_925[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SensorMeasConfigNameItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SensorMeasConfigNameItem_ExtIEs_specs_925; -extern asn_TYPE_member_t asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_925[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SensorMeasConfigNameItem_ExtIEs_specs_929; +extern asn_TYPE_member_t asn_MBR_NGAP_SensorMeasConfigNameItem_ExtIEs_929[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_ServedGUAMIItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_ServedGUAMIItem_ExtIEs_specs_929; -extern asn_TYPE_member_t asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_929[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_ServedGUAMIItem_ExtIEs_specs_933; +extern asn_TYPE_member_t asn_MBR_NGAP_ServedGUAMIItem_ExtIEs_933[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_ServiceAreaInformation_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_ServiceAreaInformation_Item_ExtIEs_specs_933; -extern asn_TYPE_member_t asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_933[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_ServiceAreaInformation_Item_ExtIEs_specs_937; +extern asn_TYPE_member_t asn_MBR_NGAP_ServiceAreaInformation_Item_ExtIEs_937[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SliceOverloadItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SliceOverloadItem_ExtIEs_specs_937; -extern asn_TYPE_member_t asn_MBR_NGAP_SliceOverloadItem_ExtIEs_937[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SliceOverloadItem_ExtIEs_specs_941; +extern asn_TYPE_member_t asn_MBR_NGAP_SliceOverloadItem_ExtIEs_941[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SliceSupportItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SliceSupportItem_ExtIEs_specs_941; -extern asn_TYPE_member_t asn_MBR_NGAP_SliceSupportItem_ExtIEs_941[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SliceSupportItem_ExtIEs_specs_945; +extern asn_TYPE_member_t asn_MBR_NGAP_SliceSupportItem_ExtIEs_945[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SNPN_MobilityInformation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SNPN_MobilityInformation_ExtIEs_specs_945; -extern asn_TYPE_member_t asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_945[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SNPN_MobilityInformation_ExtIEs_specs_949; +extern asn_TYPE_member_t asn_MBR_NGAP_SNPN_MobilityInformation_ExtIEs_949[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_S_NSSAI_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_S_NSSAI_ExtIEs_specs_949; -extern asn_TYPE_member_t asn_MBR_NGAP_S_NSSAI_ExtIEs_949[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_S_NSSAI_ExtIEs_specs_953; +extern asn_TYPE_member_t asn_MBR_NGAP_S_NSSAI_ExtIEs_953[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SONConfigurationTransfer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SONConfigurationTransfer_ExtIEs_specs_953; -extern asn_TYPE_member_t asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_953[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SONConfigurationTransfer_ExtIEs_specs_957; +extern asn_TYPE_member_t asn_MBR_NGAP_SONConfigurationTransfer_ExtIEs_957[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SONInformationReply_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SONInformationReply_ExtIEs_specs_957; -extern asn_TYPE_member_t asn_MBR_NGAP_SONInformationReply_ExtIEs_957[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SONInformationReply_ExtIEs_specs_961; +extern asn_TYPE_member_t asn_MBR_NGAP_SONInformationReply_ExtIEs_961[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_specs_961; -extern asn_TYPE_member_t asn_MBR_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_961[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_specs_965; +extern asn_TYPE_member_t asn_MBR_NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs_965[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SourceRANNodeID_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceRANNodeID_ExtIEs_specs_965; -extern asn_TYPE_member_t asn_MBR_NGAP_SourceRANNodeID_ExtIEs_965[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceRANNodeID_ExtIEs_specs_969; +extern asn_TYPE_member_t asn_MBR_NGAP_SourceRANNodeID_ExtIEs_969[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_specs_969; -extern asn_TYPE_member_t asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_969[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_specs_973; +extern asn_TYPE_member_t asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_ExtIEs_973[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_SupportedTAItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SupportedTAItem_ExtIEs_specs_973; -extern asn_TYPE_member_t asn_MBR_NGAP_SupportedTAItem_ExtIEs_973[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_SupportedTAItem_ExtIEs_specs_977; +extern asn_TYPE_member_t asn_MBR_NGAP_SupportedTAItem_ExtIEs_977[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TAI_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAI_ExtIEs_specs_977; -extern asn_TYPE_member_t asn_MBR_NGAP_TAI_ExtIEs_977[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAI_ExtIEs_specs_981; +extern asn_TYPE_member_t asn_MBR_NGAP_TAI_ExtIEs_981[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBroadcastEUTRA_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_specs_981; -extern asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_981[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_specs_985; +extern asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastEUTRA_Item_ExtIEs_985[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBroadcastNR_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBroadcastNR_Item_ExtIEs_specs_985; -extern asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_985[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBroadcastNR_Item_ExtIEs_specs_989; +extern asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastNR_Item_ExtIEs_989[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TAICancelledEUTRA_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAICancelledEUTRA_Item_ExtIEs_specs_989; -extern asn_TYPE_member_t asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_989[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAICancelledEUTRA_Item_ExtIEs_specs_993; +extern asn_TYPE_member_t asn_MBR_NGAP_TAICancelledEUTRA_Item_ExtIEs_993[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TAICancelledNR_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAICancelledNR_Item_ExtIEs_specs_993; -extern asn_TYPE_member_t asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_993[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAICancelledNR_Item_ExtIEs_specs_997; +extern asn_TYPE_member_t asn_MBR_NGAP_TAICancelledNR_Item_ExtIEs_997[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TAIListForInactiveItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIListForInactiveItem_ExtIEs_specs_997; -extern asn_TYPE_member_t asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_997[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIListForInactiveItem_ExtIEs_specs_1001; +extern asn_TYPE_member_t asn_MBR_NGAP_TAIListForInactiveItem_ExtIEs_1001[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TAIListForPagingItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIListForPagingItem_ExtIEs_specs_1001; -extern asn_TYPE_member_t asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1001[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIListForPagingItem_ExtIEs_specs_1005; +extern asn_TYPE_member_t asn_MBR_NGAP_TAIListForPagingItem_ExtIEs_1005[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TargeteNB_ID_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargeteNB_ID_ExtIEs_specs_1005; -extern asn_TYPE_member_t asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1005[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargeteNB_ID_ExtIEs_specs_1009; +extern asn_TYPE_member_t asn_MBR_NGAP_TargeteNB_ID_ExtIEs_1009[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_specs_1009; -extern asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1009[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_specs_1013; +extern asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs_1013[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_specs_1013; -extern asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_1013[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_specs_1017; +extern asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs_1017[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TargetRANNodeID_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetRANNodeID_ExtIEs_specs_1017; -extern asn_TYPE_member_t asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1017[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetRANNodeID_ExtIEs_specs_1021; +extern asn_TYPE_member_t asn_MBR_NGAP_TargetRANNodeID_ExtIEs_1021[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TargetRNC_ID_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetRNC_ID_ExtIEs_specs_1021; -extern asn_TYPE_member_t asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1021[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetRNC_ID_ExtIEs_specs_1025; +extern asn_TYPE_member_t asn_MBR_NGAP_TargetRNC_ID_ExtIEs_1025[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TNLAssociationItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TNLAssociationItem_ExtIEs_specs_1025; -extern asn_TYPE_member_t asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1025[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TNLAssociationItem_ExtIEs_specs_1029; +extern asn_TYPE_member_t asn_MBR_NGAP_TNLAssociationItem_ExtIEs_1029[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TooearlyIntersystemHO_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TooearlyIntersystemHO_ExtIEs_specs_1029; -extern asn_TYPE_member_t asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1029[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TooearlyIntersystemHO_ExtIEs_specs_1033; +extern asn_TYPE_member_t asn_MBR_NGAP_TooearlyIntersystemHO_ExtIEs_1033[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TraceActivation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TraceActivation_ExtIEs_specs_1033; -extern asn_TYPE_member_t asn_MBR_NGAP_TraceActivation_ExtIEs_1033[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TraceActivation_ExtIEs_specs_1037; +extern asn_TYPE_member_t asn_MBR_NGAP_TraceActivation_ExtIEs_1037[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TAIBasedMDT_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBasedMDT_ExtIEs_specs_1037; -extern asn_TYPE_member_t asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1037[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TAIBasedMDT_ExtIEs_specs_1041; +extern asn_TYPE_member_t asn_MBR_NGAP_TAIBasedMDT_ExtIEs_1041[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TABasedMDT_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TABasedMDT_ExtIEs_specs_1041; -extern asn_TYPE_member_t asn_MBR_NGAP_TABasedMDT_ExtIEs_1041[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TABasedMDT_ExtIEs_specs_1045; +extern asn_TYPE_member_t asn_MBR_NGAP_TABasedMDT_ExtIEs_1045[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TSCAssistanceInformation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TSCAssistanceInformation_ExtIEs_specs_1045; -extern asn_TYPE_member_t asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1045[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TSCAssistanceInformation_ExtIEs_specs_1049; +extern asn_TYPE_member_t asn_MBR_NGAP_TSCAssistanceInformation_ExtIEs_1049[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_TSCTrafficCharacteristics_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TSCTrafficCharacteristics_ExtIEs_specs_1049; -extern asn_TYPE_member_t asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1049[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_TSCTrafficCharacteristics_ExtIEs_specs_1053; +extern asn_TYPE_member_t asn_MBR_NGAP_TSCTrafficCharacteristics_ExtIEs_1053[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UEAggregateMaximumBitRate_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEAggregateMaximumBitRate_ExtIEs_specs_1053; -extern asn_TYPE_member_t asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1053[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEAggregateMaximumBitRate_ExtIEs_specs_1057; +extern asn_TYPE_member_t asn_MBR_NGAP_UEAggregateMaximumBitRate_ExtIEs_1057[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_specs_1057; -extern asn_TYPE_member_t asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1057[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_specs_1061; +extern asn_TYPE_member_t asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_ExtIEs_1061[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextResumeRequestTransfer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextResumeRequestTransfer_ExtIEs_specs_1061; -extern asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1061[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextResumeRequestTransfer_ExtIEs_specs_1065; +extern asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequestTransfer_ExtIEs_1065[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextResumeResponseTransfer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextResumeResponseTransfer_ExtIEs_specs_1065; -extern asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1065[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextResumeResponseTransfer_ExtIEs_specs_1069; +extern asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponseTransfer_ExtIEs_1069[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UEContextSuspendRequestTransfer_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextSuspendRequestTransfer_ExtIEs_specs_1069; -extern asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1069[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEContextSuspendRequestTransfer_ExtIEs_specs_1073; +extern asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequestTransfer_ExtIEs_1073[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UE_DifferentiationInfo_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_DifferentiationInfo_ExtIEs_specs_1073; -extern asn_TYPE_member_t asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1073[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_DifferentiationInfo_ExtIEs_specs_1077; +extern asn_TYPE_member_t asn_MBR_NGAP_UE_DifferentiationInfo_ExtIEs_1077[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UE_NGAP_ID_pair_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_NGAP_ID_pair_ExtIEs_specs_1077; -extern asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1077[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UE_NGAP_ID_pair_ExtIEs_specs_1081; +extern asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_ID_pair_ExtIEs_1081[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_specs_1081; -extern asn_TYPE_member_t asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1081[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_specs_1085; +extern asn_TYPE_member_t asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_ExtIEs_1085[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UERadioCapabilityForPaging_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UERadioCapabilityForPaging_ExtIEs_specs_1085; -extern asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1085[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UERadioCapabilityForPaging_ExtIEs_specs_1089; +extern asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityForPaging_ExtIEs_1089[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UESecurityCapabilities_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UESecurityCapabilities_ExtIEs_specs_1089; -extern asn_TYPE_member_t asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1089[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UESecurityCapabilities_ExtIEs_specs_1093; +extern asn_TYPE_member_t asn_MBR_NGAP_UESecurityCapabilities_ExtIEs_1093[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UL_CP_SecurityInformation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UL_CP_SecurityInformation_ExtIEs_specs_1093; -extern asn_TYPE_member_t asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1093[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UL_CP_SecurityInformation_ExtIEs_specs_1097; +extern asn_TYPE_member_t asn_MBR_NGAP_UL_CP_SecurityInformation_ExtIEs_1097[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_specs_1097; -extern asn_TYPE_member_t asn_MBR_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1097[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_specs_1101; +extern asn_TYPE_member_t asn_MBR_NGAP_UL_NGU_UP_TNLModifyItem_ExtIEs_1101[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UnavailableGUAMIItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UnavailableGUAMIItem_ExtIEs_specs_1101; -extern asn_TYPE_member_t asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1101[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UnavailableGUAMIItem_ExtIEs_specs_1105; +extern asn_TYPE_member_t asn_MBR_NGAP_UnavailableGUAMIItem_ExtIEs_1105[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UPTransportLayerInformationItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UPTransportLayerInformationItem_ExtIEs_specs_1105; -extern asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1105[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UPTransportLayerInformationItem_ExtIEs_specs_1109; +extern asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationItem_ExtIEs_1109[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UPTransportLayerInformationPairItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UPTransportLayerInformationPairItem_ExtIEs_specs_1109; -extern asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1109[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UPTransportLayerInformationPairItem_ExtIEs_specs_1113; +extern asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationPairItem_ExtIEs_1113[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationEUTRA_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationEUTRA_ExtIEs_specs_1113; -extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1113[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationEUTRA_ExtIEs_specs_1117; +extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationEUTRA_ExtIEs_1117[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationN3IWF_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationN3IWF_ExtIEs_specs_1117; -extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1117[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationN3IWF_ExtIEs_specs_1121; +extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationN3IWF_ExtIEs_1121[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationTNGF_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationTNGF_ExtIEs_specs_1121; -extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1121[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationTNGF_ExtIEs_specs_1125; +extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTNGF_ExtIEs_1125[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationTWIF_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationTWIF_ExtIEs_specs_1125; -extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1125[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationTWIF_ExtIEs_specs_1129; +extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTWIF_ExtIEs_1129[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UserLocationInformationNR_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationNR_ExtIEs_specs_1129; -extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationNR_ExtIEs_1129[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserLocationInformationNR_ExtIEs_specs_1133; +extern asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationNR_ExtIEs_1133[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_UserPlaneSecurityInformation_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserPlaneSecurityInformation_ExtIEs_specs_1133; -extern asn_TYPE_member_t asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1133[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_UserPlaneSecurityInformation_ExtIEs_specs_1137; +extern asn_TYPE_member_t asn_MBR_NGAP_UserPlaneSecurityInformation_ExtIEs_1137[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_VolumeTimedReport_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_VolumeTimedReport_Item_ExtIEs_specs_1137; -extern asn_TYPE_member_t asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1137[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_VolumeTimedReport_Item_ExtIEs_specs_1141; +extern asn_TYPE_member_t asn_MBR_NGAP_VolumeTimedReport_Item_ExtIEs_1141[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_WLANMeasurementConfiguration_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_WLANMeasurementConfiguration_ExtIEs_specs_1141; -extern asn_TYPE_member_t asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1141[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_WLANMeasurementConfiguration_ExtIEs_specs_1145; +extern asn_TYPE_member_t asn_MBR_NGAP_WLANMeasurementConfiguration_ExtIEs_1145[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_WLANMeasConfigNameItem_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_WLANMeasConfigNameItem_ExtIEs_specs_1145; -extern asn_TYPE_member_t asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1145[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_WLANMeasConfigNameItem_ExtIEs_specs_1149; +extern asn_TYPE_member_t asn_MBR_NGAP_WLANMeasConfigNameItem_ExtIEs_1149[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_WUS_Assistance_Information_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_WUS_Assistance_Information_ExtIEs_specs_1149; -extern asn_TYPE_member_t asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1149[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_WUS_Assistance_Information_ExtIEs_specs_1153; +extern asn_TYPE_member_t asn_MBR_NGAP_WUS_Assistance_Information_ExtIEs_1153[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_XnExtTLA_Item_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_XnExtTLA_Item_ExtIEs_specs_1153; -extern asn_TYPE_member_t asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1153[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_XnExtTLA_Item_ExtIEs_specs_1157; +extern asn_TYPE_member_t asn_MBR_NGAP_XnExtTLA_Item_ExtIEs_1157[3]; extern asn_TYPE_descriptor_t asn_DEF_NGAP_XnTNLConfigurationInfo_ExtIEs; -extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_XnTNLConfigurationInfo_ExtIEs_specs_1157; -extern asn_TYPE_member_t asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1157[3]; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_XnTNLConfigurationInfo_ExtIEs_specs_1161; +extern asn_TYPE_member_t asn_MBR_NGAP_XnTNLConfigurationInfo_ExtIEs_1161[3]; #ifdef __cplusplus } diff --git a/lib/asn1c/ngap/NGAP_ProtocolExtensionID.c b/lib/asn1c/ngap/NGAP_ProtocolExtensionID.c index 14e0213f4..436a87cf1 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolExtensionID.c +++ b/lib/asn1c/ngap/NGAP_ProtocolExtensionID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ProtocolExtensionID.h b/lib/asn1c/ngap/NGAP_ProtocolExtensionID.h index 6ce16e1ac..0ad506d36 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolExtensionID.h +++ b/lib/asn1c/ngap/NGAP_ProtocolExtensionID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-Container.c b/lib/asn1c/ngap/NGAP_ProtocolIE-Container.c index 9d0f3a4fe..274cc5ae5 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-Container.c +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-Container.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -9,692 +9,692 @@ #include "NGAP_ProtocolIE-Field.h" #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P0_constr_1 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P0_constr_1 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P1_constr_3 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P1_constr_3 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P2_constr_5 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P2_constr_5 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P3_constr_7 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P3_constr_7 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P4_constr_9 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P4_constr_9 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P5_constr_11 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P5_constr_11 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P6_constr_13 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P6_constr_13 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P7_constr_15 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P7_constr_15 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P8_constr_17 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P8_constr_17 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P9_constr_19 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P9_constr_19 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P10_constr_21 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P10_constr_21 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P11_constr_23 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P11_constr_23 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P12_constr_25 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P12_constr_25 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P13_constr_27 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P13_constr_27 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P14_constr_29 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P14_constr_29 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P15_constr_31 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P15_constr_31 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P16_constr_33 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P16_constr_33 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P17_constr_35 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P17_constr_35 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P18_constr_37 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P18_constr_37 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P19_constr_39 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P19_constr_39 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P20_constr_41 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P20_constr_41 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P21_constr_43 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P21_constr_43 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P22_constr_45 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P22_constr_45 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P23_constr_47 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P23_constr_47 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P24_constr_49 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P24_constr_49 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P25_constr_51 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P25_constr_51 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P26_constr_53 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P26_constr_53 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P27_constr_55 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P27_constr_55 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P28_constr_57 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P28_constr_57 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P29_constr_59 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P29_constr_59 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P30_constr_61 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P30_constr_61 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P31_constr_63 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P31_constr_63 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P32_constr_65 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P32_constr_65 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P33_constr_67 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P33_constr_67 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P34_constr_69 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P34_constr_69 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P35_constr_71 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P35_constr_71 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P36_constr_73 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P36_constr_73 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P37_constr_75 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P37_constr_75 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P38_constr_77 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P38_constr_77 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P39_constr_79 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P39_constr_79 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P40_constr_81 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P40_constr_81 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P41_constr_83 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P41_constr_83 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P42_constr_85 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P42_constr_85 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P43_constr_87 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P43_constr_87 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P44_constr_89 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P44_constr_89 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P45_constr_91 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P45_constr_91 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P46_constr_93 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P46_constr_93 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P47_constr_95 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P47_constr_95 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P48_constr_97 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P48_constr_97 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P49_constr_99 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P49_constr_99 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P50_constr_101 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P50_constr_101 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P51_constr_103 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P51_constr_103 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P52_constr_105 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P52_constr_105 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P53_constr_107 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P53_constr_107 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P54_constr_109 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P54_constr_109 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P55_constr_111 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P55_constr_111 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P56_constr_113 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P56_constr_113 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P57_constr_115 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P57_constr_115 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P58_constr_117 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P58_constr_117 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P59_constr_119 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P59_constr_119 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P60_constr_121 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P60_constr_121 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P61_constr_123 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P61_constr_123 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P62_constr_125 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P62_constr_125 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P63_constr_127 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P63_constr_127 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P64_constr_129 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P64_constr_129 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P65_constr_131 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P65_constr_131 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P66_constr_133 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P66_constr_133 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P67_constr_135 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P67_constr_135 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P68_constr_137 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P68_constr_137 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P69_constr_139 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P69_constr_139 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P70_constr_141 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P70_constr_141 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P71_constr_143 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P71_constr_143 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P72_constr_145 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P72_constr_145 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P73_constr_147 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P73_constr_147 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P74_constr_149 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P74_constr_149 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P75_constr_151 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P75_constr_151 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P76_constr_153 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P76_constr_153 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P77_constr_155 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P77_constr_155 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P78_constr_157 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P78_constr_157 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P79_constr_159 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P79_constr_159 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P80_constr_161 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P80_constr_161 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P81_constr_163 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P81_constr_163 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P82_constr_165 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P82_constr_165 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P83_constr_167 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P83_constr_167 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P84_constr_169 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P84_constr_169 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P85_constr_171 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P85_constr_171 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P86_constr_173 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P86_constr_173 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P87_constr_175 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P87_constr_175 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P88_constr_177 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P88_constr_177 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P89_constr_179 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P89_constr_179 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P90_constr_181 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P90_constr_181 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P91_constr_183 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P91_constr_183 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P92_constr_185 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P92_constr_185 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P93_constr_187 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P93_constr_187 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P94_constr_189 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P94_constr_189 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P95_constr_191 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P95_constr_191 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P96_constr_193 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P96_constr_193 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P97_constr_195 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P97_constr_195 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P0_1[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P0_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -713,39 +713,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P0_1[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P0_specs_1 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P0), - offsetof(struct NGAP_ProtocolIE_Container_9520P0, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P0_specs_1 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P0), + offsetof(struct NGAP_ProtocolIE_Container_9574P0, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P0 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P0 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P0_tags_1, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P0_tags_1) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P0_tags_1[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P0_tags_1, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P0_tags_1) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P0_tags_1[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P0_tags_1, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P0_tags_1) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P0_tags_1[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P0_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P0_tags_1) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P0_constr_1, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P0_constr_1, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P0_1, + asn_MBR_NGAP_ProtocolIE_Container_9574P0_1, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P0_specs_1 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P0_specs_1 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P1_3[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P1_3[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -764,39 +764,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P1_3[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P1_tags_3[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P1_tags_3[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P1_specs_3 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P1), - offsetof(struct NGAP_ProtocolIE_Container_9520P1, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P1_specs_3 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P1), + offsetof(struct NGAP_ProtocolIE_Container_9574P1, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P1 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P1 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P1_tags_3, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P1_tags_3) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P1_tags_3[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P1_tags_3, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P1_tags_3) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P1_tags_3[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P1_tags_3, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P1_tags_3) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P1_tags_3[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P1_tags_3, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P1_tags_3) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P1_tags_3[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P1_constr_3, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P1_constr_3, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P1_3, + asn_MBR_NGAP_ProtocolIE_Container_9574P1_3, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P1_specs_3 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P1_specs_3 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P2_5[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P2_5[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -815,39 +815,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P2_5[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P2_tags_5[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P2_tags_5[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P2_specs_5 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P2), - offsetof(struct NGAP_ProtocolIE_Container_9520P2, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P2_specs_5 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P2), + offsetof(struct NGAP_ProtocolIE_Container_9574P2, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P2 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P2 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P2_tags_5, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P2_tags_5) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P2_tags_5[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P2_tags_5, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P2_tags_5) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P2_tags_5[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P2_tags_5, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P2_tags_5) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P2_tags_5[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P2_tags_5, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P2_tags_5) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P2_tags_5[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P2_constr_5, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P2_constr_5, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P2_5, + asn_MBR_NGAP_ProtocolIE_Container_9574P2_5, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P2_specs_5 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P2_specs_5 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P3_7[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P3_7[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -866,39 +866,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P3_7[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P3_tags_7[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P3_tags_7[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P3_specs_7 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P3), - offsetof(struct NGAP_ProtocolIE_Container_9520P3, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P3_specs_7 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P3), + offsetof(struct NGAP_ProtocolIE_Container_9574P3, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P3 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P3 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P3_tags_7, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P3_tags_7) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P3_tags_7[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P3_tags_7, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P3_tags_7) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P3_tags_7[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P3_tags_7, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P3_tags_7) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P3_tags_7[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P3_tags_7, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P3_tags_7) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P3_tags_7[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P3_constr_7, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P3_constr_7, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P3_7, + asn_MBR_NGAP_ProtocolIE_Container_9574P3_7, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P3_specs_7 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P3_specs_7 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P4_9[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P4_9[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -917,39 +917,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P4_9[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P4_tags_9[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P4_tags_9[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P4_specs_9 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P4), - offsetof(struct NGAP_ProtocolIE_Container_9520P4, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P4_specs_9 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P4), + offsetof(struct NGAP_ProtocolIE_Container_9574P4, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P4 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P4 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P4_tags_9, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P4_tags_9) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P4_tags_9[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P4_tags_9, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P4_tags_9) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P4_tags_9[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P4_tags_9, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P4_tags_9) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P4_tags_9[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P4_tags_9, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P4_tags_9) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P4_tags_9[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P4_constr_9, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P4_constr_9, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P4_9, + asn_MBR_NGAP_ProtocolIE_Container_9574P4_9, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P4_specs_9 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P4_specs_9 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P5_11[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P5_11[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -968,39 +968,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P5_11[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P5_tags_11[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P5_tags_11[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P5_specs_11 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P5), - offsetof(struct NGAP_ProtocolIE_Container_9520P5, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P5_specs_11 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P5), + offsetof(struct NGAP_ProtocolIE_Container_9574P5, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P5 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P5 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P5_tags_11, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P5_tags_11) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P5_tags_11[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P5_tags_11, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P5_tags_11) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P5_tags_11[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P5_tags_11, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P5_tags_11) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P5_tags_11[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P5_tags_11, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P5_tags_11) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P5_tags_11[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P5_constr_11, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P5_constr_11, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P5_11, + asn_MBR_NGAP_ProtocolIE_Container_9574P5_11, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P5_specs_11 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P5_specs_11 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P6_13[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P6_13[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1019,39 +1019,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P6_13[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P6_tags_13[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P6_tags_13[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P6_specs_13 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P6), - offsetof(struct NGAP_ProtocolIE_Container_9520P6, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P6_specs_13 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P6), + offsetof(struct NGAP_ProtocolIE_Container_9574P6, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P6 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P6 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P6_tags_13, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P6_tags_13) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P6_tags_13[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P6_tags_13, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P6_tags_13) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P6_tags_13[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P6_tags_13, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P6_tags_13) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P6_tags_13[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P6_tags_13, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P6_tags_13) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P6_tags_13[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P6_constr_13, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P6_constr_13, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P6_13, + asn_MBR_NGAP_ProtocolIE_Container_9574P6_13, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P6_specs_13 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P6_specs_13 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P7_15[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P7_15[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1070,39 +1070,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P7_15[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P7_tags_15[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P7_tags_15[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P7_specs_15 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P7), - offsetof(struct NGAP_ProtocolIE_Container_9520P7, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P7_specs_15 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P7), + offsetof(struct NGAP_ProtocolIE_Container_9574P7, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P7 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P7 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P7_tags_15, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P7_tags_15) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P7_tags_15[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P7_tags_15, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P7_tags_15) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P7_tags_15[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P7_tags_15, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P7_tags_15) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P7_tags_15[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P7_tags_15, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P7_tags_15) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P7_tags_15[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P7_constr_15, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P7_constr_15, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P7_15, + asn_MBR_NGAP_ProtocolIE_Container_9574P7_15, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P7_specs_15 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P7_specs_15 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P8_17[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P8_17[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1121,39 +1121,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P8_17[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P8_tags_17[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P8_tags_17[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P8_specs_17 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P8), - offsetof(struct NGAP_ProtocolIE_Container_9520P8, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P8_specs_17 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P8), + offsetof(struct NGAP_ProtocolIE_Container_9574P8, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P8 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P8 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P8_tags_17, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P8_tags_17) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P8_tags_17[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P8_tags_17, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P8_tags_17) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P8_tags_17[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P8_tags_17, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P8_tags_17) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P8_tags_17[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P8_tags_17, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P8_tags_17) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P8_tags_17[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P8_constr_17, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P8_constr_17, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P8_17, + asn_MBR_NGAP_ProtocolIE_Container_9574P8_17, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P8_specs_17 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P8_specs_17 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P9_19[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P9_19[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1172,39 +1172,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P9_19[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P9_tags_19[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P9_tags_19[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P9_specs_19 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P9), - offsetof(struct NGAP_ProtocolIE_Container_9520P9, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P9_specs_19 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P9), + offsetof(struct NGAP_ProtocolIE_Container_9574P9, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P9 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P9 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P9_tags_19, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P9_tags_19) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P9_tags_19[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P9_tags_19, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P9_tags_19) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P9_tags_19[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P9_tags_19, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P9_tags_19) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P9_tags_19[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P9_tags_19, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P9_tags_19) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P9_tags_19[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P9_constr_19, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P9_constr_19, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P9_19, + asn_MBR_NGAP_ProtocolIE_Container_9574P9_19, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P9_specs_19 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P9_specs_19 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P10_21[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P10_21[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1223,39 +1223,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P10_21[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P10_tags_21[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P10_tags_21[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P10_specs_21 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P10), - offsetof(struct NGAP_ProtocolIE_Container_9520P10, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P10_specs_21 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P10), + offsetof(struct NGAP_ProtocolIE_Container_9574P10, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P10 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P10 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P10_tags_21, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P10_tags_21) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P10_tags_21[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P10_tags_21, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P10_tags_21) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P10_tags_21[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P10_tags_21, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P10_tags_21) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P10_tags_21[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P10_tags_21, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P10_tags_21) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P10_tags_21[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P10_constr_21, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P10_constr_21, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P10_21, + asn_MBR_NGAP_ProtocolIE_Container_9574P10_21, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P10_specs_21 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P10_specs_21 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P11_23[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P11_23[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1274,39 +1274,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P11_23[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P11_tags_23[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P11_tags_23[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P11_specs_23 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P11), - offsetof(struct NGAP_ProtocolIE_Container_9520P11, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P11_specs_23 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P11), + offsetof(struct NGAP_ProtocolIE_Container_9574P11, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P11 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P11 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P11_tags_23, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P11_tags_23) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P11_tags_23[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P11_tags_23, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P11_tags_23) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P11_tags_23[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P11_tags_23, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P11_tags_23) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P11_tags_23[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P11_tags_23, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P11_tags_23) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P11_tags_23[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P11_constr_23, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P11_constr_23, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P11_23, + asn_MBR_NGAP_ProtocolIE_Container_9574P11_23, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P11_specs_23 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P11_specs_23 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P12_25[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P12_25[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1325,39 +1325,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P12_25[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P12_tags_25[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P12_tags_25[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P12_specs_25 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P12), - offsetof(struct NGAP_ProtocolIE_Container_9520P12, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P12_specs_25 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P12), + offsetof(struct NGAP_ProtocolIE_Container_9574P12, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P12 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P12 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P12_tags_25, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P12_tags_25) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P12_tags_25[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P12_tags_25, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P12_tags_25) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P12_tags_25[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P12_tags_25, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P12_tags_25) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P12_tags_25[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P12_tags_25, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P12_tags_25) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P12_tags_25[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P12_constr_25, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P12_constr_25, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P12_25, + asn_MBR_NGAP_ProtocolIE_Container_9574P12_25, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P12_specs_25 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P12_specs_25 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P13_27[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P13_27[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1376,39 +1376,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P13_27[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P13_tags_27[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P13_tags_27[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P13_specs_27 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P13), - offsetof(struct NGAP_ProtocolIE_Container_9520P13, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P13_specs_27 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P13), + offsetof(struct NGAP_ProtocolIE_Container_9574P13, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P13 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P13 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P13_tags_27, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P13_tags_27) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P13_tags_27[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P13_tags_27, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P13_tags_27) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P13_tags_27[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P13_tags_27, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P13_tags_27) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P13_tags_27[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P13_tags_27, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P13_tags_27) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P13_tags_27[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P13_constr_27, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P13_constr_27, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P13_27, + asn_MBR_NGAP_ProtocolIE_Container_9574P13_27, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P13_specs_27 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P13_specs_27 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P14_29[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P14_29[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1427,39 +1427,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P14_29[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P14_tags_29[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P14_tags_29[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P14_specs_29 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P14), - offsetof(struct NGAP_ProtocolIE_Container_9520P14, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P14_specs_29 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P14), + offsetof(struct NGAP_ProtocolIE_Container_9574P14, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P14 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P14 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P14_tags_29, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P14_tags_29) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P14_tags_29[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P14_tags_29, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P14_tags_29) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P14_tags_29[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P14_tags_29, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P14_tags_29) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P14_tags_29[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P14_tags_29, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P14_tags_29) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P14_tags_29[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P14_constr_29, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P14_constr_29, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P14_29, + asn_MBR_NGAP_ProtocolIE_Container_9574P14_29, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P14_specs_29 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P14_specs_29 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P15_31[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P15_31[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1478,39 +1478,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P15_31[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P15_tags_31[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P15_tags_31[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P15_specs_31 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P15), - offsetof(struct NGAP_ProtocolIE_Container_9520P15, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P15_specs_31 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P15), + offsetof(struct NGAP_ProtocolIE_Container_9574P15, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P15 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P15 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P15_tags_31, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P15_tags_31) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P15_tags_31[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P15_tags_31, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P15_tags_31) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P15_tags_31[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P15_tags_31, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P15_tags_31) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P15_tags_31[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P15_tags_31, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P15_tags_31) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P15_tags_31[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P15_constr_31, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P15_constr_31, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P15_31, + asn_MBR_NGAP_ProtocolIE_Container_9574P15_31, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P15_specs_31 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P15_specs_31 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P16_33[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P16_33[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1529,39 +1529,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P16_33[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P16_tags_33[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P16_tags_33[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P16_specs_33 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P16), - offsetof(struct NGAP_ProtocolIE_Container_9520P16, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P16_specs_33 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P16), + offsetof(struct NGAP_ProtocolIE_Container_9574P16, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P16 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P16 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P16_tags_33, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P16_tags_33) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P16_tags_33[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P16_tags_33, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P16_tags_33) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P16_tags_33[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P16_tags_33, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P16_tags_33) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P16_tags_33[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P16_tags_33, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P16_tags_33) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P16_tags_33[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P16_constr_33, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P16_constr_33, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P16_33, + asn_MBR_NGAP_ProtocolIE_Container_9574P16_33, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P16_specs_33 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P16_specs_33 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P17_35[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P17_35[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1580,39 +1580,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P17_35[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P17_tags_35[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P17_tags_35[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P17_specs_35 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P17), - offsetof(struct NGAP_ProtocolIE_Container_9520P17, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P17_specs_35 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P17), + offsetof(struct NGAP_ProtocolIE_Container_9574P17, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P17 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P17 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P17_tags_35, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P17_tags_35) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P17_tags_35[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P17_tags_35, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P17_tags_35) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P17_tags_35[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P17_tags_35, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P17_tags_35) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P17_tags_35[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P17_tags_35, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P17_tags_35) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P17_tags_35[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P17_constr_35, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P17_constr_35, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P17_35, + asn_MBR_NGAP_ProtocolIE_Container_9574P17_35, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P17_specs_35 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P17_specs_35 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P18_37[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P18_37[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1631,39 +1631,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P18_37[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P18_tags_37[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P18_tags_37[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P18_specs_37 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P18), - offsetof(struct NGAP_ProtocolIE_Container_9520P18, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P18_specs_37 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P18), + offsetof(struct NGAP_ProtocolIE_Container_9574P18, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P18 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P18 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P18_tags_37, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P18_tags_37) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P18_tags_37[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P18_tags_37, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P18_tags_37) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P18_tags_37[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P18_tags_37, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P18_tags_37) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P18_tags_37[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P18_tags_37, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P18_tags_37) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P18_tags_37[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P18_constr_37, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P18_constr_37, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P18_37, + asn_MBR_NGAP_ProtocolIE_Container_9574P18_37, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P18_specs_37 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P18_specs_37 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P19_39[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P19_39[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1682,39 +1682,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P19_39[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P19_tags_39[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P19_tags_39[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P19_specs_39 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P19), - offsetof(struct NGAP_ProtocolIE_Container_9520P19, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P19_specs_39 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P19), + offsetof(struct NGAP_ProtocolIE_Container_9574P19, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P19 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P19 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P19_tags_39, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P19_tags_39) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P19_tags_39[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P19_tags_39, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P19_tags_39) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P19_tags_39[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P19_tags_39, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P19_tags_39) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P19_tags_39[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P19_tags_39, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P19_tags_39) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P19_tags_39[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P19_constr_39, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P19_constr_39, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P19_39, + asn_MBR_NGAP_ProtocolIE_Container_9574P19_39, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P19_specs_39 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P19_specs_39 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P20_41[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P20_41[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1733,39 +1733,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P20_41[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P20_tags_41[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P20_tags_41[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P20_specs_41 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P20), - offsetof(struct NGAP_ProtocolIE_Container_9520P20, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P20_specs_41 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P20), + offsetof(struct NGAP_ProtocolIE_Container_9574P20, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P20 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P20 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P20_tags_41, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P20_tags_41) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P20_tags_41[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P20_tags_41, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P20_tags_41) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P20_tags_41[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P20_tags_41, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P20_tags_41) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P20_tags_41[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P20_tags_41, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P20_tags_41) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P20_tags_41[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P20_constr_41, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P20_constr_41, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P20_41, + asn_MBR_NGAP_ProtocolIE_Container_9574P20_41, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P20_specs_41 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P20_specs_41 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P21_43[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P21_43[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1784,39 +1784,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P21_43[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P21_tags_43[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P21_tags_43[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P21_specs_43 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P21), - offsetof(struct NGAP_ProtocolIE_Container_9520P21, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P21_specs_43 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P21), + offsetof(struct NGAP_ProtocolIE_Container_9574P21, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P21 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P21 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P21_tags_43, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P21_tags_43) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P21_tags_43[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P21_tags_43, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P21_tags_43) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P21_tags_43[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P21_tags_43, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P21_tags_43) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P21_tags_43[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P21_tags_43, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P21_tags_43) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P21_tags_43[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P21_constr_43, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P21_constr_43, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P21_43, + asn_MBR_NGAP_ProtocolIE_Container_9574P21_43, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P21_specs_43 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P21_specs_43 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P22_45[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P22_45[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1835,39 +1835,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P22_45[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P22_tags_45[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P22_tags_45[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P22_specs_45 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P22), - offsetof(struct NGAP_ProtocolIE_Container_9520P22, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P22_specs_45 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P22), + offsetof(struct NGAP_ProtocolIE_Container_9574P22, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P22 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P22 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P22_tags_45, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P22_tags_45) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P22_tags_45[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P22_tags_45, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P22_tags_45) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P22_tags_45[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P22_tags_45, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P22_tags_45) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P22_tags_45[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P22_tags_45, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P22_tags_45) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P22_tags_45[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P22_constr_45, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P22_constr_45, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P22_45, + asn_MBR_NGAP_ProtocolIE_Container_9574P22_45, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P22_specs_45 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P22_specs_45 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P23_47[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P23_47[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1886,39 +1886,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P23_47[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P23_tags_47[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P23_tags_47[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P23_specs_47 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P23), - offsetof(struct NGAP_ProtocolIE_Container_9520P23, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P23_specs_47 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P23), + offsetof(struct NGAP_ProtocolIE_Container_9574P23, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P23 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P23 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P23_tags_47, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P23_tags_47) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P23_tags_47[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P23_tags_47, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P23_tags_47) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P23_tags_47[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P23_tags_47, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P23_tags_47) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P23_tags_47[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P23_tags_47, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P23_tags_47) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P23_tags_47[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P23_constr_47, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P23_constr_47, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P23_47, + asn_MBR_NGAP_ProtocolIE_Container_9574P23_47, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P23_specs_47 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P23_specs_47 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P24_49[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P24_49[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1937,39 +1937,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P24_49[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P24_tags_49[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P24_tags_49[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P24_specs_49 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P24), - offsetof(struct NGAP_ProtocolIE_Container_9520P24, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P24_specs_49 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P24), + offsetof(struct NGAP_ProtocolIE_Container_9574P24, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P24 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P24 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P24_tags_49, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P24_tags_49) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P24_tags_49[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P24_tags_49, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P24_tags_49) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P24_tags_49[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P24_tags_49, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P24_tags_49) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P24_tags_49[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P24_tags_49, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P24_tags_49) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P24_tags_49[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P24_constr_49, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P24_constr_49, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P24_49, + asn_MBR_NGAP_ProtocolIE_Container_9574P24_49, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P24_specs_49 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P24_specs_49 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P25_51[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P25_51[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1988,39 +1988,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P25_51[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P25_tags_51[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P25_tags_51[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P25_specs_51 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P25), - offsetof(struct NGAP_ProtocolIE_Container_9520P25, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P25_specs_51 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P25), + offsetof(struct NGAP_ProtocolIE_Container_9574P25, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P25 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P25 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P25_tags_51, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P25_tags_51) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P25_tags_51[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P25_tags_51, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P25_tags_51) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P25_tags_51[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P25_tags_51, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P25_tags_51) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P25_tags_51[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P25_tags_51, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P25_tags_51) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P25_tags_51[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P25_constr_51, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P25_constr_51, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P25_51, + asn_MBR_NGAP_ProtocolIE_Container_9574P25_51, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P25_specs_51 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P25_specs_51 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P26_53[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P26_53[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2039,39 +2039,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P26_53[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P26_tags_53[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P26_tags_53[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P26_specs_53 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P26), - offsetof(struct NGAP_ProtocolIE_Container_9520P26, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P26_specs_53 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P26), + offsetof(struct NGAP_ProtocolIE_Container_9574P26, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P26 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P26 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P26_tags_53, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P26_tags_53) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P26_tags_53[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P26_tags_53, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P26_tags_53) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P26_tags_53[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P26_tags_53, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P26_tags_53) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P26_tags_53[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P26_tags_53, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P26_tags_53) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P26_tags_53[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P26_constr_53, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P26_constr_53, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P26_53, + asn_MBR_NGAP_ProtocolIE_Container_9574P26_53, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P26_specs_53 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P26_specs_53 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P27_55[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P27_55[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2090,39 +2090,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P27_55[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P27_tags_55[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P27_tags_55[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P27_specs_55 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P27), - offsetof(struct NGAP_ProtocolIE_Container_9520P27, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P27_specs_55 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P27), + offsetof(struct NGAP_ProtocolIE_Container_9574P27, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P27 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P27 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P27_tags_55, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P27_tags_55) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P27_tags_55[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P27_tags_55, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P27_tags_55) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P27_tags_55[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P27_tags_55, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P27_tags_55) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P27_tags_55[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P27_tags_55, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P27_tags_55) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P27_tags_55[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P27_constr_55, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P27_constr_55, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P27_55, + asn_MBR_NGAP_ProtocolIE_Container_9574P27_55, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P27_specs_55 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P27_specs_55 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P28_57[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P28_57[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2141,39 +2141,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P28_57[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P28_tags_57[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P28_tags_57[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P28_specs_57 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P28), - offsetof(struct NGAP_ProtocolIE_Container_9520P28, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P28_specs_57 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P28), + offsetof(struct NGAP_ProtocolIE_Container_9574P28, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P28 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P28 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P28_tags_57, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P28_tags_57) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P28_tags_57[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P28_tags_57, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P28_tags_57) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P28_tags_57[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P28_tags_57, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P28_tags_57) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P28_tags_57[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P28_tags_57, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P28_tags_57) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P28_tags_57[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P28_constr_57, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P28_constr_57, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P28_57, + asn_MBR_NGAP_ProtocolIE_Container_9574P28_57, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P28_specs_57 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P28_specs_57 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P29_59[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P29_59[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2192,39 +2192,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P29_59[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P29_tags_59[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P29_tags_59[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P29_specs_59 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P29), - offsetof(struct NGAP_ProtocolIE_Container_9520P29, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P29_specs_59 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P29), + offsetof(struct NGAP_ProtocolIE_Container_9574P29, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P29 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P29 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P29_tags_59, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P29_tags_59) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P29_tags_59[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P29_tags_59, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P29_tags_59) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P29_tags_59[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P29_tags_59, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P29_tags_59) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P29_tags_59[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P29_tags_59, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P29_tags_59) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P29_tags_59[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P29_constr_59, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P29_constr_59, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P29_59, + asn_MBR_NGAP_ProtocolIE_Container_9574P29_59, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P29_specs_59 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P29_specs_59 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P30_61[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P30_61[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2243,39 +2243,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P30_61[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P30_tags_61[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P30_tags_61[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P30_specs_61 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P30), - offsetof(struct NGAP_ProtocolIE_Container_9520P30, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P30_specs_61 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P30), + offsetof(struct NGAP_ProtocolIE_Container_9574P30, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P30 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P30 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P30_tags_61, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P30_tags_61) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P30_tags_61[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P30_tags_61, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P30_tags_61) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P30_tags_61[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P30_tags_61, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P30_tags_61) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P30_tags_61[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P30_tags_61, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P30_tags_61) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P30_tags_61[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P30_constr_61, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P30_constr_61, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P30_61, + asn_MBR_NGAP_ProtocolIE_Container_9574P30_61, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P30_specs_61 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P30_specs_61 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P31_63[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P31_63[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2294,39 +2294,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P31_63[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P31_tags_63[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P31_tags_63[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P31_specs_63 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P31), - offsetof(struct NGAP_ProtocolIE_Container_9520P31, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P31_specs_63 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P31), + offsetof(struct NGAP_ProtocolIE_Container_9574P31, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P31 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P31 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P31_tags_63, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P31_tags_63) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P31_tags_63[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P31_tags_63, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P31_tags_63) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P31_tags_63[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P31_tags_63, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P31_tags_63) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P31_tags_63[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P31_tags_63, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P31_tags_63) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P31_tags_63[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P31_constr_63, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P31_constr_63, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P31_63, + asn_MBR_NGAP_ProtocolIE_Container_9574P31_63, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P31_specs_63 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P31_specs_63 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P32_65[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P32_65[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2345,39 +2345,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P32_65[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P32_tags_65[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P32_tags_65[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P32_specs_65 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P32), - offsetof(struct NGAP_ProtocolIE_Container_9520P32, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P32_specs_65 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P32), + offsetof(struct NGAP_ProtocolIE_Container_9574P32, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P32 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P32 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P32_tags_65, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P32_tags_65) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P32_tags_65[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P32_tags_65, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P32_tags_65) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P32_tags_65[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P32_tags_65, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P32_tags_65) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P32_tags_65[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P32_tags_65, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P32_tags_65) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P32_tags_65[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P32_constr_65, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P32_constr_65, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P32_65, + asn_MBR_NGAP_ProtocolIE_Container_9574P32_65, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P32_specs_65 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P32_specs_65 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P33_67[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P33_67[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2396,39 +2396,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P33_67[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P33_tags_67[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P33_tags_67[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P33_specs_67 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P33), - offsetof(struct NGAP_ProtocolIE_Container_9520P33, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P33_specs_67 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P33), + offsetof(struct NGAP_ProtocolIE_Container_9574P33, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P33 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P33 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P33_tags_67, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P33_tags_67) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P33_tags_67[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P33_tags_67, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P33_tags_67) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P33_tags_67[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P33_tags_67, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P33_tags_67) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P33_tags_67[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P33_tags_67, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P33_tags_67) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P33_tags_67[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P33_constr_67, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P33_constr_67, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P33_67, + asn_MBR_NGAP_ProtocolIE_Container_9574P33_67, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P33_specs_67 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P33_specs_67 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P34_69[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P34_69[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2447,39 +2447,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P34_69[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P34_tags_69[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P34_tags_69[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P34_specs_69 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P34), - offsetof(struct NGAP_ProtocolIE_Container_9520P34, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P34_specs_69 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P34), + offsetof(struct NGAP_ProtocolIE_Container_9574P34, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P34 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P34 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P34_tags_69, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P34_tags_69) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P34_tags_69[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P34_tags_69, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P34_tags_69) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P34_tags_69[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P34_tags_69, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P34_tags_69) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P34_tags_69[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P34_tags_69, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P34_tags_69) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P34_tags_69[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P34_constr_69, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P34_constr_69, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P34_69, + asn_MBR_NGAP_ProtocolIE_Container_9574P34_69, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P34_specs_69 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P34_specs_69 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P35_71[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P35_71[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2498,39 +2498,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P35_71[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P35_tags_71[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P35_tags_71[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P35_specs_71 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P35), - offsetof(struct NGAP_ProtocolIE_Container_9520P35, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P35_specs_71 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P35), + offsetof(struct NGAP_ProtocolIE_Container_9574P35, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P35 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P35 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P35_tags_71, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P35_tags_71) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P35_tags_71[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P35_tags_71, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P35_tags_71) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P35_tags_71[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P35_tags_71, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P35_tags_71) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P35_tags_71[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P35_tags_71, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P35_tags_71) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P35_tags_71[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P35_constr_71, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P35_constr_71, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P35_71, + asn_MBR_NGAP_ProtocolIE_Container_9574P35_71, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P35_specs_71 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P35_specs_71 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P36_73[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P36_73[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2549,39 +2549,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P36_73[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P36_tags_73[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P36_tags_73[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P36_specs_73 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P36), - offsetof(struct NGAP_ProtocolIE_Container_9520P36, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P36_specs_73 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P36), + offsetof(struct NGAP_ProtocolIE_Container_9574P36, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P36 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P36 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P36_tags_73, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P36_tags_73) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P36_tags_73[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P36_tags_73, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P36_tags_73) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P36_tags_73[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P36_tags_73, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P36_tags_73) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P36_tags_73[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P36_tags_73, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P36_tags_73) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P36_tags_73[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P36_constr_73, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P36_constr_73, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P36_73, + asn_MBR_NGAP_ProtocolIE_Container_9574P36_73, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P36_specs_73 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P36_specs_73 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P37_75[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P37_75[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2600,39 +2600,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P37_75[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P37_tags_75[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P37_tags_75[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P37_specs_75 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P37), - offsetof(struct NGAP_ProtocolIE_Container_9520P37, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P37_specs_75 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P37), + offsetof(struct NGAP_ProtocolIE_Container_9574P37, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P37 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P37 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P37_tags_75, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P37_tags_75) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P37_tags_75[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P37_tags_75, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P37_tags_75) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P37_tags_75[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P37_tags_75, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P37_tags_75) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P37_tags_75[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P37_tags_75, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P37_tags_75) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P37_tags_75[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P37_constr_75, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P37_constr_75, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P37_75, + asn_MBR_NGAP_ProtocolIE_Container_9574P37_75, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P37_specs_75 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P37_specs_75 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P38_77[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P38_77[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2651,39 +2651,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P38_77[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P38_tags_77[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P38_tags_77[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P38_specs_77 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P38), - offsetof(struct NGAP_ProtocolIE_Container_9520P38, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P38_specs_77 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P38), + offsetof(struct NGAP_ProtocolIE_Container_9574P38, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P38 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P38 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P38_tags_77, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P38_tags_77) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P38_tags_77[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P38_tags_77, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P38_tags_77) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P38_tags_77[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P38_tags_77, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P38_tags_77) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P38_tags_77[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P38_tags_77, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P38_tags_77) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P38_tags_77[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P38_constr_77, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P38_constr_77, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P38_77, + asn_MBR_NGAP_ProtocolIE_Container_9574P38_77, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P38_specs_77 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P38_specs_77 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P39_79[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P39_79[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2702,39 +2702,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P39_79[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P39_tags_79[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P39_tags_79[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P39_specs_79 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P39), - offsetof(struct NGAP_ProtocolIE_Container_9520P39, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P39_specs_79 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P39), + offsetof(struct NGAP_ProtocolIE_Container_9574P39, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P39 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P39 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P39_tags_79, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P39_tags_79) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P39_tags_79[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P39_tags_79, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P39_tags_79) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P39_tags_79[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P39_tags_79, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P39_tags_79) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P39_tags_79[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P39_tags_79, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P39_tags_79) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P39_tags_79[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P39_constr_79, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P39_constr_79, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P39_79, + asn_MBR_NGAP_ProtocolIE_Container_9574P39_79, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P39_specs_79 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P39_specs_79 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P40_81[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P40_81[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2753,39 +2753,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P40_81[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P40_tags_81[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P40_tags_81[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P40_specs_81 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P40), - offsetof(struct NGAP_ProtocolIE_Container_9520P40, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P40_specs_81 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P40), + offsetof(struct NGAP_ProtocolIE_Container_9574P40, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P40 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P40 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P40_tags_81, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P40_tags_81) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P40_tags_81[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P40_tags_81, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P40_tags_81) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P40_tags_81[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P40_tags_81, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P40_tags_81) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P40_tags_81[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P40_tags_81, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P40_tags_81) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P40_tags_81[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P40_constr_81, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P40_constr_81, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P40_81, + asn_MBR_NGAP_ProtocolIE_Container_9574P40_81, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P40_specs_81 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P40_specs_81 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P41_83[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P41_83[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2804,39 +2804,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P41_83[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P41_tags_83[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P41_tags_83[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P41_specs_83 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P41), - offsetof(struct NGAP_ProtocolIE_Container_9520P41, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P41_specs_83 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P41), + offsetof(struct NGAP_ProtocolIE_Container_9574P41, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P41 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P41 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P41_tags_83, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P41_tags_83) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P41_tags_83[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P41_tags_83, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P41_tags_83) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P41_tags_83[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P41_tags_83, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P41_tags_83) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P41_tags_83[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P41_tags_83, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P41_tags_83) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P41_tags_83[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P41_constr_83, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P41_constr_83, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P41_83, + asn_MBR_NGAP_ProtocolIE_Container_9574P41_83, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P41_specs_83 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P41_specs_83 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P42_85[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P42_85[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2855,39 +2855,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P42_85[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P42_tags_85[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P42_tags_85[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P42_specs_85 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P42), - offsetof(struct NGAP_ProtocolIE_Container_9520P42, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P42_specs_85 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P42), + offsetof(struct NGAP_ProtocolIE_Container_9574P42, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P42 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P42 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P42_tags_85, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P42_tags_85) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P42_tags_85[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P42_tags_85, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P42_tags_85) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P42_tags_85[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P42_tags_85, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P42_tags_85) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P42_tags_85[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P42_tags_85, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P42_tags_85) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P42_tags_85[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P42_constr_85, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P42_constr_85, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P42_85, + asn_MBR_NGAP_ProtocolIE_Container_9574P42_85, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P42_specs_85 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P42_specs_85 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P43_87[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P43_87[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2906,39 +2906,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P43_87[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P43_tags_87[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P43_tags_87[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P43_specs_87 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P43), - offsetof(struct NGAP_ProtocolIE_Container_9520P43, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P43_specs_87 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P43), + offsetof(struct NGAP_ProtocolIE_Container_9574P43, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P43 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P43 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P43_tags_87, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P43_tags_87) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P43_tags_87[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P43_tags_87, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P43_tags_87) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P43_tags_87[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P43_tags_87, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P43_tags_87) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P43_tags_87[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P43_tags_87, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P43_tags_87) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P43_tags_87[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P43_constr_87, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P43_constr_87, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P43_87, + asn_MBR_NGAP_ProtocolIE_Container_9574P43_87, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P43_specs_87 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P43_specs_87 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P44_89[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P44_89[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2957,39 +2957,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P44_89[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P44_tags_89[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P44_tags_89[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P44_specs_89 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P44), - offsetof(struct NGAP_ProtocolIE_Container_9520P44, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P44_specs_89 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P44), + offsetof(struct NGAP_ProtocolIE_Container_9574P44, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P44 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P44 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P44_tags_89, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P44_tags_89) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P44_tags_89[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P44_tags_89, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P44_tags_89) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P44_tags_89[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P44_tags_89, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P44_tags_89) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P44_tags_89[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P44_tags_89, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P44_tags_89) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P44_tags_89[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P44_constr_89, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P44_constr_89, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P44_89, + asn_MBR_NGAP_ProtocolIE_Container_9574P44_89, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P44_specs_89 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P44_specs_89 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P45_91[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P45_91[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3008,39 +3008,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P45_91[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P45_tags_91[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P45_tags_91[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P45_specs_91 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P45), - offsetof(struct NGAP_ProtocolIE_Container_9520P45, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P45_specs_91 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P45), + offsetof(struct NGAP_ProtocolIE_Container_9574P45, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P45 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P45 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P45_tags_91, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P45_tags_91) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P45_tags_91[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P45_tags_91, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P45_tags_91) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P45_tags_91[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P45_tags_91, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P45_tags_91) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P45_tags_91[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P45_tags_91, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P45_tags_91) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P45_tags_91[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P45_constr_91, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P45_constr_91, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P45_91, + asn_MBR_NGAP_ProtocolIE_Container_9574P45_91, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P45_specs_91 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P45_specs_91 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P46_93[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P46_93[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3059,39 +3059,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P46_93[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P46_tags_93[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P46_tags_93[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P46_specs_93 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P46), - offsetof(struct NGAP_ProtocolIE_Container_9520P46, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P46_specs_93 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P46), + offsetof(struct NGAP_ProtocolIE_Container_9574P46, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P46 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P46 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P46_tags_93, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P46_tags_93) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P46_tags_93[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P46_tags_93, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P46_tags_93) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P46_tags_93[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P46_tags_93, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P46_tags_93) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P46_tags_93[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P46_tags_93, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P46_tags_93) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P46_tags_93[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P46_constr_93, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P46_constr_93, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P46_93, + asn_MBR_NGAP_ProtocolIE_Container_9574P46_93, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P46_specs_93 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P46_specs_93 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P47_95[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P47_95[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3110,39 +3110,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P47_95[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P47_tags_95[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P47_tags_95[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P47_specs_95 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P47), - offsetof(struct NGAP_ProtocolIE_Container_9520P47, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P47_specs_95 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P47), + offsetof(struct NGAP_ProtocolIE_Container_9574P47, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P47 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P47 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P47_tags_95, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P47_tags_95) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P47_tags_95[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P47_tags_95, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P47_tags_95) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P47_tags_95[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P47_tags_95, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P47_tags_95) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P47_tags_95[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P47_tags_95, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P47_tags_95) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P47_tags_95[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P47_constr_95, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P47_constr_95, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P47_95, + asn_MBR_NGAP_ProtocolIE_Container_9574P47_95, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P47_specs_95 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P47_specs_95 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P48_97[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P48_97[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3161,39 +3161,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P48_97[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P48_tags_97[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P48_tags_97[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P48_specs_97 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P48), - offsetof(struct NGAP_ProtocolIE_Container_9520P48, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P48_specs_97 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P48), + offsetof(struct NGAP_ProtocolIE_Container_9574P48, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P48 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P48 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P48_tags_97, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P48_tags_97) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P48_tags_97[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P48_tags_97, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P48_tags_97) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P48_tags_97[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P48_tags_97, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P48_tags_97) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P48_tags_97[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P48_tags_97, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P48_tags_97) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P48_tags_97[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P48_constr_97, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P48_constr_97, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P48_97, + asn_MBR_NGAP_ProtocolIE_Container_9574P48_97, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P48_specs_97 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P48_specs_97 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P49_99[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P49_99[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3212,39 +3212,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P49_99[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P49_tags_99[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P49_tags_99[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P49_specs_99 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P49), - offsetof(struct NGAP_ProtocolIE_Container_9520P49, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P49_specs_99 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P49), + offsetof(struct NGAP_ProtocolIE_Container_9574P49, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P49 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P49 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P49_tags_99, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P49_tags_99) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P49_tags_99[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P49_tags_99, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P49_tags_99) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P49_tags_99[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P49_tags_99, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P49_tags_99) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P49_tags_99[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P49_tags_99, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P49_tags_99) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P49_tags_99[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P49_constr_99, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P49_constr_99, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P49_99, + asn_MBR_NGAP_ProtocolIE_Container_9574P49_99, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P49_specs_99 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P49_specs_99 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P50_101[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P50_101[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3263,39 +3263,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P50_101[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P50_tags_101[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P50_tags_101[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P50_specs_101 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P50), - offsetof(struct NGAP_ProtocolIE_Container_9520P50, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P50_specs_101 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P50), + offsetof(struct NGAP_ProtocolIE_Container_9574P50, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P50 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P50 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P50_tags_101, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P50_tags_101) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P50_tags_101[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P50_tags_101, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P50_tags_101) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P50_tags_101[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P50_tags_101, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P50_tags_101) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P50_tags_101[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P50_tags_101, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P50_tags_101) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P50_tags_101[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P50_constr_101, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P50_constr_101, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P50_101, + asn_MBR_NGAP_ProtocolIE_Container_9574P50_101, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P50_specs_101 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P50_specs_101 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P51_103[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P51_103[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3314,39 +3314,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P51_103[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P51_tags_103[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P51_tags_103[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P51_specs_103 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P51), - offsetof(struct NGAP_ProtocolIE_Container_9520P51, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P51_specs_103 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P51), + offsetof(struct NGAP_ProtocolIE_Container_9574P51, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P51 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P51 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P51_tags_103, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P51_tags_103) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P51_tags_103[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P51_tags_103, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P51_tags_103) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P51_tags_103[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P51_tags_103, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P51_tags_103) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P51_tags_103[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P51_tags_103, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P51_tags_103) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P51_tags_103[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P51_constr_103, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P51_constr_103, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P51_103, + asn_MBR_NGAP_ProtocolIE_Container_9574P51_103, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P51_specs_103 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P51_specs_103 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P52_105[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P52_105[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3365,39 +3365,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P52_105[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P52_tags_105[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P52_tags_105[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P52_specs_105 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P52), - offsetof(struct NGAP_ProtocolIE_Container_9520P52, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P52_specs_105 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P52), + offsetof(struct NGAP_ProtocolIE_Container_9574P52, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P52 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P52 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P52_tags_105, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P52_tags_105) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P52_tags_105[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P52_tags_105, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P52_tags_105) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P52_tags_105[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P52_tags_105, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P52_tags_105) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P52_tags_105[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P52_tags_105, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P52_tags_105) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P52_tags_105[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P52_constr_105, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P52_constr_105, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P52_105, + asn_MBR_NGAP_ProtocolIE_Container_9574P52_105, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P52_specs_105 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P52_specs_105 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P53_107[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P53_107[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3416,39 +3416,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P53_107[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P53_tags_107[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P53_tags_107[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P53_specs_107 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P53), - offsetof(struct NGAP_ProtocolIE_Container_9520P53, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P53_specs_107 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P53), + offsetof(struct NGAP_ProtocolIE_Container_9574P53, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P53 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P53 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P53_tags_107, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P53_tags_107) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P53_tags_107[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P53_tags_107, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P53_tags_107) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P53_tags_107[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P53_tags_107, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P53_tags_107) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P53_tags_107[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P53_tags_107, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P53_tags_107) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P53_tags_107[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P53_constr_107, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P53_constr_107, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P53_107, + asn_MBR_NGAP_ProtocolIE_Container_9574P53_107, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P53_specs_107 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P53_specs_107 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P54_109[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P54_109[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3467,39 +3467,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P54_109[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P54_tags_109[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P54_tags_109[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P54_specs_109 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P54), - offsetof(struct NGAP_ProtocolIE_Container_9520P54, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P54_specs_109 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P54), + offsetof(struct NGAP_ProtocolIE_Container_9574P54, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P54 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P54 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P54_tags_109, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P54_tags_109) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P54_tags_109[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P54_tags_109, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P54_tags_109) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P54_tags_109[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P54_tags_109, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P54_tags_109) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P54_tags_109[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P54_tags_109, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P54_tags_109) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P54_tags_109[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P54_constr_109, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P54_constr_109, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P54_109, + asn_MBR_NGAP_ProtocolIE_Container_9574P54_109, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P54_specs_109 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P54_specs_109 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P55_111[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P55_111[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3518,39 +3518,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P55_111[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P55_tags_111[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P55_tags_111[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P55_specs_111 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P55), - offsetof(struct NGAP_ProtocolIE_Container_9520P55, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P55_specs_111 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P55), + offsetof(struct NGAP_ProtocolIE_Container_9574P55, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P55 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P55 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P55_tags_111, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P55_tags_111) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P55_tags_111[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P55_tags_111, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P55_tags_111) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P55_tags_111[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P55_tags_111, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P55_tags_111) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P55_tags_111[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P55_tags_111, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P55_tags_111) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P55_tags_111[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P55_constr_111, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P55_constr_111, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P55_111, + asn_MBR_NGAP_ProtocolIE_Container_9574P55_111, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P55_specs_111 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P55_specs_111 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P56_113[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P56_113[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3569,39 +3569,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P56_113[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P56_tags_113[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P56_tags_113[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P56_specs_113 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P56), - offsetof(struct NGAP_ProtocolIE_Container_9520P56, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P56_specs_113 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P56), + offsetof(struct NGAP_ProtocolIE_Container_9574P56, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P56 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P56 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P56_tags_113, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P56_tags_113) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P56_tags_113[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P56_tags_113, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P56_tags_113) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P56_tags_113[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P56_tags_113, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P56_tags_113) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P56_tags_113[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P56_tags_113, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P56_tags_113) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P56_tags_113[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P56_constr_113, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P56_constr_113, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P56_113, + asn_MBR_NGAP_ProtocolIE_Container_9574P56_113, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P56_specs_113 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P56_specs_113 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P57_115[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P57_115[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3620,39 +3620,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P57_115[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P57_tags_115[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P57_tags_115[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P57_specs_115 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P57), - offsetof(struct NGAP_ProtocolIE_Container_9520P57, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P57_specs_115 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P57), + offsetof(struct NGAP_ProtocolIE_Container_9574P57, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P57 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P57 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P57_tags_115, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P57_tags_115) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P57_tags_115[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P57_tags_115, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P57_tags_115) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P57_tags_115[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P57_tags_115, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P57_tags_115) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P57_tags_115[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P57_tags_115, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P57_tags_115) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P57_tags_115[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P57_constr_115, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P57_constr_115, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P57_115, + asn_MBR_NGAP_ProtocolIE_Container_9574P57_115, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P57_specs_115 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P57_specs_115 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P58_117[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P58_117[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3671,39 +3671,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P58_117[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P58_tags_117[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P58_tags_117[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P58_specs_117 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P58), - offsetof(struct NGAP_ProtocolIE_Container_9520P58, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P58_specs_117 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P58), + offsetof(struct NGAP_ProtocolIE_Container_9574P58, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P58 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P58 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P58_tags_117, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P58_tags_117) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P58_tags_117[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P58_tags_117, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P58_tags_117) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P58_tags_117[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P58_tags_117, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P58_tags_117) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P58_tags_117[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P58_tags_117, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P58_tags_117) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P58_tags_117[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P58_constr_117, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P58_constr_117, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P58_117, + asn_MBR_NGAP_ProtocolIE_Container_9574P58_117, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P58_specs_117 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P58_specs_117 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P59_119[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P59_119[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3722,39 +3722,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P59_119[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P59_tags_119[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P59_tags_119[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P59_specs_119 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P59), - offsetof(struct NGAP_ProtocolIE_Container_9520P59, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P59_specs_119 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P59), + offsetof(struct NGAP_ProtocolIE_Container_9574P59, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P59 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P59 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P59_tags_119, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P59_tags_119) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P59_tags_119[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P59_tags_119, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P59_tags_119) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P59_tags_119[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P59_tags_119, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P59_tags_119) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P59_tags_119[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P59_tags_119, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P59_tags_119) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P59_tags_119[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P59_constr_119, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P59_constr_119, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P59_119, + asn_MBR_NGAP_ProtocolIE_Container_9574P59_119, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P59_specs_119 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P59_specs_119 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P60_121[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P60_121[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3773,39 +3773,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P60_121[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P60_tags_121[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P60_tags_121[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P60_specs_121 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P60), - offsetof(struct NGAP_ProtocolIE_Container_9520P60, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P60_specs_121 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P60), + offsetof(struct NGAP_ProtocolIE_Container_9574P60, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P60 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P60 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P60_tags_121, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P60_tags_121) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P60_tags_121[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P60_tags_121, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P60_tags_121) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P60_tags_121[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P60_tags_121, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P60_tags_121) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P60_tags_121[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P60_tags_121, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P60_tags_121) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P60_tags_121[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P60_constr_121, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P60_constr_121, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P60_121, + asn_MBR_NGAP_ProtocolIE_Container_9574P60_121, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P60_specs_121 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P60_specs_121 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P61_123[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P61_123[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3824,39 +3824,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P61_123[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P61_tags_123[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P61_tags_123[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P61_specs_123 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P61), - offsetof(struct NGAP_ProtocolIE_Container_9520P61, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P61_specs_123 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P61), + offsetof(struct NGAP_ProtocolIE_Container_9574P61, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P61 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P61 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P61_tags_123, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P61_tags_123) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P61_tags_123[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P61_tags_123, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P61_tags_123) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P61_tags_123[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P61_tags_123, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P61_tags_123) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P61_tags_123[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P61_tags_123, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P61_tags_123) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P61_tags_123[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P61_constr_123, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P61_constr_123, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P61_123, + asn_MBR_NGAP_ProtocolIE_Container_9574P61_123, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P61_specs_123 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P61_specs_123 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P62_125[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P62_125[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3875,39 +3875,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P62_125[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P62_tags_125[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P62_tags_125[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P62_specs_125 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P62), - offsetof(struct NGAP_ProtocolIE_Container_9520P62, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P62_specs_125 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P62), + offsetof(struct NGAP_ProtocolIE_Container_9574P62, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P62 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P62 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P62_tags_125, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P62_tags_125) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P62_tags_125[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P62_tags_125, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P62_tags_125) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P62_tags_125[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P62_tags_125, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P62_tags_125) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P62_tags_125[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P62_tags_125, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P62_tags_125) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P62_tags_125[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P62_constr_125, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P62_constr_125, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P62_125, + asn_MBR_NGAP_ProtocolIE_Container_9574P62_125, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P62_specs_125 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P62_specs_125 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P63_127[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P63_127[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3926,39 +3926,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P63_127[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P63_tags_127[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P63_tags_127[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P63_specs_127 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P63), - offsetof(struct NGAP_ProtocolIE_Container_9520P63, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P63_specs_127 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P63), + offsetof(struct NGAP_ProtocolIE_Container_9574P63, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P63 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P63 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P63_tags_127, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P63_tags_127) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P63_tags_127[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P63_tags_127, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P63_tags_127) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P63_tags_127[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P63_tags_127, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P63_tags_127) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P63_tags_127[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P63_tags_127, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P63_tags_127) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P63_tags_127[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P63_constr_127, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P63_constr_127, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P63_127, + asn_MBR_NGAP_ProtocolIE_Container_9574P63_127, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P63_specs_127 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P63_specs_127 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P64_129[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P64_129[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3977,39 +3977,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P64_129[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P64_tags_129[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P64_tags_129[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P64_specs_129 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P64), - offsetof(struct NGAP_ProtocolIE_Container_9520P64, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P64_specs_129 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P64), + offsetof(struct NGAP_ProtocolIE_Container_9574P64, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P64 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P64 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P64_tags_129, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P64_tags_129) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P64_tags_129[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P64_tags_129, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P64_tags_129) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P64_tags_129[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P64_tags_129, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P64_tags_129) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P64_tags_129[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P64_tags_129, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P64_tags_129) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P64_tags_129[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P64_constr_129, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P64_constr_129, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P64_129, + asn_MBR_NGAP_ProtocolIE_Container_9574P64_129, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P64_specs_129 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P64_specs_129 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P65_131[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P65_131[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4028,39 +4028,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P65_131[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P65_tags_131[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P65_tags_131[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P65_specs_131 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P65), - offsetof(struct NGAP_ProtocolIE_Container_9520P65, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P65_specs_131 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P65), + offsetof(struct NGAP_ProtocolIE_Container_9574P65, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P65 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P65 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P65_tags_131, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P65_tags_131) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P65_tags_131[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P65_tags_131, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P65_tags_131) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P65_tags_131[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P65_tags_131, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P65_tags_131) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P65_tags_131[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P65_tags_131, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P65_tags_131) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P65_tags_131[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P65_constr_131, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P65_constr_131, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P65_131, + asn_MBR_NGAP_ProtocolIE_Container_9574P65_131, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P65_specs_131 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P65_specs_131 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P66_133[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P66_133[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4079,39 +4079,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P66_133[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P66_tags_133[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P66_tags_133[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P66_specs_133 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P66), - offsetof(struct NGAP_ProtocolIE_Container_9520P66, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P66_specs_133 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P66), + offsetof(struct NGAP_ProtocolIE_Container_9574P66, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P66 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P66 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P66_tags_133, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P66_tags_133) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P66_tags_133[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P66_tags_133, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P66_tags_133) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P66_tags_133[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P66_tags_133, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P66_tags_133) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P66_tags_133[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P66_tags_133, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P66_tags_133) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P66_tags_133[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P66_constr_133, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P66_constr_133, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P66_133, + asn_MBR_NGAP_ProtocolIE_Container_9574P66_133, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P66_specs_133 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P66_specs_133 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P67_135[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P67_135[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4130,39 +4130,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P67_135[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P67_tags_135[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P67_tags_135[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P67_specs_135 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P67), - offsetof(struct NGAP_ProtocolIE_Container_9520P67, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P67_specs_135 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P67), + offsetof(struct NGAP_ProtocolIE_Container_9574P67, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P67 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P67 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P67_tags_135, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P67_tags_135) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P67_tags_135[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P67_tags_135, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P67_tags_135) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P67_tags_135[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P67_tags_135, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P67_tags_135) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P67_tags_135[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P67_tags_135, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P67_tags_135) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P67_tags_135[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P67_constr_135, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P67_constr_135, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P67_135, + asn_MBR_NGAP_ProtocolIE_Container_9574P67_135, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P67_specs_135 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P67_specs_135 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P68_137[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P68_137[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4181,39 +4181,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P68_137[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P68_tags_137[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P68_tags_137[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P68_specs_137 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P68), - offsetof(struct NGAP_ProtocolIE_Container_9520P68, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P68_specs_137 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P68), + offsetof(struct NGAP_ProtocolIE_Container_9574P68, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P68 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P68 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P68_tags_137, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P68_tags_137) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P68_tags_137[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P68_tags_137, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P68_tags_137) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P68_tags_137[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P68_tags_137, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P68_tags_137) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P68_tags_137[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P68_tags_137, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P68_tags_137) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P68_tags_137[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P68_constr_137, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P68_constr_137, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P68_137, + asn_MBR_NGAP_ProtocolIE_Container_9574P68_137, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P68_specs_137 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P68_specs_137 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P69_139[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P69_139[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4232,39 +4232,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P69_139[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P69_tags_139[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P69_tags_139[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P69_specs_139 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P69), - offsetof(struct NGAP_ProtocolIE_Container_9520P69, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P69_specs_139 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P69), + offsetof(struct NGAP_ProtocolIE_Container_9574P69, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P69 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P69 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P69_tags_139, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P69_tags_139) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P69_tags_139[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P69_tags_139, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P69_tags_139) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P69_tags_139[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P69_tags_139, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P69_tags_139) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P69_tags_139[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P69_tags_139, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P69_tags_139) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P69_tags_139[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P69_constr_139, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P69_constr_139, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P69_139, + asn_MBR_NGAP_ProtocolIE_Container_9574P69_139, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P69_specs_139 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P69_specs_139 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P70_141[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P70_141[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4283,39 +4283,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P70_141[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P70_tags_141[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P70_tags_141[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P70_specs_141 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P70), - offsetof(struct NGAP_ProtocolIE_Container_9520P70, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P70_specs_141 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P70), + offsetof(struct NGAP_ProtocolIE_Container_9574P70, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P70 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P70 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P70_tags_141, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P70_tags_141) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P70_tags_141[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P70_tags_141, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P70_tags_141) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P70_tags_141[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P70_tags_141, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P70_tags_141) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P70_tags_141[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P70_tags_141, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P70_tags_141) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P70_tags_141[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P70_constr_141, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P70_constr_141, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P70_141, + asn_MBR_NGAP_ProtocolIE_Container_9574P70_141, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P70_specs_141 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P70_specs_141 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P71_143[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P71_143[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4334,39 +4334,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P71_143[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P71_tags_143[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P71_tags_143[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P71_specs_143 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P71), - offsetof(struct NGAP_ProtocolIE_Container_9520P71, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P71_specs_143 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P71), + offsetof(struct NGAP_ProtocolIE_Container_9574P71, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P71 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P71 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P71_tags_143, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P71_tags_143) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P71_tags_143[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P71_tags_143, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P71_tags_143) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P71_tags_143[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P71_tags_143, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P71_tags_143) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P71_tags_143[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P71_tags_143, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P71_tags_143) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P71_tags_143[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P71_constr_143, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P71_constr_143, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P71_143, + asn_MBR_NGAP_ProtocolIE_Container_9574P71_143, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P71_specs_143 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P71_specs_143 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P72_145[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P72_145[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4385,39 +4385,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P72_145[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P72_tags_145[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P72_tags_145[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P72_specs_145 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P72), - offsetof(struct NGAP_ProtocolIE_Container_9520P72, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P72_specs_145 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P72), + offsetof(struct NGAP_ProtocolIE_Container_9574P72, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P72 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P72 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P72_tags_145, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P72_tags_145) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P72_tags_145[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P72_tags_145, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P72_tags_145) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P72_tags_145[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P72_tags_145, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P72_tags_145) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P72_tags_145[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P72_tags_145, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P72_tags_145) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P72_tags_145[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P72_constr_145, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P72_constr_145, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P72_145, + asn_MBR_NGAP_ProtocolIE_Container_9574P72_145, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P72_specs_145 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P72_specs_145 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P73_147[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P73_147[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4436,39 +4436,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P73_147[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P73_tags_147[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P73_tags_147[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P73_specs_147 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P73), - offsetof(struct NGAP_ProtocolIE_Container_9520P73, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P73_specs_147 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P73), + offsetof(struct NGAP_ProtocolIE_Container_9574P73, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P73 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P73 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P73_tags_147, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P73_tags_147) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P73_tags_147[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P73_tags_147, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P73_tags_147) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P73_tags_147[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P73_tags_147, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P73_tags_147) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P73_tags_147[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P73_tags_147, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P73_tags_147) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P73_tags_147[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P73_constr_147, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P73_constr_147, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P73_147, + asn_MBR_NGAP_ProtocolIE_Container_9574P73_147, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P73_specs_147 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P73_specs_147 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P74_149[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P74_149[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4487,39 +4487,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P74_149[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P74_tags_149[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P74_tags_149[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P74_specs_149 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P74), - offsetof(struct NGAP_ProtocolIE_Container_9520P74, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P74_specs_149 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P74), + offsetof(struct NGAP_ProtocolIE_Container_9574P74, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P74 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P74 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P74_tags_149, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P74_tags_149) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P74_tags_149[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P74_tags_149, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P74_tags_149) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P74_tags_149[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P74_tags_149, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P74_tags_149) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P74_tags_149[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P74_tags_149, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P74_tags_149) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P74_tags_149[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P74_constr_149, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P74_constr_149, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P74_149, + asn_MBR_NGAP_ProtocolIE_Container_9574P74_149, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P74_specs_149 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P74_specs_149 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P75_151[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P75_151[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4538,39 +4538,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P75_151[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P75_tags_151[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P75_tags_151[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P75_specs_151 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P75), - offsetof(struct NGAP_ProtocolIE_Container_9520P75, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P75_specs_151 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P75), + offsetof(struct NGAP_ProtocolIE_Container_9574P75, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P75 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P75 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P75_tags_151, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P75_tags_151) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P75_tags_151[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P75_tags_151, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P75_tags_151) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P75_tags_151[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P75_tags_151, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P75_tags_151) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P75_tags_151[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P75_tags_151, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P75_tags_151) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P75_tags_151[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P75_constr_151, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P75_constr_151, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P75_151, + asn_MBR_NGAP_ProtocolIE_Container_9574P75_151, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P75_specs_151 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P75_specs_151 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P76_153[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P76_153[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4589,39 +4589,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P76_153[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P76_tags_153[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P76_tags_153[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P76_specs_153 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P76), - offsetof(struct NGAP_ProtocolIE_Container_9520P76, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P76_specs_153 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P76), + offsetof(struct NGAP_ProtocolIE_Container_9574P76, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P76 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P76 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P76_tags_153, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P76_tags_153) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P76_tags_153[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P76_tags_153, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P76_tags_153) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P76_tags_153[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P76_tags_153, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P76_tags_153) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P76_tags_153[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P76_tags_153, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P76_tags_153) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P76_tags_153[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P76_constr_153, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P76_constr_153, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P76_153, + asn_MBR_NGAP_ProtocolIE_Container_9574P76_153, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P76_specs_153 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P76_specs_153 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P77_155[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P77_155[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4640,39 +4640,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P77_155[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P77_tags_155[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P77_tags_155[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P77_specs_155 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P77), - offsetof(struct NGAP_ProtocolIE_Container_9520P77, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P77_specs_155 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P77), + offsetof(struct NGAP_ProtocolIE_Container_9574P77, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P77 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P77 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P77_tags_155, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P77_tags_155) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P77_tags_155[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P77_tags_155, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P77_tags_155) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P77_tags_155[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P77_tags_155, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P77_tags_155) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P77_tags_155[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P77_tags_155, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P77_tags_155) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P77_tags_155[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P77_constr_155, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P77_constr_155, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P77_155, + asn_MBR_NGAP_ProtocolIE_Container_9574P77_155, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P77_specs_155 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P77_specs_155 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P78_157[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P78_157[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4691,39 +4691,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P78_157[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P78_tags_157[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P78_tags_157[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P78_specs_157 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P78), - offsetof(struct NGAP_ProtocolIE_Container_9520P78, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P78_specs_157 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P78), + offsetof(struct NGAP_ProtocolIE_Container_9574P78, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P78 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P78 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P78_tags_157, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P78_tags_157) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P78_tags_157[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P78_tags_157, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P78_tags_157) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P78_tags_157[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P78_tags_157, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P78_tags_157) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P78_tags_157[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P78_tags_157, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P78_tags_157) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P78_tags_157[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P78_constr_157, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P78_constr_157, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P78_157, + asn_MBR_NGAP_ProtocolIE_Container_9574P78_157, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P78_specs_157 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P78_specs_157 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P79_159[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P79_159[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4742,39 +4742,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P79_159[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P79_tags_159[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P79_tags_159[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P79_specs_159 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P79), - offsetof(struct NGAP_ProtocolIE_Container_9520P79, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P79_specs_159 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P79), + offsetof(struct NGAP_ProtocolIE_Container_9574P79, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P79 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P79 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P79_tags_159, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P79_tags_159) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P79_tags_159[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P79_tags_159, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P79_tags_159) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P79_tags_159[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P79_tags_159, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P79_tags_159) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P79_tags_159[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P79_tags_159, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P79_tags_159) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P79_tags_159[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P79_constr_159, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P79_constr_159, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P79_159, + asn_MBR_NGAP_ProtocolIE_Container_9574P79_159, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P79_specs_159 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P79_specs_159 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P80_161[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P80_161[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4793,39 +4793,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P80_161[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P80_tags_161[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P80_tags_161[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P80_specs_161 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P80), - offsetof(struct NGAP_ProtocolIE_Container_9520P80, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P80_specs_161 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P80), + offsetof(struct NGAP_ProtocolIE_Container_9574P80, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P80 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P80 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P80_tags_161, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P80_tags_161) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P80_tags_161[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P80_tags_161, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P80_tags_161) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P80_tags_161[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P80_tags_161, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P80_tags_161) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P80_tags_161[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P80_tags_161, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P80_tags_161) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P80_tags_161[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P80_constr_161, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P80_constr_161, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P80_161, + asn_MBR_NGAP_ProtocolIE_Container_9574P80_161, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P80_specs_161 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P80_specs_161 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P81_163[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P81_163[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4844,39 +4844,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P81_163[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P81_tags_163[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P81_tags_163[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P81_specs_163 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P81), - offsetof(struct NGAP_ProtocolIE_Container_9520P81, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P81_specs_163 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P81), + offsetof(struct NGAP_ProtocolIE_Container_9574P81, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P81 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P81 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P81_tags_163, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P81_tags_163) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P81_tags_163[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P81_tags_163, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P81_tags_163) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P81_tags_163[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P81_tags_163, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P81_tags_163) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P81_tags_163[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P81_tags_163, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P81_tags_163) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P81_tags_163[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P81_constr_163, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P81_constr_163, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P81_163, + asn_MBR_NGAP_ProtocolIE_Container_9574P81_163, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P81_specs_163 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P81_specs_163 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P82_165[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P82_165[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4895,39 +4895,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P82_165[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P82_tags_165[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P82_tags_165[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P82_specs_165 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P82), - offsetof(struct NGAP_ProtocolIE_Container_9520P82, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P82_specs_165 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P82), + offsetof(struct NGAP_ProtocolIE_Container_9574P82, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P82 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P82 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P82_tags_165, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P82_tags_165) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P82_tags_165[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P82_tags_165, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P82_tags_165) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P82_tags_165[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P82_tags_165, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P82_tags_165) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P82_tags_165[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P82_tags_165, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P82_tags_165) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P82_tags_165[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P82_constr_165, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P82_constr_165, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P82_165, + asn_MBR_NGAP_ProtocolIE_Container_9574P82_165, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P82_specs_165 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P82_specs_165 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P83_167[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P83_167[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4946,39 +4946,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P83_167[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P83_tags_167[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P83_tags_167[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P83_specs_167 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P83), - offsetof(struct NGAP_ProtocolIE_Container_9520P83, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P83_specs_167 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P83), + offsetof(struct NGAP_ProtocolIE_Container_9574P83, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P83 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P83 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P83_tags_167, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P83_tags_167) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P83_tags_167[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P83_tags_167, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P83_tags_167) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P83_tags_167[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P83_tags_167, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P83_tags_167) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P83_tags_167[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P83_tags_167, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P83_tags_167) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P83_tags_167[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P83_constr_167, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P83_constr_167, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P83_167, + asn_MBR_NGAP_ProtocolIE_Container_9574P83_167, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P83_specs_167 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P83_specs_167 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P84_169[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P84_169[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4997,39 +4997,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P84_169[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P84_tags_169[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P84_tags_169[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P84_specs_169 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P84), - offsetof(struct NGAP_ProtocolIE_Container_9520P84, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P84_specs_169 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P84), + offsetof(struct NGAP_ProtocolIE_Container_9574P84, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P84 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P84 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P84_tags_169, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P84_tags_169) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P84_tags_169[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P84_tags_169, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P84_tags_169) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P84_tags_169[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P84_tags_169, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P84_tags_169) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P84_tags_169[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P84_tags_169, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P84_tags_169) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P84_tags_169[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P84_constr_169, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P84_constr_169, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P84_169, + asn_MBR_NGAP_ProtocolIE_Container_9574P84_169, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P84_specs_169 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P84_specs_169 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P85_171[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P85_171[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5048,39 +5048,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P85_171[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P85_tags_171[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P85_tags_171[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P85_specs_171 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P85), - offsetof(struct NGAP_ProtocolIE_Container_9520P85, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P85_specs_171 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P85), + offsetof(struct NGAP_ProtocolIE_Container_9574P85, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P85 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P85 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P85_tags_171, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P85_tags_171) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P85_tags_171[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P85_tags_171, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P85_tags_171) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P85_tags_171[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P85_tags_171, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P85_tags_171) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P85_tags_171[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P85_tags_171, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P85_tags_171) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P85_tags_171[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P85_constr_171, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P85_constr_171, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P85_171, + asn_MBR_NGAP_ProtocolIE_Container_9574P85_171, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P85_specs_171 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P85_specs_171 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P86_173[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P86_173[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5099,39 +5099,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P86_173[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P86_tags_173[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P86_tags_173[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P86_specs_173 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P86), - offsetof(struct NGAP_ProtocolIE_Container_9520P86, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P86_specs_173 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P86), + offsetof(struct NGAP_ProtocolIE_Container_9574P86, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P86 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P86 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P86_tags_173, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P86_tags_173) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P86_tags_173[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P86_tags_173, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P86_tags_173) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P86_tags_173[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P86_tags_173, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P86_tags_173) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P86_tags_173[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P86_tags_173, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P86_tags_173) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P86_tags_173[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P86_constr_173, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P86_constr_173, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P86_173, + asn_MBR_NGAP_ProtocolIE_Container_9574P86_173, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P86_specs_173 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P86_specs_173 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P87_175[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P87_175[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5150,39 +5150,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P87_175[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P87_tags_175[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P87_tags_175[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P87_specs_175 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P87), - offsetof(struct NGAP_ProtocolIE_Container_9520P87, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P87_specs_175 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P87), + offsetof(struct NGAP_ProtocolIE_Container_9574P87, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P87 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P87 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P87_tags_175, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P87_tags_175) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P87_tags_175[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P87_tags_175, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P87_tags_175) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P87_tags_175[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P87_tags_175, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P87_tags_175) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P87_tags_175[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P87_tags_175, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P87_tags_175) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P87_tags_175[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P87_constr_175, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P87_constr_175, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P87_175, + asn_MBR_NGAP_ProtocolIE_Container_9574P87_175, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P87_specs_175 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P87_specs_175 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P88_177[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P88_177[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5201,39 +5201,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P88_177[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P88_tags_177[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P88_tags_177[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P88_specs_177 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P88), - offsetof(struct NGAP_ProtocolIE_Container_9520P88, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P88_specs_177 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P88), + offsetof(struct NGAP_ProtocolIE_Container_9574P88, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P88 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P88 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P88_tags_177, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P88_tags_177) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P88_tags_177[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P88_tags_177, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P88_tags_177) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P88_tags_177[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P88_tags_177, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P88_tags_177) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P88_tags_177[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P88_tags_177, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P88_tags_177) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P88_tags_177[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P88_constr_177, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P88_constr_177, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P88_177, + asn_MBR_NGAP_ProtocolIE_Container_9574P88_177, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P88_specs_177 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P88_specs_177 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P89_179[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P89_179[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5252,39 +5252,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P89_179[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P89_tags_179[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P89_tags_179[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P89_specs_179 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P89), - offsetof(struct NGAP_ProtocolIE_Container_9520P89, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P89_specs_179 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P89), + offsetof(struct NGAP_ProtocolIE_Container_9574P89, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P89 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P89 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P89_tags_179, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P89_tags_179) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P89_tags_179[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P89_tags_179, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P89_tags_179) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P89_tags_179[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P89_tags_179, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P89_tags_179) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P89_tags_179[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P89_tags_179, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P89_tags_179) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P89_tags_179[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P89_constr_179, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P89_constr_179, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P89_179, + asn_MBR_NGAP_ProtocolIE_Container_9574P89_179, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P89_specs_179 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P89_specs_179 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P90_181[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P90_181[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5303,39 +5303,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P90_181[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P90_tags_181[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P90_tags_181[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P90_specs_181 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P90), - offsetof(struct NGAP_ProtocolIE_Container_9520P90, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P90_specs_181 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P90), + offsetof(struct NGAP_ProtocolIE_Container_9574P90, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P90 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P90 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P90_tags_181, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P90_tags_181) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P90_tags_181[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P90_tags_181, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P90_tags_181) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P90_tags_181[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P90_tags_181, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P90_tags_181) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P90_tags_181[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P90_tags_181, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P90_tags_181) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P90_tags_181[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P90_constr_181, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P90_constr_181, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P90_181, + asn_MBR_NGAP_ProtocolIE_Container_9574P90_181, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P90_specs_181 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P90_specs_181 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P91_183[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P91_183[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5354,39 +5354,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P91_183[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P91_tags_183[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P91_tags_183[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P91_specs_183 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P91), - offsetof(struct NGAP_ProtocolIE_Container_9520P91, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P91_specs_183 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P91), + offsetof(struct NGAP_ProtocolIE_Container_9574P91, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P91 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P91 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P91_tags_183, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P91_tags_183) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P91_tags_183[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P91_tags_183, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P91_tags_183) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P91_tags_183[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P91_tags_183, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P91_tags_183) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P91_tags_183[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P91_tags_183, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P91_tags_183) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P91_tags_183[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P91_constr_183, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P91_constr_183, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P91_183, + asn_MBR_NGAP_ProtocolIE_Container_9574P91_183, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P91_specs_183 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P91_specs_183 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P92_185[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P92_185[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5405,39 +5405,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P92_185[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P92_tags_185[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P92_tags_185[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P92_specs_185 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P92), - offsetof(struct NGAP_ProtocolIE_Container_9520P92, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P92_specs_185 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P92), + offsetof(struct NGAP_ProtocolIE_Container_9574P92, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P92 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P92 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P92_tags_185, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P92_tags_185) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P92_tags_185[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P92_tags_185, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P92_tags_185) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P92_tags_185[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P92_tags_185, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P92_tags_185) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P92_tags_185[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P92_tags_185, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P92_tags_185) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P92_tags_185[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P92_constr_185, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P92_constr_185, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P92_185, + asn_MBR_NGAP_ProtocolIE_Container_9574P92_185, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P92_specs_185 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P92_specs_185 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P93_187[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P93_187[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5456,39 +5456,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P93_187[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P93_tags_187[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P93_tags_187[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P93_specs_187 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P93), - offsetof(struct NGAP_ProtocolIE_Container_9520P93, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P93_specs_187 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P93), + offsetof(struct NGAP_ProtocolIE_Container_9574P93, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P93 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P93 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P93_tags_187, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P93_tags_187) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P93_tags_187[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P93_tags_187, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P93_tags_187) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P93_tags_187[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P93_tags_187, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P93_tags_187) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P93_tags_187[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P93_tags_187, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P93_tags_187) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P93_tags_187[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P93_constr_187, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P93_constr_187, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P93_187, + asn_MBR_NGAP_ProtocolIE_Container_9574P93_187, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P93_specs_187 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P93_specs_187 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P94_189[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P94_189[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5507,39 +5507,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P94_189[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P94_tags_189[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P94_tags_189[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P94_specs_189 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P94), - offsetof(struct NGAP_ProtocolIE_Container_9520P94, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P94_specs_189 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P94), + offsetof(struct NGAP_ProtocolIE_Container_9574P94, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P94 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P94 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P94_tags_189, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P94_tags_189) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P94_tags_189[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P94_tags_189, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P94_tags_189) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P94_tags_189[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P94_tags_189, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P94_tags_189) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P94_tags_189[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P94_tags_189, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P94_tags_189) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P94_tags_189[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P94_constr_189, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P94_constr_189, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P94_189, + asn_MBR_NGAP_ProtocolIE_Container_9574P94_189, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P94_specs_189 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P94_specs_189 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P95_191[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P95_191[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5558,39 +5558,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P95_191[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P95_tags_191[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P95_tags_191[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P95_specs_191 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P95), - offsetof(struct NGAP_ProtocolIE_Container_9520P95, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P95_specs_191 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P95), + offsetof(struct NGAP_ProtocolIE_Container_9574P95, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P95 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P95 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P95_tags_191, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P95_tags_191) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P95_tags_191[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P95_tags_191, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P95_tags_191) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P95_tags_191[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P95_tags_191, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P95_tags_191) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P95_tags_191[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P95_tags_191, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P95_tags_191) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P95_tags_191[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P95_constr_191, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P95_constr_191, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P95_191, + asn_MBR_NGAP_ProtocolIE_Container_9574P95_191, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P95_specs_191 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P95_specs_191 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P96_193[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P96_193[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5609,39 +5609,39 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P96_193[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P96_tags_193[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P96_tags_193[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P96_specs_193 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P96), - offsetof(struct NGAP_ProtocolIE_Container_9520P96, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P96_specs_193 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P96), + offsetof(struct NGAP_ProtocolIE_Container_9574P96, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P96 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P96 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P96_tags_193, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P96_tags_193) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P96_tags_193[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P96_tags_193, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P96_tags_193) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P96_tags_193[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P96_tags_193, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P96_tags_193) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P96_tags_193[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P96_tags_193, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P96_tags_193) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P96_tags_193[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P96_constr_193, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P96_constr_193, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P96_193, + asn_MBR_NGAP_ProtocolIE_Container_9574P96_193, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P96_specs_193 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P96_specs_193 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P97_195[] = { +asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P97_195[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5660,35 +5660,35 @@ asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P97_195[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9520P97_tags_195[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_Container_9574P97_tags_195[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P97_specs_195 = { - sizeof(struct NGAP_ProtocolIE_Container_9520P97), - offsetof(struct NGAP_ProtocolIE_Container_9520P97, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P97_specs_195 = { + sizeof(struct NGAP_ProtocolIE_Container_9574P97), + offsetof(struct NGAP_ProtocolIE_Container_9574P97, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P97 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P97 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_NGAP_ProtocolIE_Container_9520P97_tags_195, - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P97_tags_195) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P97_tags_195[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_Container_9520P97_tags_195, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P97_tags_195) - /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9520P97_tags_195[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P97_tags_195, + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P97_tags_195) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P97_tags_195[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_Container_9574P97_tags_195, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P97_tags_195) + /sizeof(asn_DEF_NGAP_ProtocolIE_Container_9574P97_tags_195[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_NGAP_ProtocolIE_Container_9520P97_constr_195, + &asn_PER_type_NGAP_ProtocolIE_Container_9574P97_constr_195, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_NGAP_ProtocolIE_Container_9520P97_195, + asn_MBR_NGAP_ProtocolIE_Container_9574P97_195, 1, /* Single element */ - &asn_SPC_NGAP_ProtocolIE_Container_9520P97_specs_195 /* Additional specs */ + &asn_SPC_NGAP_ProtocolIE_Container_9574P97_specs_195 /* Additional specs */ }; diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-Container.h b/lib/asn1c/ngap/NGAP_ProtocolIE-Container.h index c6849d66b..a089f34c9 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-Container.h +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-Container.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -120,988 +120,988 @@ struct NGAP_PDUSessionResourceModifyRequestTransferIEs; struct NGAP_PDUSessionResourceSetupRequestTransferIEs; /* NGAP_ProtocolIE-Container */ -typedef struct NGAP_ProtocolIE_Container_9520P0 { +typedef struct NGAP_ProtocolIE_Container_9574P0 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P0_t; -typedef struct NGAP_ProtocolIE_Container_9520P1 { +} NGAP_ProtocolIE_Container_9574P0_t; +typedef struct NGAP_ProtocolIE_Container_9574P1 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P1_t; -typedef struct NGAP_ProtocolIE_Container_9520P2 { +} NGAP_ProtocolIE_Container_9574P1_t; +typedef struct NGAP_ProtocolIE_Container_9574P2 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceReleaseCommandIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P2_t; -typedef struct NGAP_ProtocolIE_Container_9520P3 { +} NGAP_ProtocolIE_Container_9574P2_t; +typedef struct NGAP_ProtocolIE_Container_9574P3 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceReleaseResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P3_t; -typedef struct NGAP_ProtocolIE_Container_9520P4 { +} NGAP_ProtocolIE_Container_9574P3_t; +typedef struct NGAP_ProtocolIE_Container_9574P4 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P4_t; -typedef struct NGAP_ProtocolIE_Container_9520P5 { +} NGAP_ProtocolIE_Container_9574P4_t; +typedef struct NGAP_ProtocolIE_Container_9574P5 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P5_t; -typedef struct NGAP_ProtocolIE_Container_9520P6 { +} NGAP_ProtocolIE_Container_9574P5_t; +typedef struct NGAP_ProtocolIE_Container_9574P6 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceNotifyIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P6_t; -typedef struct NGAP_ProtocolIE_Container_9520P7 { +} NGAP_ProtocolIE_Container_9574P6_t; +typedef struct NGAP_ProtocolIE_Container_9574P7 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P7_t; -typedef struct NGAP_ProtocolIE_Container_9520P8 { +} NGAP_ProtocolIE_Container_9574P7_t; +typedef struct NGAP_ProtocolIE_Container_9574P8 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyConfirmIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P8_t; -typedef struct NGAP_ProtocolIE_Container_9520P9 { +} NGAP_ProtocolIE_Container_9574P8_t; +typedef struct NGAP_ProtocolIE_Container_9574P9 { A_SEQUENCE_OF(struct NGAP_InitialContextSetupRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P9_t; -typedef struct NGAP_ProtocolIE_Container_9520P10 { +} NGAP_ProtocolIE_Container_9574P9_t; +typedef struct NGAP_ProtocolIE_Container_9574P10 { A_SEQUENCE_OF(struct NGAP_InitialContextSetupResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P10_t; -typedef struct NGAP_ProtocolIE_Container_9520P11 { +} NGAP_ProtocolIE_Container_9574P10_t; +typedef struct NGAP_ProtocolIE_Container_9574P11 { A_SEQUENCE_OF(struct NGAP_InitialContextSetupFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P11_t; -typedef struct NGAP_ProtocolIE_Container_9520P12 { +} NGAP_ProtocolIE_Container_9574P11_t; +typedef struct NGAP_ProtocolIE_Container_9574P12 { A_SEQUENCE_OF(struct NGAP_UEContextReleaseRequest_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P12_t; -typedef struct NGAP_ProtocolIE_Container_9520P13 { +} NGAP_ProtocolIE_Container_9574P12_t; +typedef struct NGAP_ProtocolIE_Container_9574P13 { A_SEQUENCE_OF(struct NGAP_UEContextReleaseCommand_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P13_t; -typedef struct NGAP_ProtocolIE_Container_9520P14 { +} NGAP_ProtocolIE_Container_9574P13_t; +typedef struct NGAP_ProtocolIE_Container_9574P14 { A_SEQUENCE_OF(struct NGAP_UEContextReleaseComplete_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P14_t; -typedef struct NGAP_ProtocolIE_Container_9520P15 { +} NGAP_ProtocolIE_Container_9574P14_t; +typedef struct NGAP_ProtocolIE_Container_9574P15 { A_SEQUENCE_OF(struct NGAP_UEContextResumeRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P15_t; -typedef struct NGAP_ProtocolIE_Container_9520P16 { +} NGAP_ProtocolIE_Container_9574P15_t; +typedef struct NGAP_ProtocolIE_Container_9574P16 { A_SEQUENCE_OF(struct NGAP_UEContextResumeResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P16_t; -typedef struct NGAP_ProtocolIE_Container_9520P17 { +} NGAP_ProtocolIE_Container_9574P16_t; +typedef struct NGAP_ProtocolIE_Container_9574P17 { A_SEQUENCE_OF(struct NGAP_UEContextResumeFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P17_t; -typedef struct NGAP_ProtocolIE_Container_9520P18 { +} NGAP_ProtocolIE_Container_9574P17_t; +typedef struct NGAP_ProtocolIE_Container_9574P18 { A_SEQUENCE_OF(struct NGAP_UEContextSuspendRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P18_t; -typedef struct NGAP_ProtocolIE_Container_9520P19 { +} NGAP_ProtocolIE_Container_9574P18_t; +typedef struct NGAP_ProtocolIE_Container_9574P19 { A_SEQUENCE_OF(struct NGAP_UEContextSuspendResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P19_t; -typedef struct NGAP_ProtocolIE_Container_9520P20 { +} NGAP_ProtocolIE_Container_9574P19_t; +typedef struct NGAP_ProtocolIE_Container_9574P20 { A_SEQUENCE_OF(struct NGAP_UEContextSuspendFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P20_t; -typedef struct NGAP_ProtocolIE_Container_9520P21 { +} NGAP_ProtocolIE_Container_9574P20_t; +typedef struct NGAP_ProtocolIE_Container_9574P21 { A_SEQUENCE_OF(struct NGAP_UEContextModificationRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P21_t; -typedef struct NGAP_ProtocolIE_Container_9520P22 { +} NGAP_ProtocolIE_Container_9574P21_t; +typedef struct NGAP_ProtocolIE_Container_9574P22 { A_SEQUENCE_OF(struct NGAP_UEContextModificationResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P22_t; -typedef struct NGAP_ProtocolIE_Container_9520P23 { +} NGAP_ProtocolIE_Container_9574P22_t; +typedef struct NGAP_ProtocolIE_Container_9574P23 { A_SEQUENCE_OF(struct NGAP_UEContextModificationFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P23_t; -typedef struct NGAP_ProtocolIE_Container_9520P24 { +} NGAP_ProtocolIE_Container_9574P23_t; +typedef struct NGAP_ProtocolIE_Container_9574P24 { A_SEQUENCE_OF(struct NGAP_RRCInactiveTransitionReportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P24_t; -typedef struct NGAP_ProtocolIE_Container_9520P25 { +} NGAP_ProtocolIE_Container_9574P24_t; +typedef struct NGAP_ProtocolIE_Container_9574P25 { A_SEQUENCE_OF(struct NGAP_RetrieveUEInformationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P25_t; -typedef struct NGAP_ProtocolIE_Container_9520P26 { +} NGAP_ProtocolIE_Container_9574P25_t; +typedef struct NGAP_ProtocolIE_Container_9574P26 { A_SEQUENCE_OF(struct NGAP_UEInformationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P26_t; -typedef struct NGAP_ProtocolIE_Container_9520P27 { +} NGAP_ProtocolIE_Container_9574P26_t; +typedef struct NGAP_ProtocolIE_Container_9574P27 { A_SEQUENCE_OF(struct NGAP_RANCPRelocationIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P27_t; -typedef struct NGAP_ProtocolIE_Container_9520P28 { +} NGAP_ProtocolIE_Container_9574P27_t; +typedef struct NGAP_ProtocolIE_Container_9574P28 { A_SEQUENCE_OF(struct NGAP_HandoverRequiredIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P28_t; -typedef struct NGAP_ProtocolIE_Container_9520P29 { +} NGAP_ProtocolIE_Container_9574P28_t; +typedef struct NGAP_ProtocolIE_Container_9574P29 { A_SEQUENCE_OF(struct NGAP_HandoverCommandIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P29_t; -typedef struct NGAP_ProtocolIE_Container_9520P30 { +} NGAP_ProtocolIE_Container_9574P29_t; +typedef struct NGAP_ProtocolIE_Container_9574P30 { A_SEQUENCE_OF(struct NGAP_HandoverPreparationFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P30_t; -typedef struct NGAP_ProtocolIE_Container_9520P31 { +} NGAP_ProtocolIE_Container_9574P30_t; +typedef struct NGAP_ProtocolIE_Container_9574P31 { A_SEQUENCE_OF(struct NGAP_HandoverRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P31_t; -typedef struct NGAP_ProtocolIE_Container_9520P32 { +} NGAP_ProtocolIE_Container_9574P31_t; +typedef struct NGAP_ProtocolIE_Container_9574P32 { A_SEQUENCE_OF(struct NGAP_HandoverRequestAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P32_t; -typedef struct NGAP_ProtocolIE_Container_9520P33 { +} NGAP_ProtocolIE_Container_9574P32_t; +typedef struct NGAP_ProtocolIE_Container_9574P33 { A_SEQUENCE_OF(struct NGAP_HandoverFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P33_t; -typedef struct NGAP_ProtocolIE_Container_9520P34 { +} NGAP_ProtocolIE_Container_9574P33_t; +typedef struct NGAP_ProtocolIE_Container_9574P34 { A_SEQUENCE_OF(struct NGAP_HandoverNotifyIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P34_t; -typedef struct NGAP_ProtocolIE_Container_9520P35 { +} NGAP_ProtocolIE_Container_9574P34_t; +typedef struct NGAP_ProtocolIE_Container_9574P35 { A_SEQUENCE_OF(struct NGAP_PathSwitchRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P35_t; -typedef struct NGAP_ProtocolIE_Container_9520P36 { +} NGAP_ProtocolIE_Container_9574P35_t; +typedef struct NGAP_ProtocolIE_Container_9574P36 { A_SEQUENCE_OF(struct NGAP_PathSwitchRequestAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P36_t; -typedef struct NGAP_ProtocolIE_Container_9520P37 { +} NGAP_ProtocolIE_Container_9574P36_t; +typedef struct NGAP_ProtocolIE_Container_9574P37 { A_SEQUENCE_OF(struct NGAP_PathSwitchRequestFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P37_t; -typedef struct NGAP_ProtocolIE_Container_9520P38 { +} NGAP_ProtocolIE_Container_9574P37_t; +typedef struct NGAP_ProtocolIE_Container_9574P38 { A_SEQUENCE_OF(struct NGAP_HandoverCancelIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P38_t; -typedef struct NGAP_ProtocolIE_Container_9520P39 { +} NGAP_ProtocolIE_Container_9574P38_t; +typedef struct NGAP_ProtocolIE_Container_9574P39 { A_SEQUENCE_OF(struct NGAP_HandoverCancelAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P39_t; -typedef struct NGAP_ProtocolIE_Container_9520P40 { +} NGAP_ProtocolIE_Container_9574P39_t; +typedef struct NGAP_ProtocolIE_Container_9574P40 { A_SEQUENCE_OF(struct NGAP_HandoverSuccessIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P40_t; -typedef struct NGAP_ProtocolIE_Container_9520P41 { +} NGAP_ProtocolIE_Container_9574P40_t; +typedef struct NGAP_ProtocolIE_Container_9574P41 { A_SEQUENCE_OF(struct NGAP_UplinkRANEarlyStatusTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P41_t; -typedef struct NGAP_ProtocolIE_Container_9520P42 { +} NGAP_ProtocolIE_Container_9574P41_t; +typedef struct NGAP_ProtocolIE_Container_9574P42 { A_SEQUENCE_OF(struct NGAP_DownlinkRANEarlyStatusTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P42_t; -typedef struct NGAP_ProtocolIE_Container_9520P43 { +} NGAP_ProtocolIE_Container_9574P42_t; +typedef struct NGAP_ProtocolIE_Container_9574P43 { A_SEQUENCE_OF(struct NGAP_UplinkRANStatusTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P43_t; -typedef struct NGAP_ProtocolIE_Container_9520P44 { +} NGAP_ProtocolIE_Container_9574P43_t; +typedef struct NGAP_ProtocolIE_Container_9574P44 { A_SEQUENCE_OF(struct NGAP_DownlinkRANStatusTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P44_t; -typedef struct NGAP_ProtocolIE_Container_9520P45 { +} NGAP_ProtocolIE_Container_9574P44_t; +typedef struct NGAP_ProtocolIE_Container_9574P45 { A_SEQUENCE_OF(struct NGAP_PagingIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P45_t; -typedef struct NGAP_ProtocolIE_Container_9520P46 { +} NGAP_ProtocolIE_Container_9574P45_t; +typedef struct NGAP_ProtocolIE_Container_9574P46 { A_SEQUENCE_OF(struct NGAP_InitialUEMessage_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P46_t; -typedef struct NGAP_ProtocolIE_Container_9520P47 { +} NGAP_ProtocolIE_Container_9574P46_t; +typedef struct NGAP_ProtocolIE_Container_9574P47 { A_SEQUENCE_OF(struct NGAP_DownlinkNASTransport_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P47_t; -typedef struct NGAP_ProtocolIE_Container_9520P48 { +} NGAP_ProtocolIE_Container_9574P47_t; +typedef struct NGAP_ProtocolIE_Container_9574P48 { A_SEQUENCE_OF(struct NGAP_UplinkNASTransport_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P48_t; -typedef struct NGAP_ProtocolIE_Container_9520P49 { +} NGAP_ProtocolIE_Container_9574P48_t; +typedef struct NGAP_ProtocolIE_Container_9574P49 { A_SEQUENCE_OF(struct NGAP_NASNonDeliveryIndication_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P49_t; -typedef struct NGAP_ProtocolIE_Container_9520P50 { +} NGAP_ProtocolIE_Container_9574P49_t; +typedef struct NGAP_ProtocolIE_Container_9574P50 { A_SEQUENCE_OF(struct NGAP_RerouteNASRequest_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P50_t; -typedef struct NGAP_ProtocolIE_Container_9520P51 { +} NGAP_ProtocolIE_Container_9574P50_t; +typedef struct NGAP_ProtocolIE_Container_9574P51 { A_SEQUENCE_OF(struct NGAP_NGSetupRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P51_t; -typedef struct NGAP_ProtocolIE_Container_9520P52 { +} NGAP_ProtocolIE_Container_9574P51_t; +typedef struct NGAP_ProtocolIE_Container_9574P52 { A_SEQUENCE_OF(struct NGAP_NGSetupResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P52_t; -typedef struct NGAP_ProtocolIE_Container_9520P53 { +} NGAP_ProtocolIE_Container_9574P52_t; +typedef struct NGAP_ProtocolIE_Container_9574P53 { A_SEQUENCE_OF(struct NGAP_NGSetupFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P53_t; -typedef struct NGAP_ProtocolIE_Container_9520P54 { +} NGAP_ProtocolIE_Container_9574P53_t; +typedef struct NGAP_ProtocolIE_Container_9574P54 { A_SEQUENCE_OF(struct NGAP_RANConfigurationUpdateIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P54_t; -typedef struct NGAP_ProtocolIE_Container_9520P55 { +} NGAP_ProtocolIE_Container_9574P54_t; +typedef struct NGAP_ProtocolIE_Container_9574P55 { A_SEQUENCE_OF(struct NGAP_RANConfigurationUpdateAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P55_t; -typedef struct NGAP_ProtocolIE_Container_9520P56 { +} NGAP_ProtocolIE_Container_9574P55_t; +typedef struct NGAP_ProtocolIE_Container_9574P56 { A_SEQUENCE_OF(struct NGAP_RANConfigurationUpdateFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P56_t; -typedef struct NGAP_ProtocolIE_Container_9520P57 { +} NGAP_ProtocolIE_Container_9574P56_t; +typedef struct NGAP_ProtocolIE_Container_9574P57 { A_SEQUENCE_OF(struct NGAP_AMFConfigurationUpdateIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P57_t; -typedef struct NGAP_ProtocolIE_Container_9520P58 { +} NGAP_ProtocolIE_Container_9574P57_t; +typedef struct NGAP_ProtocolIE_Container_9574P58 { A_SEQUENCE_OF(struct NGAP_AMFConfigurationUpdateAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P58_t; -typedef struct NGAP_ProtocolIE_Container_9520P59 { +} NGAP_ProtocolIE_Container_9574P58_t; +typedef struct NGAP_ProtocolIE_Container_9574P59 { A_SEQUENCE_OF(struct NGAP_AMFConfigurationUpdateFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P59_t; -typedef struct NGAP_ProtocolIE_Container_9520P60 { +} NGAP_ProtocolIE_Container_9574P59_t; +typedef struct NGAP_ProtocolIE_Container_9574P60 { A_SEQUENCE_OF(struct NGAP_AMFStatusIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P60_t; -typedef struct NGAP_ProtocolIE_Container_9520P61 { +} NGAP_ProtocolIE_Container_9574P60_t; +typedef struct NGAP_ProtocolIE_Container_9574P61 { A_SEQUENCE_OF(struct NGAP_NGResetIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P61_t; -typedef struct NGAP_ProtocolIE_Container_9520P62 { +} NGAP_ProtocolIE_Container_9574P61_t; +typedef struct NGAP_ProtocolIE_Container_9574P62 { A_SEQUENCE_OF(struct NGAP_NGResetAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P62_t; -typedef struct NGAP_ProtocolIE_Container_9520P63 { +} NGAP_ProtocolIE_Container_9574P62_t; +typedef struct NGAP_ProtocolIE_Container_9574P63 { A_SEQUENCE_OF(struct NGAP_ErrorIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P63_t; -typedef struct NGAP_ProtocolIE_Container_9520P64 { +} NGAP_ProtocolIE_Container_9574P63_t; +typedef struct NGAP_ProtocolIE_Container_9574P64 { A_SEQUENCE_OF(struct NGAP_OverloadStartIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P64_t; -typedef struct NGAP_ProtocolIE_Container_9520P65 { +} NGAP_ProtocolIE_Container_9574P64_t; +typedef struct NGAP_ProtocolIE_Container_9574P65 { A_SEQUENCE_OF(struct NGAP_OverloadStopIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P65_t; -typedef struct NGAP_ProtocolIE_Container_9520P66 { +} NGAP_ProtocolIE_Container_9574P65_t; +typedef struct NGAP_ProtocolIE_Container_9574P66 { A_SEQUENCE_OF(struct NGAP_UplinkRANConfigurationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P66_t; -typedef struct NGAP_ProtocolIE_Container_9520P67 { +} NGAP_ProtocolIE_Container_9574P66_t; +typedef struct NGAP_ProtocolIE_Container_9574P67 { A_SEQUENCE_OF(struct NGAP_DownlinkRANConfigurationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P67_t; -typedef struct NGAP_ProtocolIE_Container_9520P68 { +} NGAP_ProtocolIE_Container_9574P67_t; +typedef struct NGAP_ProtocolIE_Container_9574P68 { A_SEQUENCE_OF(struct NGAP_WriteReplaceWarningRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P68_t; -typedef struct NGAP_ProtocolIE_Container_9520P69 { +} NGAP_ProtocolIE_Container_9574P68_t; +typedef struct NGAP_ProtocolIE_Container_9574P69 { A_SEQUENCE_OF(struct NGAP_WriteReplaceWarningResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P69_t; -typedef struct NGAP_ProtocolIE_Container_9520P70 { +} NGAP_ProtocolIE_Container_9574P69_t; +typedef struct NGAP_ProtocolIE_Container_9574P70 { A_SEQUENCE_OF(struct NGAP_PWSCancelRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P70_t; -typedef struct NGAP_ProtocolIE_Container_9520P71 { +} NGAP_ProtocolIE_Container_9574P70_t; +typedef struct NGAP_ProtocolIE_Container_9574P71 { A_SEQUENCE_OF(struct NGAP_PWSCancelResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P71_t; -typedef struct NGAP_ProtocolIE_Container_9520P72 { +} NGAP_ProtocolIE_Container_9574P71_t; +typedef struct NGAP_ProtocolIE_Container_9574P72 { A_SEQUENCE_OF(struct NGAP_PWSRestartIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P72_t; -typedef struct NGAP_ProtocolIE_Container_9520P73 { +} NGAP_ProtocolIE_Container_9574P72_t; +typedef struct NGAP_ProtocolIE_Container_9574P73 { A_SEQUENCE_OF(struct NGAP_PWSFailureIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P73_t; -typedef struct NGAP_ProtocolIE_Container_9520P74 { +} NGAP_ProtocolIE_Container_9574P73_t; +typedef struct NGAP_ProtocolIE_Container_9574P74 { A_SEQUENCE_OF(struct NGAP_DownlinkUEAssociatedNRPPaTransportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P74_t; -typedef struct NGAP_ProtocolIE_Container_9520P75 { +} NGAP_ProtocolIE_Container_9574P74_t; +typedef struct NGAP_ProtocolIE_Container_9574P75 { A_SEQUENCE_OF(struct NGAP_UplinkUEAssociatedNRPPaTransportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P75_t; -typedef struct NGAP_ProtocolIE_Container_9520P76 { +} NGAP_ProtocolIE_Container_9574P75_t; +typedef struct NGAP_ProtocolIE_Container_9574P76 { A_SEQUENCE_OF(struct NGAP_DownlinkNonUEAssociatedNRPPaTransportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P76_t; -typedef struct NGAP_ProtocolIE_Container_9520P77 { +} NGAP_ProtocolIE_Container_9574P76_t; +typedef struct NGAP_ProtocolIE_Container_9574P77 { A_SEQUENCE_OF(struct NGAP_UplinkNonUEAssociatedNRPPaTransportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P77_t; -typedef struct NGAP_ProtocolIE_Container_9520P78 { +} NGAP_ProtocolIE_Container_9574P77_t; +typedef struct NGAP_ProtocolIE_Container_9574P78 { A_SEQUENCE_OF(struct NGAP_TraceStartIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P78_t; -typedef struct NGAP_ProtocolIE_Container_9520P79 { +} NGAP_ProtocolIE_Container_9574P78_t; +typedef struct NGAP_ProtocolIE_Container_9574P79 { A_SEQUENCE_OF(struct NGAP_TraceFailureIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P79_t; -typedef struct NGAP_ProtocolIE_Container_9520P80 { +} NGAP_ProtocolIE_Container_9574P79_t; +typedef struct NGAP_ProtocolIE_Container_9574P80 { A_SEQUENCE_OF(struct NGAP_DeactivateTraceIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P80_t; -typedef struct NGAP_ProtocolIE_Container_9520P81 { +} NGAP_ProtocolIE_Container_9574P80_t; +typedef struct NGAP_ProtocolIE_Container_9574P81 { A_SEQUENCE_OF(struct NGAP_CellTrafficTraceIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P81_t; -typedef struct NGAP_ProtocolIE_Container_9520P82 { +} NGAP_ProtocolIE_Container_9574P81_t; +typedef struct NGAP_ProtocolIE_Container_9574P82 { A_SEQUENCE_OF(struct NGAP_LocationReportingControlIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P82_t; -typedef struct NGAP_ProtocolIE_Container_9520P83 { +} NGAP_ProtocolIE_Container_9574P82_t; +typedef struct NGAP_ProtocolIE_Container_9574P83 { A_SEQUENCE_OF(struct NGAP_LocationReportingFailureIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P83_t; -typedef struct NGAP_ProtocolIE_Container_9520P84 { +} NGAP_ProtocolIE_Container_9574P83_t; +typedef struct NGAP_ProtocolIE_Container_9574P84 { A_SEQUENCE_OF(struct NGAP_LocationReportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P84_t; -typedef struct NGAP_ProtocolIE_Container_9520P85 { +} NGAP_ProtocolIE_Container_9574P84_t; +typedef struct NGAP_ProtocolIE_Container_9574P85 { A_SEQUENCE_OF(struct NGAP_UETNLABindingReleaseRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P85_t; -typedef struct NGAP_ProtocolIE_Container_9520P86 { +} NGAP_ProtocolIE_Container_9574P85_t; +typedef struct NGAP_ProtocolIE_Container_9574P86 { A_SEQUENCE_OF(struct NGAP_UERadioCapabilityInfoIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P86_t; -typedef struct NGAP_ProtocolIE_Container_9520P87 { +} NGAP_ProtocolIE_Container_9574P86_t; +typedef struct NGAP_ProtocolIE_Container_9574P87 { A_SEQUENCE_OF(struct NGAP_UERadioCapabilityCheckRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P87_t; -typedef struct NGAP_ProtocolIE_Container_9520P88 { +} NGAP_ProtocolIE_Container_9574P87_t; +typedef struct NGAP_ProtocolIE_Container_9574P88 { A_SEQUENCE_OF(struct NGAP_UERadioCapabilityCheckResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P88_t; -typedef struct NGAP_ProtocolIE_Container_9520P89 { +} NGAP_ProtocolIE_Container_9574P88_t; +typedef struct NGAP_ProtocolIE_Container_9574P89 { A_SEQUENCE_OF(struct NGAP_SecondaryRATDataUsageReportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P89_t; -typedef struct NGAP_ProtocolIE_Container_9520P90 { +} NGAP_ProtocolIE_Container_9574P89_t; +typedef struct NGAP_ProtocolIE_Container_9574P90 { A_SEQUENCE_OF(struct NGAP_UplinkRIMInformationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P90_t; -typedef struct NGAP_ProtocolIE_Container_9520P91 { +} NGAP_ProtocolIE_Container_9574P90_t; +typedef struct NGAP_ProtocolIE_Container_9574P91 { A_SEQUENCE_OF(struct NGAP_DownlinkRIMInformationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P91_t; -typedef struct NGAP_ProtocolIE_Container_9520P92 { +} NGAP_ProtocolIE_Container_9574P91_t; +typedef struct NGAP_ProtocolIE_Container_9574P92 { A_SEQUENCE_OF(struct NGAP_ConnectionEstablishmentIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P92_t; -typedef struct NGAP_ProtocolIE_Container_9520P93 { +} NGAP_ProtocolIE_Container_9574P92_t; +typedef struct NGAP_ProtocolIE_Container_9574P93 { A_SEQUENCE_OF(struct NGAP_UERadioCapabilityIDMappingRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P93_t; -typedef struct NGAP_ProtocolIE_Container_9520P94 { +} NGAP_ProtocolIE_Container_9574P93_t; +typedef struct NGAP_ProtocolIE_Container_9574P94 { A_SEQUENCE_OF(struct NGAP_UERadioCapabilityIDMappingResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P94_t; -typedef struct NGAP_ProtocolIE_Container_9520P95 { +} NGAP_ProtocolIE_Container_9574P94_t; +typedef struct NGAP_ProtocolIE_Container_9574P95 { A_SEQUENCE_OF(struct NGAP_AMFCPRelocationIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P95_t; -typedef struct NGAP_ProtocolIE_Container_9520P96 { +} NGAP_ProtocolIE_Container_9574P95_t; +typedef struct NGAP_ProtocolIE_Container_9574P96 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceModifyRequestTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P96_t; -typedef struct NGAP_ProtocolIE_Container_9520P97 { +} NGAP_ProtocolIE_Container_9574P96_t; +typedef struct NGAP_ProtocolIE_Container_9574P97 { A_SEQUENCE_OF(struct NGAP_PDUSessionResourceSetupRequestTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} NGAP_ProtocolIE_Container_9520P97_t; +} NGAP_ProtocolIE_Container_9574P97_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P0; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P0_specs_1; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P0_1[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P0_constr_1; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P1; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P1_specs_3; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P1_3[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P1_constr_3; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P2; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P2_specs_5; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P2_5[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P2_constr_5; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P3; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P3_specs_7; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P3_7[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P3_constr_7; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P4; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P4_specs_9; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P4_9[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P4_constr_9; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P5; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P5_specs_11; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P5_11[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P5_constr_11; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P6; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P6_specs_13; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P6_13[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P6_constr_13; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P7; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P7_specs_15; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P7_15[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P7_constr_15; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P8; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P8_specs_17; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P8_17[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P8_constr_17; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P9; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P9_specs_19; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P9_19[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P9_constr_19; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P10; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P10_specs_21; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P10_21[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P10_constr_21; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P11; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P11_specs_23; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P11_23[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P11_constr_23; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P12; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P12_specs_25; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P12_25[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P12_constr_25; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P13; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P13_specs_27; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P13_27[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P13_constr_27; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P14; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P14_specs_29; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P14_29[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P14_constr_29; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P15; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P15_specs_31; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P15_31[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P15_constr_31; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P16; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P16_specs_33; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P16_33[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P16_constr_33; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P17; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P17_specs_35; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P17_35[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P17_constr_35; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P18; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P18_specs_37; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P18_37[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P18_constr_37; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P19; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P19_specs_39; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P19_39[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P19_constr_39; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P20; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P20_specs_41; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P20_41[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P20_constr_41; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P21; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P21_specs_43; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P21_43[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P21_constr_43; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P22; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P22_specs_45; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P22_45[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P22_constr_45; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P23; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P23_specs_47; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P23_47[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P23_constr_47; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P24; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P24_specs_49; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P24_49[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P24_constr_49; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P25; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P25_specs_51; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P25_51[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P25_constr_51; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P26; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P26_specs_53; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P26_53[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P26_constr_53; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P27; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P27_specs_55; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P27_55[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P27_constr_55; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P28; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P28_specs_57; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P28_57[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P28_constr_57; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P29; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P29_specs_59; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P29_59[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P29_constr_59; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P30; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P30_specs_61; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P30_61[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P30_constr_61; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P31; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P31_specs_63; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P31_63[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P31_constr_63; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P32; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P32_specs_65; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P32_65[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P32_constr_65; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P33; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P33_specs_67; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P33_67[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P33_constr_67; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P34; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P34_specs_69; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P34_69[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P34_constr_69; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P35; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P35_specs_71; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P35_71[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P35_constr_71; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P36; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P36_specs_73; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P36_73[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P36_constr_73; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P37; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P37_specs_75; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P37_75[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P37_constr_75; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P38; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P38_specs_77; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P38_77[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P38_constr_77; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P39; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P39_specs_79; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P39_79[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P39_constr_79; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P40; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P40_specs_81; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P40_81[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P40_constr_81; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P41; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P41_specs_83; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P41_83[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P41_constr_83; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P42; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P42_specs_85; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P42_85[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P42_constr_85; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P43; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P43_specs_87; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P43_87[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P43_constr_87; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P44; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P44_specs_89; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P44_89[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P44_constr_89; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P45; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P45_specs_91; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P45_91[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P45_constr_91; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P46; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P46_specs_93; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P46_93[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P46_constr_93; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P47; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P47_specs_95; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P47_95[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P47_constr_95; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P48; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P48_specs_97; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P48_97[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P48_constr_97; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P49; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P49_specs_99; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P49_99[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P49_constr_99; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P50; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P50_specs_101; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P50_101[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P50_constr_101; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P51; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P51_specs_103; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P51_103[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P51_constr_103; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P52; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P52_specs_105; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P52_105[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P52_constr_105; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P53; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P53_specs_107; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P53_107[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P53_constr_107; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P54; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P54_specs_109; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P54_109[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P54_constr_109; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P55; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P55_specs_111; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P55_111[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P55_constr_111; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P56; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P56_specs_113; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P56_113[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P56_constr_113; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P57; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P57_specs_115; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P57_115[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P57_constr_115; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P58; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P58_specs_117; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P58_117[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P58_constr_117; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P59; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P59_specs_119; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P59_119[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P59_constr_119; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P60; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P60_specs_121; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P60_121[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P60_constr_121; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P61; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P61_specs_123; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P61_123[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P61_constr_123; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P62; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P62_specs_125; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P62_125[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P62_constr_125; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P63; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P63_specs_127; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P63_127[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P63_constr_127; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P64; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P64_specs_129; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P64_129[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P64_constr_129; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P65; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P65_specs_131; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P65_131[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P65_constr_131; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P66; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P66_specs_133; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P66_133[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P66_constr_133; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P67; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P67_specs_135; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P67_135[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P67_constr_135; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P68; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P68_specs_137; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P68_137[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P68_constr_137; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P69; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P69_specs_139; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P69_139[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P69_constr_139; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P70; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P70_specs_141; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P70_141[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P70_constr_141; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P71; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P71_specs_143; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P71_143[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P71_constr_143; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P72; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P72_specs_145; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P72_145[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P72_constr_145; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P73; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P73_specs_147; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P73_147[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P73_constr_147; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P74; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P74_specs_149; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P74_149[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P74_constr_149; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P75; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P75_specs_151; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P75_151[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P75_constr_151; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P76; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P76_specs_153; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P76_153[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P76_constr_153; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P77; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P77_specs_155; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P77_155[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P77_constr_155; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P78; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P78_specs_157; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P78_157[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P78_constr_157; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P79; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P79_specs_159; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P79_159[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P79_constr_159; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P80; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P80_specs_161; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P80_161[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P80_constr_161; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P81; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P81_specs_163; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P81_163[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P81_constr_163; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P82; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P82_specs_165; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P82_165[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P82_constr_165; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P83; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P83_specs_167; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P83_167[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P83_constr_167; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P84; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P84_specs_169; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P84_169[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P84_constr_169; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P85; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P85_specs_171; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P85_171[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P85_constr_171; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P86; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P86_specs_173; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P86_173[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P86_constr_173; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P87; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P87_specs_175; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P87_175[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P87_constr_175; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P88; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P88_specs_177; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P88_177[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P88_constr_177; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P89; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P89_specs_179; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P89_179[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P89_constr_179; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P90; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P90_specs_181; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P90_181[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P90_constr_181; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P91; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P91_specs_183; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P91_183[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P91_constr_183; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P92; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P92_specs_185; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P92_185[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P92_constr_185; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P93; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P93_specs_187; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P93_187[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P93_constr_187; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P94; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P94_specs_189; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P94_189[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P94_constr_189; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P95; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P95_specs_191; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P95_191[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P95_constr_191; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P96; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P96_specs_193; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P96_193[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P96_constr_193; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9520P97; -extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9520P97_specs_195; -extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9520P97_195[1]; -extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9520P97_constr_195; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P0; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P0_specs_1; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P0_1[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P0_constr_1; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P1; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P1_specs_3; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P1_3[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P1_constr_3; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P2; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P2_specs_5; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P2_5[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P2_constr_5; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P3; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P3_specs_7; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P3_7[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P3_constr_7; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P4; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P4_specs_9; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P4_9[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P4_constr_9; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P5; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P5_specs_11; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P5_11[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P5_constr_11; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P6; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P6_specs_13; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P6_13[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P6_constr_13; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P7; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P7_specs_15; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P7_15[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P7_constr_15; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P8; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P8_specs_17; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P8_17[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P8_constr_17; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P9; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P9_specs_19; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P9_19[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P9_constr_19; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P10; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P10_specs_21; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P10_21[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P10_constr_21; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P11; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P11_specs_23; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P11_23[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P11_constr_23; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P12; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P12_specs_25; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P12_25[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P12_constr_25; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P13; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P13_specs_27; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P13_27[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P13_constr_27; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P14; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P14_specs_29; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P14_29[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P14_constr_29; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P15; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P15_specs_31; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P15_31[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P15_constr_31; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P16; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P16_specs_33; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P16_33[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P16_constr_33; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P17; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P17_specs_35; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P17_35[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P17_constr_35; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P18; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P18_specs_37; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P18_37[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P18_constr_37; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P19; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P19_specs_39; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P19_39[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P19_constr_39; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P20; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P20_specs_41; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P20_41[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P20_constr_41; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P21; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P21_specs_43; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P21_43[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P21_constr_43; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P22; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P22_specs_45; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P22_45[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P22_constr_45; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P23; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P23_specs_47; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P23_47[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P23_constr_47; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P24; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P24_specs_49; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P24_49[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P24_constr_49; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P25; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P25_specs_51; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P25_51[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P25_constr_51; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P26; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P26_specs_53; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P26_53[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P26_constr_53; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P27; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P27_specs_55; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P27_55[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P27_constr_55; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P28; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P28_specs_57; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P28_57[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P28_constr_57; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P29; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P29_specs_59; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P29_59[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P29_constr_59; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P30; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P30_specs_61; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P30_61[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P30_constr_61; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P31; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P31_specs_63; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P31_63[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P31_constr_63; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P32; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P32_specs_65; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P32_65[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P32_constr_65; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P33; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P33_specs_67; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P33_67[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P33_constr_67; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P34; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P34_specs_69; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P34_69[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P34_constr_69; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P35; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P35_specs_71; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P35_71[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P35_constr_71; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P36; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P36_specs_73; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P36_73[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P36_constr_73; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P37; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P37_specs_75; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P37_75[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P37_constr_75; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P38; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P38_specs_77; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P38_77[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P38_constr_77; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P39; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P39_specs_79; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P39_79[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P39_constr_79; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P40; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P40_specs_81; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P40_81[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P40_constr_81; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P41; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P41_specs_83; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P41_83[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P41_constr_83; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P42; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P42_specs_85; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P42_85[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P42_constr_85; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P43; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P43_specs_87; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P43_87[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P43_constr_87; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P44; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P44_specs_89; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P44_89[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P44_constr_89; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P45; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P45_specs_91; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P45_91[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P45_constr_91; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P46; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P46_specs_93; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P46_93[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P46_constr_93; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P47; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P47_specs_95; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P47_95[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P47_constr_95; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P48; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P48_specs_97; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P48_97[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P48_constr_97; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P49; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P49_specs_99; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P49_99[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P49_constr_99; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P50; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P50_specs_101; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P50_101[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P50_constr_101; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P51; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P51_specs_103; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P51_103[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P51_constr_103; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P52; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P52_specs_105; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P52_105[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P52_constr_105; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P53; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P53_specs_107; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P53_107[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P53_constr_107; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P54; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P54_specs_109; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P54_109[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P54_constr_109; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P55; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P55_specs_111; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P55_111[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P55_constr_111; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P56; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P56_specs_113; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P56_113[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P56_constr_113; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P57; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P57_specs_115; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P57_115[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P57_constr_115; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P58; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P58_specs_117; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P58_117[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P58_constr_117; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P59; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P59_specs_119; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P59_119[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P59_constr_119; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P60; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P60_specs_121; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P60_121[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P60_constr_121; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P61; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P61_specs_123; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P61_123[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P61_constr_123; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P62; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P62_specs_125; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P62_125[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P62_constr_125; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P63; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P63_specs_127; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P63_127[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P63_constr_127; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P64; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P64_specs_129; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P64_129[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P64_constr_129; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P65; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P65_specs_131; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P65_131[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P65_constr_131; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P66; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P66_specs_133; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P66_133[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P66_constr_133; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P67; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P67_specs_135; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P67_135[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P67_constr_135; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P68; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P68_specs_137; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P68_137[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P68_constr_137; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P69; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P69_specs_139; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P69_139[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P69_constr_139; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P70; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P70_specs_141; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P70_141[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P70_constr_141; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P71; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P71_specs_143; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P71_143[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P71_constr_143; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P72; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P72_specs_145; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P72_145[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P72_constr_145; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P73; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P73_specs_147; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P73_147[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P73_constr_147; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P74; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P74_specs_149; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P74_149[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P74_constr_149; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P75; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P75_specs_151; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P75_151[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P75_constr_151; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P76; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P76_specs_153; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P76_153[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P76_constr_153; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P77; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P77_specs_155; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P77_155[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P77_constr_155; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P78; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P78_specs_157; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P78_157[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P78_constr_157; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P79; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P79_specs_159; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P79_159[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P79_constr_159; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P80; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P80_specs_161; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P80_161[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P80_constr_161; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P81; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P81_specs_163; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P81_163[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P81_constr_163; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P82; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P82_specs_165; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P82_165[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P82_constr_165; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P83; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P83_specs_167; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P83_167[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P83_constr_167; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P84; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P84_specs_169; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P84_169[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P84_constr_169; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P85; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P85_specs_171; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P85_171[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P85_constr_171; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P86; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P86_specs_173; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P86_173[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P86_constr_173; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P87; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P87_specs_175; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P87_175[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P87_constr_175; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P88; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P88_specs_177; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P88_177[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P88_constr_177; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P89; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P89_specs_179; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P89_179[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P89_constr_179; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P90; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P90_specs_181; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P90_181[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P90_constr_181; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P91; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P91_specs_183; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P91_183[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P91_constr_183; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P92; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P92_specs_185; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P92_185[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P92_constr_185; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P93; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P93_specs_187; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P93_187[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P93_constr_187; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P94; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P94_specs_189; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P94_189[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P94_constr_189; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P95; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P95_specs_191; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P95_191[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P95_constr_191; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P96; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P96_specs_193; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P96_193[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P96_constr_193; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_Container_9574P97; +extern asn_SET_OF_specifics_t asn_SPC_NGAP_ProtocolIE_Container_9574P97_specs_195; +extern asn_TYPE_member_t asn_MBR_NGAP_ProtocolIE_Container_9574P97_195[1]; +extern asn_per_constraints_t asn_PER_type_NGAP_ProtocolIE_Container_9574P97_constr_195; #ifdef __cplusplus } diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-ContainerList.c b/lib/asn1c/ngap/NGAP_ProtocolIE-ContainerList.c index f8b1102c3..6815c23ad 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-ContainerList.c +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-ContainerList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-ContainerList.h b/lib/asn1c/ngap/NGAP_ProtocolIE-ContainerList.h index 29aeb76c8..d9a261a74 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-ContainerList.h +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-ContainerList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-Field.c b/lib/asn1c/ngap/NGAP_ProtocolIE-Field.c index 04990b6f7..20a33d569 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-Field.c +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-Field.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -45,64 +45,64 @@ static const asn_ioc_cell_t asn_IOS_NGAP_GlobalRANNodeID_ExtIEs_1_rows[] = { static const asn_ioc_set_t asn_IOS_NGAP_GlobalRANNodeID_ExtIEs_1[] = { { 3, 4, asn_IOS_NGAP_GlobalRANNodeID_ExtIEs_1_rows } }; -static const long asn_VAL_575_NGAP_id_SONInformationReport = 252; -static const long asn_VAL_575_NGAP_ignore = 1; -static const long asn_VAL_575_NGAP_mandatory = 2; +static const long asn_VAL_577_NGAP_id_SONInformationReport = 252; +static const long asn_VAL_577_NGAP_ignore = 1; +static const long asn_VAL_577_NGAP_mandatory = 2; static const asn_ioc_cell_t asn_IOS_NGAP_SONInformation_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_575_NGAP_id_SONInformationReport }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_575_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_577_NGAP_id_SONInformationReport }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_577_NGAP_ignore }, { "&Value", aioc__type, &asn_DEF_NGAP_SONInformationReport }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_575_NGAP_mandatory } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_577_NGAP_mandatory } }; static const asn_ioc_set_t asn_IOS_NGAP_SONInformation_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_SONInformation_ExtIEs_1_rows } }; -static const long asn_VAL_576_NGAP_id_TargetRNC_ID = 178; -static const long asn_VAL_576_NGAP_reject = 0; -static const long asn_VAL_576_NGAP_mandatory = 2; +static const long asn_VAL_578_NGAP_id_TargetRNC_ID = 178; +static const long asn_VAL_578_NGAP_reject = 0; +static const long asn_VAL_578_NGAP_mandatory = 2; static const asn_ioc_cell_t asn_IOS_NGAP_TargetID_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_576_NGAP_id_TargetRNC_ID }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_576_NGAP_reject }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_578_NGAP_id_TargetRNC_ID }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_578_NGAP_reject }, { "&Value", aioc__type, &asn_DEF_NGAP_TargetRNC_ID }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_576_NGAP_mandatory } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_578_NGAP_mandatory } }; static const asn_ioc_set_t asn_IOS_NGAP_TargetID_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_TargetID_ExtIEs_1_rows } }; -static const long asn_VAL_577_NGAP_id_UserLocationInformationTNGF = 244; -static const long asn_VAL_577_NGAP_ignore = 1; -static const long asn_VAL_577_NGAP_mandatory = 2; -static const long asn_VAL_578_NGAP_id_UserLocationInformationTWIF = 248; -static const long asn_VAL_578_NGAP_ignore = 1; -static const long asn_VAL_578_NGAP_mandatory = 2; -static const long asn_VAL_579_NGAP_id_UserLocationInformationW_AGF = 243; +static const long asn_VAL_579_NGAP_id_UserLocationInformationTNGF = 244; static const long asn_VAL_579_NGAP_ignore = 1; static const long asn_VAL_579_NGAP_mandatory = 2; +static const long asn_VAL_580_NGAP_id_UserLocationInformationTWIF = 248; +static const long asn_VAL_580_NGAP_ignore = 1; +static const long asn_VAL_580_NGAP_mandatory = 2; +static const long asn_VAL_581_NGAP_id_UserLocationInformationW_AGF = 243; +static const long asn_VAL_581_NGAP_ignore = 1; +static const long asn_VAL_581_NGAP_mandatory = 2; static const asn_ioc_cell_t asn_IOS_NGAP_UserLocationInformation_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_577_NGAP_id_UserLocationInformationTNGF }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_577_NGAP_ignore }, - { "&Value", aioc__type, &asn_DEF_NGAP_UserLocationInformationTNGF }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_577_NGAP_mandatory }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_578_NGAP_id_UserLocationInformationTWIF }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_578_NGAP_ignore }, - { "&Value", aioc__type, &asn_DEF_NGAP_UserLocationInformationTWIF }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_578_NGAP_mandatory }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_579_NGAP_id_UserLocationInformationW_AGF }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_579_NGAP_id_UserLocationInformationTNGF }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_579_NGAP_ignore }, + { "&Value", aioc__type, &asn_DEF_NGAP_UserLocationInformationTNGF }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_579_NGAP_mandatory }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_580_NGAP_id_UserLocationInformationTWIF }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_580_NGAP_ignore }, + { "&Value", aioc__type, &asn_DEF_NGAP_UserLocationInformationTWIF }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_580_NGAP_mandatory }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_581_NGAP_id_UserLocationInformationW_AGF }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_581_NGAP_ignore }, { "&Value", aioc__type, &asn_DEF_NGAP_UserLocationInformationW_AGF }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_579_NGAP_mandatory } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_581_NGAP_mandatory } }; static const asn_ioc_set_t asn_IOS_NGAP_UserLocationInformation_ExtIEs_1[] = { { 3, 4, asn_IOS_NGAP_UserLocationInformation_ExtIEs_1_rows } }; -static const long asn_VAL_580_NGAP_id_GlobalCable_ID = 275; -static const long asn_VAL_580_NGAP_ignore = 1; -static const long asn_VAL_580_NGAP_mandatory = 2; +static const long asn_VAL_582_NGAP_id_GlobalCable_ID = 275; +static const long asn_VAL_582_NGAP_ignore = 1; +static const long asn_VAL_582_NGAP_mandatory = 2; static const asn_ioc_cell_t asn_IOS_NGAP_UserLocationInformationW_AGF_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_580_NGAP_id_GlobalCable_ID }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_580_NGAP_ignore }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_582_NGAP_id_GlobalCable_ID }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_582_NGAP_ignore }, { "&Value", aioc__type, &asn_DEF_NGAP_GlobalCable_ID }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_580_NGAP_mandatory } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_582_NGAP_mandatory } }; static const asn_ioc_set_t asn_IOS_NGAP_UserLocationInformationW_AGF_ExtIEs_1[] = { { 1, 4, asn_IOS_NGAP_UserLocationInformationW_AGF_ExtIEs_1_rows } @@ -4438,6 +4438,12 @@ static const long asn_VAL_559_NGAP_optional = 0; static const long asn_VAL_560_NGAP_id_RedundantCommonNetworkInstance = 190; static const long asn_VAL_560_NGAP_ignore = 1; static const long asn_VAL_560_NGAP_optional = 0; +static const long asn_VAL_561_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; +static const long asn_VAL_561_NGAP_ignore = 1; +static const long asn_VAL_561_NGAP_optional = 0; +static const long asn_VAL_562_NGAP_id_SecurityIndication = 138; +static const long asn_VAL_562_NGAP_ignore = 1; +static const long asn_VAL_562_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceModifyRequestTransferIEs_1_rows[] = { { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_552_NGAP_id_PDUSessionAggregateMaximumBitRate }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_552_NGAP_reject }, @@ -4474,110 +4480,118 @@ static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceModifyRequestTransfer { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_560_NGAP_id_RedundantCommonNetworkInstance }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_560_NGAP_ignore }, { "&Value", aioc__type, &asn_DEF_NGAP_CommonNetworkInstance }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_560_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_560_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_561_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_561_NGAP_ignore }, + { "&Value", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_561_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_562_NGAP_id_SecurityIndication }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_562_NGAP_ignore }, + { "&Value", aioc__type, &asn_DEF_NGAP_SecurityIndication }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_562_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceModifyRequestTransferIEs_1[] = { - { 9, 4, asn_IOS_NGAP_PDUSessionResourceModifyRequestTransferIEs_1_rows } + { 11, 4, asn_IOS_NGAP_PDUSessionResourceModifyRequestTransferIEs_1_rows } }; -static const long asn_VAL_561_NGAP_id_PDUSessionAggregateMaximumBitRate = 130; -static const long asn_VAL_561_NGAP_reject = 0; -static const long asn_VAL_561_NGAP_optional = 0; -static const long asn_VAL_562_NGAP_id_UL_NGU_UP_TNLInformation = 139; -static const long asn_VAL_562_NGAP_reject = 0; -static const long asn_VAL_562_NGAP_mandatory = 2; -static const long asn_VAL_563_NGAP_id_AdditionalUL_NGU_UP_TNLInformation = 126; +static const long asn_VAL_563_NGAP_id_PDUSessionAggregateMaximumBitRate = 130; static const long asn_VAL_563_NGAP_reject = 0; static const long asn_VAL_563_NGAP_optional = 0; -static const long asn_VAL_564_NGAP_id_DataForwardingNotPossible = 127; +static const long asn_VAL_564_NGAP_id_UL_NGU_UP_TNLInformation = 139; static const long asn_VAL_564_NGAP_reject = 0; -static const long asn_VAL_564_NGAP_optional = 0; -static const long asn_VAL_565_NGAP_id_PDUSessionType = 134; +static const long asn_VAL_564_NGAP_mandatory = 2; +static const long asn_VAL_565_NGAP_id_AdditionalUL_NGU_UP_TNLInformation = 126; static const long asn_VAL_565_NGAP_reject = 0; -static const long asn_VAL_565_NGAP_mandatory = 2; -static const long asn_VAL_566_NGAP_id_SecurityIndication = 138; +static const long asn_VAL_565_NGAP_optional = 0; +static const long asn_VAL_566_NGAP_id_DataForwardingNotPossible = 127; static const long asn_VAL_566_NGAP_reject = 0; static const long asn_VAL_566_NGAP_optional = 0; -static const long asn_VAL_567_NGAP_id_NetworkInstance = 129; +static const long asn_VAL_567_NGAP_id_PDUSessionType = 134; static const long asn_VAL_567_NGAP_reject = 0; -static const long asn_VAL_567_NGAP_optional = 0; -static const long asn_VAL_568_NGAP_id_QosFlowSetupRequestList = 136; +static const long asn_VAL_567_NGAP_mandatory = 2; +static const long asn_VAL_568_NGAP_id_SecurityIndication = 138; static const long asn_VAL_568_NGAP_reject = 0; -static const long asn_VAL_568_NGAP_mandatory = 2; -static const long asn_VAL_569_NGAP_id_CommonNetworkInstance = 166; -static const long asn_VAL_569_NGAP_ignore = 1; +static const long asn_VAL_568_NGAP_optional = 0; +static const long asn_VAL_569_NGAP_id_NetworkInstance = 129; +static const long asn_VAL_569_NGAP_reject = 0; static const long asn_VAL_569_NGAP_optional = 0; -static const long asn_VAL_570_NGAP_id_DirectForwardingPathAvailability = 22; -static const long asn_VAL_570_NGAP_ignore = 1; -static const long asn_VAL_570_NGAP_optional = 0; -static const long asn_VAL_571_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; +static const long asn_VAL_570_NGAP_id_QosFlowSetupRequestList = 136; +static const long asn_VAL_570_NGAP_reject = 0; +static const long asn_VAL_570_NGAP_mandatory = 2; +static const long asn_VAL_571_NGAP_id_CommonNetworkInstance = 166; static const long asn_VAL_571_NGAP_ignore = 1; static const long asn_VAL_571_NGAP_optional = 0; -static const long asn_VAL_572_NGAP_id_AdditionalRedundantUL_NGU_UP_TNLInformation = 186; +static const long asn_VAL_572_NGAP_id_DirectForwardingPathAvailability = 22; static const long asn_VAL_572_NGAP_ignore = 1; static const long asn_VAL_572_NGAP_optional = 0; -static const long asn_VAL_573_NGAP_id_RedundantCommonNetworkInstance = 190; +static const long asn_VAL_573_NGAP_id_RedundantUL_NGU_UP_TNLInformation = 195; static const long asn_VAL_573_NGAP_ignore = 1; static const long asn_VAL_573_NGAP_optional = 0; -static const long asn_VAL_574_NGAP_id_RedundantPDUSessionInformation = 197; +static const long asn_VAL_574_NGAP_id_AdditionalRedundantUL_NGU_UP_TNLInformation = 186; static const long asn_VAL_574_NGAP_ignore = 1; static const long asn_VAL_574_NGAP_optional = 0; +static const long asn_VAL_575_NGAP_id_RedundantCommonNetworkInstance = 190; +static const long asn_VAL_575_NGAP_ignore = 1; +static const long asn_VAL_575_NGAP_optional = 0; +static const long asn_VAL_576_NGAP_id_RedundantPDUSessionInformation = 197; +static const long asn_VAL_576_NGAP_ignore = 1; +static const long asn_VAL_576_NGAP_optional = 0; static const asn_ioc_cell_t asn_IOS_NGAP_PDUSessionResourceSetupRequestTransferIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_561_NGAP_id_PDUSessionAggregateMaximumBitRate }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_561_NGAP_reject }, - { "&Value", aioc__type, &asn_DEF_NGAP_PDUSessionAggregateMaximumBitRate }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_561_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_562_NGAP_id_UL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_562_NGAP_reject }, - { "&Value", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_562_NGAP_mandatory }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_563_NGAP_id_AdditionalUL_NGU_UP_TNLInformation }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_563_NGAP_id_PDUSessionAggregateMaximumBitRate }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_563_NGAP_reject }, - { "&Value", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationList }, + { "&Value", aioc__type, &asn_DEF_NGAP_PDUSessionAggregateMaximumBitRate }, { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_563_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_564_NGAP_id_DataForwardingNotPossible }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_564_NGAP_id_UL_NGU_UP_TNLInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_564_NGAP_reject }, - { "&Value", aioc__type, &asn_DEF_NGAP_DataForwardingNotPossible }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_564_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_565_NGAP_id_PDUSessionType }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_565_NGAP_reject }, - { "&Value", aioc__type, &asn_DEF_NGAP_PDUSessionType }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_565_NGAP_mandatory }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_566_NGAP_id_SecurityIndication }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_566_NGAP_reject }, - { "&Value", aioc__type, &asn_DEF_NGAP_SecurityIndication }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_566_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_567_NGAP_id_NetworkInstance }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_567_NGAP_reject }, - { "&Value", aioc__type, &asn_DEF_NGAP_NetworkInstance }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_567_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_568_NGAP_id_QosFlowSetupRequestList }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_568_NGAP_reject }, - { "&Value", aioc__type, &asn_DEF_NGAP_QosFlowSetupRequestList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_568_NGAP_mandatory }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_569_NGAP_id_CommonNetworkInstance }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_569_NGAP_ignore }, - { "&Value", aioc__type, &asn_DEF_NGAP_CommonNetworkInstance }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_569_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_570_NGAP_id_DirectForwardingPathAvailability }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_570_NGAP_ignore }, - { "&Value", aioc__type, &asn_DEF_NGAP_DirectForwardingPathAvailability }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_570_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_571_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_571_NGAP_ignore }, { "&Value", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_571_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_572_NGAP_id_AdditionalRedundantUL_NGU_UP_TNLInformation }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_572_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_564_NGAP_mandatory }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_565_NGAP_id_AdditionalUL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_565_NGAP_reject }, { "&Value", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationList }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_572_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_573_NGAP_id_RedundantCommonNetworkInstance }, - { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_573_NGAP_ignore }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_565_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_566_NGAP_id_DataForwardingNotPossible }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_566_NGAP_reject }, + { "&Value", aioc__type, &asn_DEF_NGAP_DataForwardingNotPossible }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_566_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_567_NGAP_id_PDUSessionType }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_567_NGAP_reject }, + { "&Value", aioc__type, &asn_DEF_NGAP_PDUSessionType }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_567_NGAP_mandatory }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_568_NGAP_id_SecurityIndication }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_568_NGAP_reject }, + { "&Value", aioc__type, &asn_DEF_NGAP_SecurityIndication }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_568_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_569_NGAP_id_NetworkInstance }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_569_NGAP_reject }, + { "&Value", aioc__type, &asn_DEF_NGAP_NetworkInstance }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_569_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_570_NGAP_id_QosFlowSetupRequestList }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_570_NGAP_reject }, + { "&Value", aioc__type, &asn_DEF_NGAP_QosFlowSetupRequestList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_570_NGAP_mandatory }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_571_NGAP_id_CommonNetworkInstance }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_571_NGAP_ignore }, { "&Value", aioc__type, &asn_DEF_NGAP_CommonNetworkInstance }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_571_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_572_NGAP_id_DirectForwardingPathAvailability }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_572_NGAP_ignore }, + { "&Value", aioc__type, &asn_DEF_NGAP_DirectForwardingPathAvailability }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_572_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_573_NGAP_id_RedundantUL_NGU_UP_TNLInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_573_NGAP_ignore }, + { "&Value", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformation }, { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_573_NGAP_optional }, - { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_574_NGAP_id_RedundantPDUSessionInformation }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_574_NGAP_id_AdditionalRedundantUL_NGU_UP_TNLInformation }, { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_574_NGAP_ignore }, + { "&Value", aioc__type, &asn_DEF_NGAP_UPTransportLayerInformationList }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_574_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_575_NGAP_id_RedundantCommonNetworkInstance }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_575_NGAP_ignore }, + { "&Value", aioc__type, &asn_DEF_NGAP_CommonNetworkInstance }, + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_575_NGAP_optional }, + { "&id", aioc__value, &asn_DEF_NGAP_ProtocolIE_ID, &asn_VAL_576_NGAP_id_RedundantPDUSessionInformation }, + { "&criticality", aioc__value, &asn_DEF_NGAP_Criticality, &asn_VAL_576_NGAP_ignore }, { "&Value", aioc__type, &asn_DEF_NGAP_RedundantPDUSessionInformation }, - { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_574_NGAP_optional } + { "&presence", aioc__value, &asn_DEF_NGAP_Presence, &asn_VAL_576_NGAP_optional } }; static const asn_ioc_set_t asn_IOS_NGAP_PDUSessionResourceSetupRequestTransferIEs_1[] = { { 14, 4, asn_IOS_NGAP_PDUSessionResourceSetupRequestTransferIEs_1_rows } @@ -52258,19 +52272,56 @@ static asn_TYPE_member_t asn_MBR_NGAP_value_596[] = { 0, 0, /* No default value */ "CommonNetworkInstance" }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceModifyRequestTransferIEs__value, choice.UPTransportLayerInformation), + -1 /* Ambiguous tag (CHOICE?) */, + 0, + &asn_DEF_NGAP_UPTransportLayerInformation, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "UPTransportLayerInformation" + }, + { ATF_NOFLAGS, 0, offsetof(struct NGAP_PDUSessionResourceModifyRequestTransferIEs__value, choice.SecurityIndication), + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_SecurityIndication, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "SecurityIndication" + }, }; -static const unsigned asn_MAP_NGAP_value_to_canonical_596[] = { 2, 6, 8, 0, 1, 3, 4, 5, 7 }; -static const unsigned asn_MAP_NGAP_value_from_canonical_596[] = { 3, 4, 0, 5, 6, 7, 1, 8, 2 }; +static const unsigned asn_MAP_NGAP_value_to_canonical_596[] = { 2, 6, 8, 0, 1, 3, 4, 5, 7, 10, 9 }; +static const unsigned asn_MAP_NGAP_value_from_canonical_596[] = { 3, 4, 0, 5, 6, 7, 1, 8, 2, 10, 9 }; static const asn_TYPE_tag2member_t asn_MAP_NGAP_value_tag2el_596[] = { { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, 0, 0 }, /* NetworkInstance */ { (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 6, 0, 1 }, /* CommonNetworkInstance */ { (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 8, -1, 0 }, /* CommonNetworkInstance */ - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 5 }, /* PDUSessionAggregateMaximumBitRate */ - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, -1, 4 }, /* UL-NGU-UP-TNLModifyList */ - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 3, -2, 3 }, /* QosFlowAddOrModifyRequestList */ - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 4, -3, 2 }, /* QosFlowListWithCause */ - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 5, -4, 1 }, /* UPTransportLayerInformationList */ - { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 7, -5, 0 } /* UPTransportLayerInformationList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 6 }, /* PDUSessionAggregateMaximumBitRate */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, -1, 5 }, /* UL-NGU-UP-TNLModifyList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 3, -2, 4 }, /* QosFlowAddOrModifyRequestList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 4, -3, 3 }, /* QosFlowListWithCause */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 5, -4, 2 }, /* UPTransportLayerInformationList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 7, -5, 1 }, /* UPTransportLayerInformationList */ + { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 10, -6, 0 }, /* SecurityIndication */ + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 9, 0, 0 }, /* gTPTunnel */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 9, 0, 0 } /* choice-Extensions */ }; static asn_CHOICE_specifics_t asn_SPC_NGAP_value_specs_596 = { sizeof(struct NGAP_PDUSessionResourceModifyRequestTransferIEs__value), @@ -52278,7 +52329,7 @@ static asn_CHOICE_specifics_t asn_SPC_NGAP_value_specs_596 = { offsetof(struct NGAP_PDUSessionResourceModifyRequestTransferIEs__value, present), sizeof(((struct NGAP_PDUSessionResourceModifyRequestTransferIEs__value *)0)->present), asn_MAP_NGAP_value_tag2el_596, - 9, /* Count of tags in the map */ + 12, /* Count of tags in the map */ asn_MAP_NGAP_value_to_canonical_596, asn_MAP_NGAP_value_from_canonical_596, -1 /* Extensions start */ @@ -52302,7 +52353,7 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_value_596 = { OPEN_TYPE_constraint }, asn_MBR_NGAP_value_596, - 9, /* Elements count */ + 11, /* Elements count */ &asn_SPC_NGAP_value_specs_596 /* Additional specs */ }; diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-Field.h b/lib/asn1c/ngap/NGAP_ProtocolIE-Field.h index 6b923c7d9..14fc61c7a 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-Field.h +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-Field.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -219,9 +219,9 @@ #include "NGAP_UPTransportLayerInformationList.h" #include "NGAP_CommonNetworkInstance.h" #include "NGAP_UPTransportLayerInformation.h" +#include "NGAP_SecurityIndication.h" #include "NGAP_DataForwardingNotPossible.h" #include "NGAP_PDUSessionType.h" -#include "NGAP_SecurityIndication.h" #include "NGAP_QosFlowSetupRequestList.h" #include "NGAP_RedundantPDUSessionInformation.h" @@ -1288,7 +1288,9 @@ typedef enum NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR { NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR_UPTransportLayerInformationList, NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR_CommonNetworkInstance, NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR_UPTransportLayerInformationList_1, - NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR_CommonNetworkInstance_1 + NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR_CommonNetworkInstance_1, + NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR_UPTransportLayerInformation, + NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR_SecurityIndication } NGAP_PDUSessionResourceModifyRequestTransferIEs__value_PR; typedef enum NGAP_PDUSessionResourceSetupRequestTransferIEs__value_PR { NGAP_PDUSessionResourceSetupRequestTransferIEs__value_PR_NOTHING, /* No components present */ @@ -4101,6 +4103,8 @@ typedef struct NGAP_PDUSessionResourceModifyRequestTransferIEs { NGAP_CommonNetworkInstance_t CommonNetworkInstance; NGAP_UPTransportLayerInformationList_t UPTransportLayerInformationList_1; NGAP_CommonNetworkInstance_t CommonNetworkInstance_1; + NGAP_UPTransportLayerInformation_t UPTransportLayerInformation; + NGAP_SecurityIndication_t SecurityIndication; } choice; /* Context for parsing across buffer boundaries */ diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-ID.c b/lib/asn1c/ngap/NGAP_ProtocolIE-ID.c index e05e715c2..433a9eadf 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-ID.c +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-ID.h b/lib/asn1c/ngap/NGAP_ProtocolIE-ID.h index 5f8c194a8..835e097c3 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-ID.h +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -306,6 +306,12 @@ per_type_encoder_f NGAP_ProtocolIE_ID_encode_aper; #define NGAP_ProtocolIE_ID_id_GlobalCable_ID ((NGAP_ProtocolIE_ID_t)275) #define NGAP_ProtocolIE_ID_id_QosMonitoringReportingFrequency ((NGAP_ProtocolIE_ID_t)276) #define NGAP_ProtocolIE_ID_id_QosFlowParametersList ((NGAP_ProtocolIE_ID_t)277) +#define NGAP_ProtocolIE_ID_id_QosFlowFeedbackList ((NGAP_ProtocolIE_ID_t)278) +#define NGAP_ProtocolIE_ID_id_BurstArrivalTimeDownlink ((NGAP_ProtocolIE_ID_t)279) +#define NGAP_ProtocolIE_ID_id_ExtendedUEIdentityIndexValue ((NGAP_ProtocolIE_ID_t)280) +#define NGAP_ProtocolIE_ID_id_PduSessionExpectedUEActivityBehaviour ((NGAP_ProtocolIE_ID_t)281) +#define NGAP_ProtocolIE_ID_id_MicoAllPLMN ((NGAP_ProtocolIE_ID_t)282) +#define NGAP_ProtocolIE_ID_id_QosFlowFailedToSetupList ((NGAP_ProtocolIE_ID_t)283) #ifdef __cplusplus } diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-SingleContainer.c b/lib/asn1c/ngap/NGAP_ProtocolIE-SingleContainer.c index 281b60535..5e52f0e23 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-SingleContainer.c +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-SingleContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -215,19 +215,19 @@ * This type is implemented using NGAP_WarningAreaList_ExtIEs, * so here we adjust the DEF accordingly. */ -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0_tags_1, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0_tags_1) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0_tags_1[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0_tags_1, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0_tags_1) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0_tags_1[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0_tags_1, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0_tags_1) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0_tags_1[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0_tags_1) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -242,19 +242,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0 = { &asn_SPC_NGAP_AMFPagingTarget_ExtIEs_specs_1 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1_tags_2[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1_tags_2[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1_tags_2, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1_tags_2) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1_tags_2[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1_tags_2, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1_tags_2) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1_tags_2[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1_tags_2, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1_tags_2) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1_tags_2[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1_tags_2, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1_tags_2) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1_tags_2[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -269,19 +269,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1 = { &asn_SPC_NGAP_AreaScopeOfMDT_NR_ExtIEs_specs_5 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2_tags_3[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2_tags_3[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2_tags_3, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2_tags_3) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2_tags_3[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2_tags_3, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2_tags_3) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2_tags_3[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2_tags_3, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2_tags_3) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2_tags_3[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2_tags_3, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2_tags_3) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2_tags_3[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -296,19 +296,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2 = { &asn_SPC_NGAP_AreaScopeOfMDT_EUTRA_ExtIEs_specs_9 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3_tags_4[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3_tags_4[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3_tags_4, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3_tags_4) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3_tags_4[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3_tags_4, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3_tags_4) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3_tags_4[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3_tags_4, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3_tags_4) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3_tags_4[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3_tags_4, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3_tags_4) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3_tags_4[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -323,19 +323,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3 = { &asn_SPC_NGAP_BroadcastCancelledAreaList_ExtIEs_specs_13 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4_tags_5[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4_tags_5[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4_tags_5, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4_tags_5) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4_tags_5[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4_tags_5, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4_tags_5) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4_tags_5[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4_tags_5, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4_tags_5) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4_tags_5[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4_tags_5, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4_tags_5) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4_tags_5[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -350,19 +350,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4 = { &asn_SPC_NGAP_BroadcastCompletedAreaList_ExtIEs_specs_17 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5_tags_6[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5_tags_6[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5_tags_6, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5_tags_6) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5_tags_6[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5_tags_6, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5_tags_6) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5_tags_6[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5_tags_6, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5_tags_6) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5_tags_6[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5_tags_6, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5_tags_6) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5_tags_6[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -377,19 +377,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5 = { &asn_SPC_NGAP_CandidateCell_ExtIEs_specs_21 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6_tags_7[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6_tags_7[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6_tags_7, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6_tags_7) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6_tags_7[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6_tags_7, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6_tags_7) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6_tags_7[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6_tags_7, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6_tags_7) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6_tags_7[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6_tags_7, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6_tags_7) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6_tags_7[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -404,19 +404,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6 = { &asn_SPC_NGAP_Cause_ExtIEs_specs_25 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7_tags_8[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7_tags_8[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7_tags_8, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7_tags_8) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7_tags_8[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7_tags_8, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7_tags_8) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7_tags_8[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7_tags_8, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7_tags_8) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7_tags_8[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7_tags_8, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7_tags_8) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7_tags_8[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -431,19 +431,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7 = { &asn_SPC_NGAP_CellIDListForRestart_ExtIEs_specs_29 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8_tags_9[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8_tags_9[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8_tags_9, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8_tags_9) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8_tags_9[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8_tags_9, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8_tags_9) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8_tags_9[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8_tags_9, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8_tags_9) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8_tags_9[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8_tags_9, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8_tags_9) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8_tags_9[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -458,19 +458,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8 = { &asn_SPC_NGAP_CPTransportLayerInformation_ExtIEs_specs_33 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9_tags_10[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9_tags_10[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9_tags_10, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9_tags_10) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9_tags_10[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9_tags_10, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9_tags_10) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9_tags_10[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9_tags_10, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9_tags_10) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9_tags_10[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9_tags_10, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9_tags_10) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9_tags_10[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -485,19 +485,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9 = { &asn_SPC_NGAP_DRBStatusDL_ExtIEs_specs_37 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10_tags_11[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10_tags_11[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10_tags_11, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10_tags_11) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10_tags_11[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10_tags_11, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10_tags_11) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10_tags_11[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10_tags_11, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10_tags_11) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10_tags_11[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10_tags_11, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10_tags_11) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10_tags_11[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -512,19 +512,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10 = { &asn_SPC_NGAP_DRBStatusUL_ExtIEs_specs_41 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11_tags_12[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11_tags_12[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11_tags_12, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11_tags_12) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11_tags_12[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11_tags_12, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11_tags_12) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11_tags_12[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11_tags_12, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11_tags_12) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11_tags_12[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11_tags_12, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11_tags_12) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11_tags_12[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -539,19 +539,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11 = { &asn_SPC_NGAP_ProcedureStageChoice_ExtIEs_specs_45 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12_tags_13[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12_tags_13[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12_tags_13, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12_tags_13) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12_tags_13[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12_tags_13, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12_tags_13) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12_tags_13[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12_tags_13, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12_tags_13) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12_tags_13[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12_tags_13, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12_tags_13) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12_tags_13[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -566,19 +566,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12 = { &asn_SPC_NGAP_ENB_ID_ExtIEs_specs_49 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13_tags_14[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13_tags_14[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13_tags_14, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13_tags_14) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13_tags_14[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13_tags_14, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13_tags_14) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13_tags_14[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13_tags_14, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13_tags_14) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13_tags_14[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13_tags_14, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13_tags_14) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13_tags_14[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -593,19 +593,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13 = { &asn_SPC_NGAP_EventTrigger_ExtIEs_specs_53 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14_tags_15[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14_tags_15[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14_tags_15, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14_tags_15) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14_tags_15[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14_tags_15, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14_tags_15) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14_tags_15[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14_tags_15, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14_tags_15) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14_tags_15[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14_tags_15, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14_tags_15) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14_tags_15[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -620,19 +620,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14 = { &asn_SPC_NGAP_MeasurementThresholdL1LoggedMDT_ExtIEs_specs_57 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15_tags_16[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15_tags_16[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15_tags_16, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15_tags_16) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15_tags_16[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15_tags_16, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15_tags_16) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15_tags_16[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15_tags_16, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15_tags_16) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15_tags_16[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15_tags_16, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15_tags_16) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15_tags_16[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -647,19 +647,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15 = { &asn_SPC_NGAP_GlobalRANNodeID_ExtIEs_specs_61 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16_tags_17[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16_tags_17[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16_tags_17, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16_tags_17) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16_tags_17[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16_tags_17, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16_tags_17) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16_tags_17[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16_tags_17, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16_tags_17) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16_tags_17[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16_tags_17, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16_tags_17) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16_tags_17[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -674,19 +674,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16 = { &asn_SPC_NGAP_GNB_ID_ExtIEs_specs_65 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17_tags_18[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17_tags_18[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17_tags_18, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17_tags_18) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17_tags_18[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17_tags_18, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17_tags_18) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17_tags_18[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17_tags_18, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17_tags_18) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17_tags_18[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17_tags_18, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17_tags_18) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17_tags_18[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -701,19 +701,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17 = { &asn_SPC_NGAP_IntersystemSONTransferType_ExtIEs_specs_69 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18_tags_19[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18_tags_19[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18_tags_19, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18_tags_19) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18_tags_19[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18_tags_19, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18_tags_19) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18_tags_19[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18_tags_19, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18_tags_19) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18_tags_19[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18_tags_19, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18_tags_19) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18_tags_19[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -728,19 +728,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18 = { &asn_SPC_NGAP_IntersystemSONInformation_ExtIEs_specs_73 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19_tags_20[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19_tags_20[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19_tags_20, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19_tags_20) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19_tags_20[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19_tags_20, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19_tags_20) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19_tags_20[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19_tags_20, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19_tags_20) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19_tags_20[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19_tags_20, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19_tags_20) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19_tags_20[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -755,19 +755,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19 = { &asn_SPC_NGAP_IntersystemSONInformationReport_ExtIEs_specs_77 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20_tags_21[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20_tags_21[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20_tags_21, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20_tags_21) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20_tags_21[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20_tags_21, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20_tags_21) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20_tags_21[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20_tags_21, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20_tags_21) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20_tags_21[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20_tags_21, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20_tags_21) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20_tags_21[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -782,19 +782,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20 = { &asn_SPC_NGAP_InterSystemHandoverReportType_ExtIEs_specs_81 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21_tags_22[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21_tags_22[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21_tags_22, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21_tags_22) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21_tags_22[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21_tags_22, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21_tags_22) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21_tags_22[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21_tags_22, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21_tags_22) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21_tags_22[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21_tags_22, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21_tags_22) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21_tags_22[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -809,19 +809,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21 = { &asn_SPC_NGAP_LastVisitedCellInformation_ExtIEs_specs_85 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22_tags_23[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22_tags_23[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22_tags_23, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22_tags_23) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22_tags_23[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22_tags_23, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22_tags_23) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22_tags_23[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22_tags_23, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22_tags_23) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22_tags_23[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22_tags_23, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22_tags_23) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22_tags_23[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -836,19 +836,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22 = { &asn_SPC_NGAP_LoggedMDTTrigger_ExtIEs_specs_89 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23_tags_24[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23_tags_24[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23_tags_24, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23_tags_24) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23_tags_24[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23_tags_24, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23_tags_24) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23_tags_24[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23_tags_24, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23_tags_24) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23_tags_24[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23_tags_24, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23_tags_24) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23_tags_24[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -863,19 +863,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23 = { &asn_SPC_NGAP_MDTModeNr_ExtIEs_specs_93 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24_tags_25[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24_tags_25[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24_tags_25, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24_tags_25) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24_tags_25[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24_tags_25, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24_tags_25) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24_tags_25[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24_tags_25, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24_tags_25) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24_tags_25[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24_tags_25, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24_tags_25) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24_tags_25[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -890,19 +890,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24 = { &asn_SPC_NGAP_M1ThresholdType_ExtIEs_specs_97 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25_tags_26[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25_tags_26[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25_tags_26, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25_tags_26) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25_tags_26[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25_tags_26, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25_tags_26) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25_tags_26[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25_tags_26, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25_tags_26) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25_tags_26[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25_tags_26, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25_tags_26) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25_tags_26[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -917,19 +917,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25 = { &asn_SPC_NGAP_N3IWF_ID_ExtIEs_specs_101 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26_tags_27[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26_tags_27[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26_tags_27, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26_tags_27) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26_tags_27[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26_tags_27, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26_tags_27) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26_tags_27[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26_tags_27, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26_tags_27) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26_tags_27[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26_tags_27, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26_tags_27) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26_tags_27[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -944,19 +944,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26 = { &asn_SPC_NGAP_NgENB_ID_ExtIEs_specs_105 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27_tags_28[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27_tags_28[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27_tags_28, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27_tags_28) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27_tags_28[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27_tags_28, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27_tags_28) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27_tags_28[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27_tags_28, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27_tags_28) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27_tags_28[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27_tags_28, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27_tags_28) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27_tags_28[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -971,19 +971,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27 = { &asn_SPC_NGAP_NGRAN_CGI_ExtIEs_specs_109 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28_tags_29[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28_tags_29[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28_tags_29, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28_tags_29) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28_tags_29[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28_tags_29, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28_tags_29) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28_tags_29[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28_tags_29, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28_tags_29) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28_tags_29[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28_tags_29, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28_tags_29) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28_tags_29[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -998,19 +998,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28 = { &asn_SPC_NGAP_NPN_AccessInformation_ExtIEs_specs_113 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29_tags_30[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29_tags_30[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29_tags_30, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29_tags_30) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29_tags_30[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29_tags_30, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29_tags_30) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29_tags_30[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29_tags_30, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29_tags_30) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29_tags_30[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29_tags_30, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29_tags_30) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29_tags_30[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1025,19 +1025,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29 = { &asn_SPC_NGAP_NPN_MobilityInformation_ExtIEs_specs_117 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30_tags_31[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30_tags_31[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30_tags_31, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30_tags_31) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30_tags_31[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30_tags_31, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30_tags_31) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30_tags_31[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30_tags_31, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30_tags_31) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30_tags_31[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30_tags_31, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30_tags_31) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30_tags_31[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1052,19 +1052,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30 = { &asn_SPC_NGAP_NPN_PagingAssistanceInformation_ExtIEs_specs_121 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31_tags_32[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31_tags_32[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31_tags_32, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31_tags_32) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31_tags_32[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31_tags_32, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31_tags_32) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31_tags_32[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31_tags_32, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31_tags_32) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31_tags_32[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31_tags_32, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31_tags_32) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31_tags_32[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1079,19 +1079,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31 = { &asn_SPC_NGAP_NPN_Support_ExtIEs_specs_125 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32_tags_33[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32_tags_33[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32_tags_33, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32_tags_33) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32_tags_33[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32_tags_33, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32_tags_33) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32_tags_33[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32_tags_33, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32_tags_33) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32_tags_33[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32_tags_33, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32_tags_33) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32_tags_33[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1106,19 +1106,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32 = { &asn_SPC_NGAP_OverloadResponse_ExtIEs_specs_129 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33_tags_34[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33_tags_34[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33_tags_34, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33_tags_34) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33_tags_34[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33_tags_34, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33_tags_34) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33_tags_34[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33_tags_34, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33_tags_34) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33_tags_34[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33_tags_34, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33_tags_34) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33_tags_34[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1133,19 +1133,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33 = { &asn_SPC_NGAP_PWSFailedCellIDList_ExtIEs_specs_133 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34_tags_35[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34_tags_35[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34_tags_35, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34_tags_35) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34_tags_35[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34_tags_35, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34_tags_35) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34_tags_35[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34_tags_35, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34_tags_35) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34_tags_35[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34_tags_35, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34_tags_35) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34_tags_35[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1160,19 +1160,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34 = { &asn_SPC_NGAP_QosCharacteristics_ExtIEs_specs_137 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35_tags_36[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35_tags_36[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35_tags_36, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35_tags_36) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35_tags_36[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35_tags_36, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35_tags_36) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35_tags_36[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35_tags_36, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35_tags_36) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35_tags_36[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35_tags_36, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35_tags_36) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35_tags_36[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1187,19 +1187,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35 = { &asn_SPC_NGAP_ResetType_ExtIEs_specs_141 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36_tags_37[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36_tags_37[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36_tags_37, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36_tags_37) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36_tags_37[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36_tags_37, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36_tags_37) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36_tags_37[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36_tags_37, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36_tags_37) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36_tags_37[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36_tags_37, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36_tags_37) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36_tags_37[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1214,19 +1214,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36 = { &asn_SPC_NGAP_SensorNameConfig_ExtIEs_specs_145 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37_tags_38[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37_tags_38[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37_tags_38, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37_tags_38) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37_tags_38[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37_tags_38, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37_tags_38) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37_tags_38[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37_tags_38, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37_tags_38) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37_tags_38[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37_tags_38, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37_tags_38) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37_tags_38[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1241,19 +1241,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37 = { &asn_SPC_NGAP_SONInformation_ExtIEs_specs_149 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38_tags_39[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38_tags_39[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38_tags_39, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38_tags_39) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38_tags_39[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38_tags_39, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38_tags_39) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38_tags_39[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38_tags_39, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38_tags_39) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38_tags_39[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38_tags_39, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38_tags_39) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38_tags_39[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1268,19 +1268,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38 = { &asn_SPC_NGAP_SONInformationReport_ExtIEs_specs_153 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39_tags_40[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39_tags_40[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39_tags_40, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39_tags_40) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39_tags_40[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39_tags_40, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39_tags_40) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39_tags_40[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39_tags_40, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39_tags_40) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39_tags_40[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39_tags_40, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39_tags_40) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39_tags_40[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1295,19 +1295,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39 = { &asn_SPC_NGAP_TargetID_ExtIEs_specs_157 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40_tags_41[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40_tags_41[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40_tags_41, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40_tags_41) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40_tags_41[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40_tags_41, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40_tags_41) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40_tags_41[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40_tags_41, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40_tags_41) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40_tags_41[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40_tags_41, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40_tags_41) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40_tags_41[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1322,19 +1322,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40 = { &asn_SPC_NGAP_TNGF_ID_ExtIEs_specs_161 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41_tags_42[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41_tags_42[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41_tags_42, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41_tags_42) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41_tags_42[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41_tags_42, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41_tags_42) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41_tags_42[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41_tags_42, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41_tags_42) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41_tags_42[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41_tags_42, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41_tags_42) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41_tags_42[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1349,19 +1349,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41 = { &asn_SPC_NGAP_TWIF_ID_ExtIEs_specs_165 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42_tags_43[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42_tags_43[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42_tags_43, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42_tags_43) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42_tags_43[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42_tags_43, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42_tags_43) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42_tags_43[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42_tags_43, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42_tags_43) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42_tags_43[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42_tags_43, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42_tags_43) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42_tags_43[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1376,19 +1376,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42 = { &asn_SPC_NGAP_UEHistoryInformationFromTheUE_ExtIEs_specs_169 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43_tags_44[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43_tags_44[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43_tags_44, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43_tags_44) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43_tags_44[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43_tags_44, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43_tags_44) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43_tags_44[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43_tags_44, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43_tags_44) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43_tags_44[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43_tags_44, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43_tags_44) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43_tags_44[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1403,19 +1403,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43 = { &asn_SPC_NGAP_UEIdentityIndexValue_ExtIEs_specs_173 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44_tags_45[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44_tags_45[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44_tags_45, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44_tags_45) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44_tags_45[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44_tags_45, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44_tags_45) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44_tags_45[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44_tags_45, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44_tags_45) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44_tags_45[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44_tags_45, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44_tags_45) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44_tags_45[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1430,19 +1430,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44 = { &asn_SPC_NGAP_UE_NGAP_IDs_ExtIEs_specs_177 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45_tags_46[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45_tags_46[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45_tags_46, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45_tags_46) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45_tags_46[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45_tags_46, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45_tags_46) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45_tags_46[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45_tags_46, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45_tags_46) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45_tags_46[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45_tags_46, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45_tags_46) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45_tags_46[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1457,19 +1457,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45 = { &asn_SPC_NGAP_UEPagingIdentity_ExtIEs_specs_181 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46_tags_47[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46_tags_47[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46_tags_47, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46_tags_47) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46_tags_47[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46_tags_47, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46_tags_47) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46_tags_47[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46_tags_47, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46_tags_47) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46_tags_47[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46_tags_47, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46_tags_47) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46_tags_47[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1484,19 +1484,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46 = { &asn_SPC_NGAP_UERLFReportContainer_ExtIEs_specs_185 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47_tags_48[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47_tags_48[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47_tags_48, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47_tags_48) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47_tags_48[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47_tags_48, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47_tags_48) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47_tags_48[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47_tags_48, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47_tags_48) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47_tags_48[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47_tags_48, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47_tags_48) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47_tags_48[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1511,19 +1511,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47 = { &asn_SPC_NGAP_UPTransportLayerInformation_ExtIEs_specs_189 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48_tags_49[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48_tags_49[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48_tags_49, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48_tags_49) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48_tags_49[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48_tags_49, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48_tags_49) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48_tags_49[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48_tags_49, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48_tags_49) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48_tags_49[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48_tags_49, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48_tags_49) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48_tags_49[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1538,19 +1538,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48 = { &asn_SPC_NGAP_UserLocationInformation_ExtIEs_specs_193 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49_tags_50[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49_tags_50[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49_tags_50, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49_tags_50) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49_tags_50[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49_tags_50, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49_tags_50) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49_tags_50[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49_tags_50, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49_tags_50) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49_tags_50[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49_tags_50, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49_tags_50) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49_tags_50[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1565,19 +1565,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49 = { &asn_SPC_NGAP_UserLocationInformationW_AGF_ExtIEs_specs_197 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50_tags_51[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50_tags_51[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50_tags_51, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50_tags_51) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50_tags_51[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50_tags_51, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50_tags_51) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50_tags_51[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50_tags_51, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50_tags_51) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50_tags_51[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50_tags_51, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50_tags_51) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50_tags_51[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1592,19 +1592,19 @@ asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50 = { &asn_SPC_NGAP_W_AGF_ID_ExtIEs_specs_201 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51_tags_52[] = { +static const ber_tlv_tag_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51_tags_52[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51 = { +asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51_tags_52, - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51_tags_52) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51_tags_52[0]), /* 1 */ - asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51_tags_52, /* Same as above */ - sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51_tags_52) - /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51_tags_52[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51_tags_52, + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51_tags_52) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51_tags_52[0]), /* 1 */ + asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51_tags_52, /* Same as above */ + sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51_tags_52) + /sizeof(asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51_tags_52[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, diff --git a/lib/asn1c/ngap/NGAP_ProtocolIE-SingleContainer.h b/lib/asn1c/ngap/NGAP_ProtocolIE-SingleContainer.h index 40f6afb61..8d0350782 100644 --- a/lib/asn1c/ngap/NGAP_ProtocolIE-SingleContainer.h +++ b/lib/asn1c/ngap/NGAP_ProtocolIE-SingleContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-Containers" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,372 +19,372 @@ extern "C" { #endif /* NGAP_ProtocolIE-SingleContainer */ -typedef NGAP_AMFPagingTarget_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P0_t; -typedef NGAP_AreaScopeOfMDT_NR_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P1_t; -typedef NGAP_AreaScopeOfMDT_EUTRA_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P2_t; -typedef NGAP_BroadcastCancelledAreaList_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P3_t; -typedef NGAP_BroadcastCompletedAreaList_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P4_t; -typedef NGAP_CandidateCell_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P5_t; -typedef NGAP_Cause_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P6_t; -typedef NGAP_CellIDListForRestart_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P7_t; -typedef NGAP_CPTransportLayerInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P8_t; -typedef NGAP_DRBStatusDL_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P9_t; -typedef NGAP_DRBStatusUL_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P10_t; -typedef NGAP_ProcedureStageChoice_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P11_t; -typedef NGAP_ENB_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P12_t; -typedef NGAP_EventTrigger_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P13_t; -typedef NGAP_MeasurementThresholdL1LoggedMDT_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P14_t; -typedef NGAP_GlobalRANNodeID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P15_t; -typedef NGAP_GNB_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P16_t; -typedef NGAP_IntersystemSONTransferType_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P17_t; -typedef NGAP_IntersystemSONInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P18_t; -typedef NGAP_IntersystemSONInformationReport_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P19_t; -typedef NGAP_InterSystemHandoverReportType_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P20_t; -typedef NGAP_LastVisitedCellInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P21_t; -typedef NGAP_LoggedMDTTrigger_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P22_t; -typedef NGAP_MDTModeNr_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P23_t; -typedef NGAP_M1ThresholdType_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P24_t; -typedef NGAP_N3IWF_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P25_t; -typedef NGAP_NgENB_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P26_t; -typedef NGAP_NGRAN_CGI_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P27_t; -typedef NGAP_NPN_AccessInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P28_t; -typedef NGAP_NPN_MobilityInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P29_t; -typedef NGAP_NPN_PagingAssistanceInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P30_t; -typedef NGAP_NPN_Support_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P31_t; -typedef NGAP_OverloadResponse_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P32_t; -typedef NGAP_PWSFailedCellIDList_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P33_t; -typedef NGAP_QosCharacteristics_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P34_t; -typedef NGAP_ResetType_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P35_t; -typedef NGAP_SensorNameConfig_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P36_t; -typedef NGAP_SONInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P37_t; -typedef NGAP_SONInformationReport_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P38_t; -typedef NGAP_TargetID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P39_t; -typedef NGAP_TNGF_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P40_t; -typedef NGAP_TWIF_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P41_t; -typedef NGAP_UEHistoryInformationFromTheUE_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P42_t; -typedef NGAP_UEIdentityIndexValue_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P43_t; -typedef NGAP_UE_NGAP_IDs_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P44_t; -typedef NGAP_UEPagingIdentity_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P45_t; -typedef NGAP_UERLFReportContainer_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P46_t; -typedef NGAP_UPTransportLayerInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P47_t; -typedef NGAP_UserLocationInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P48_t; -typedef NGAP_UserLocationInformationW_AGF_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P49_t; -typedef NGAP_W_AGF_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P50_t; -typedef NGAP_WarningAreaList_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9523P51_t; +typedef NGAP_AMFPagingTarget_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P0_t; +typedef NGAP_AreaScopeOfMDT_NR_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P1_t; +typedef NGAP_AreaScopeOfMDT_EUTRA_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P2_t; +typedef NGAP_BroadcastCancelledAreaList_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P3_t; +typedef NGAP_BroadcastCompletedAreaList_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P4_t; +typedef NGAP_CandidateCell_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P5_t; +typedef NGAP_Cause_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P6_t; +typedef NGAP_CellIDListForRestart_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P7_t; +typedef NGAP_CPTransportLayerInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P8_t; +typedef NGAP_DRBStatusDL_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P9_t; +typedef NGAP_DRBStatusUL_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P10_t; +typedef NGAP_ProcedureStageChoice_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P11_t; +typedef NGAP_ENB_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P12_t; +typedef NGAP_EventTrigger_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P13_t; +typedef NGAP_MeasurementThresholdL1LoggedMDT_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P14_t; +typedef NGAP_GlobalRANNodeID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P15_t; +typedef NGAP_GNB_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P16_t; +typedef NGAP_IntersystemSONTransferType_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P17_t; +typedef NGAP_IntersystemSONInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P18_t; +typedef NGAP_IntersystemSONInformationReport_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P19_t; +typedef NGAP_InterSystemHandoverReportType_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P20_t; +typedef NGAP_LastVisitedCellInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P21_t; +typedef NGAP_LoggedMDTTrigger_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P22_t; +typedef NGAP_MDTModeNr_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P23_t; +typedef NGAP_M1ThresholdType_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P24_t; +typedef NGAP_N3IWF_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P25_t; +typedef NGAP_NgENB_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P26_t; +typedef NGAP_NGRAN_CGI_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P27_t; +typedef NGAP_NPN_AccessInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P28_t; +typedef NGAP_NPN_MobilityInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P29_t; +typedef NGAP_NPN_PagingAssistanceInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P30_t; +typedef NGAP_NPN_Support_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P31_t; +typedef NGAP_OverloadResponse_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P32_t; +typedef NGAP_PWSFailedCellIDList_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P33_t; +typedef NGAP_QosCharacteristics_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P34_t; +typedef NGAP_ResetType_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P35_t; +typedef NGAP_SensorNameConfig_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P36_t; +typedef NGAP_SONInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P37_t; +typedef NGAP_SONInformationReport_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P38_t; +typedef NGAP_TargetID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P39_t; +typedef NGAP_TNGF_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P40_t; +typedef NGAP_TWIF_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P41_t; +typedef NGAP_UEHistoryInformationFromTheUE_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P42_t; +typedef NGAP_UEIdentityIndexValue_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P43_t; +typedef NGAP_UE_NGAP_IDs_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P44_t; +typedef NGAP_UEPagingIdentity_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P45_t; +typedef NGAP_UERLFReportContainer_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P46_t; +typedef NGAP_UPTransportLayerInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P47_t; +typedef NGAP_UserLocationInformation_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P48_t; +typedef NGAP_UserLocationInformationW_AGF_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P49_t; +typedef NGAP_W_AGF_ID_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P50_t; +typedef NGAP_WarningAreaList_ExtIEs_t NGAP_ProtocolIE_SingleContainer_9577P51_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P0; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P0_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P0_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P0_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P0_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P0_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P1; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P1_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P1_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P1_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P1_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P1_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P2; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P2_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P2_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P2_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P2_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P2_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P3; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P3_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P3_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P3_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P3_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P3_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P4; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P4_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P4_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P4_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P4_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P4_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P5; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P5_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P5_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P5_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P5_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P5_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P6; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P6_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P6_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P6_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P6_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P6_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P7; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P7_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P7_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P7_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P7_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P7_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P8; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P8_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P8_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P8_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P8_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P8_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P9; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P9_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P9_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P9_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P9_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P9_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P10; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P10_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P10_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P10_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P10_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P10_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P11; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P11_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P11_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P11_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P11_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P11_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P12; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P12_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P12_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P12_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P12_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P12_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P13; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P13_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P13_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P13_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P13_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P13_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P14; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P14_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P14_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P14_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P14_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P14_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P15; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P15_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P15_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P15_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P15_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P15_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P16; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P16_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P16_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P16_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P16_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P16_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P17; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P17_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P17_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P17_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P17_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P17_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P18; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P18_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P18_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P18_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P18_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P18_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P19; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P19_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P19_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P19_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P19_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P19_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P20; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P20_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P20_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P20_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P20_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P20_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P21; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P21_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P21_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P21_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P21_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P21_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P22; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P22_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P22_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P22_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P22_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P22_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P23; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P23_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P23_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P23_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P23_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P23_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P24; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P24_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P24_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P24_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P24_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P24_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P25; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P25_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P25_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P25_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P25_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P25_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P26; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P26_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P26_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P26_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P26_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P26_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P27; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P27_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P27_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P27_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P27_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P27_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P28; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P28_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P28_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P28_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P28_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P28_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P29; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P29_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P29_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P29_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P29_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P29_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P30; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P30_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P30_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P30_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P30_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P30_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P31; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P31_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P31_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P31_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P31_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P31_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P32; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P32_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P32_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P32_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P32_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P32_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P33; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P33_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P33_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P33_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P33_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P33_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P34_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P34_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P34_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P34_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P34_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P35_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P35_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P35_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P35_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P35_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P36_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P36_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P36_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P36_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P36_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P37_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P37_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P37_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P37_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P37_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P38_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P38_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P38_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P38_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P38_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P39_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P39_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P39_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P39_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P39_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P40_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P40_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P40_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P40_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P40_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P41_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P41_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P41_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P41_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P41_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P42_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P42_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P42_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P42_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P42_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P43_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P43_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P43_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P43_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P43_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P44_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P44_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P44_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P44_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P44_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P45_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P45_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P45_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P45_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P45_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P46_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P46_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P46_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P46_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P46_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P47_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P47_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P47_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P47_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P47_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P48_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P48_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P48_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P48_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P48_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P49_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P49_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P49_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P49_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P49_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P50_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P50_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P50_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P50_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P50_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51; -asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9523P51_free; -asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9523P51_print; -asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9523P51_constraint; -per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9523P51_decode_aper; -per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9523P51_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P0; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P0_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P0_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P0_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P0_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P0_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P1; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P1_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P1_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P1_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P1_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P1_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P2; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P2_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P2_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P2_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P2_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P2_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P3; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P3_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P3_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P3_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P3_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P3_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P4; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P4_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P4_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P4_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P4_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P4_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P5; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P5_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P5_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P5_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P5_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P5_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P6; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P6_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P6_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P6_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P6_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P6_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P7; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P7_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P7_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P7_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P7_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P7_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P8; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P8_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P8_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P8_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P8_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P8_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P9; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P9_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P9_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P9_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P9_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P9_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P10; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P10_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P10_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P10_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P10_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P10_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P11; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P11_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P11_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P11_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P11_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P11_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P12; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P12_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P12_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P12_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P12_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P12_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P13; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P13_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P13_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P13_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P13_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P13_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P14; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P14_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P14_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P14_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P14_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P14_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P15; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P15_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P15_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P15_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P15_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P15_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P16; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P16_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P16_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P16_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P16_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P16_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P17; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P17_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P17_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P17_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P17_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P17_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P18; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P18_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P18_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P18_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P18_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P18_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P19; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P19_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P19_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P19_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P19_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P19_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P20; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P20_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P20_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P20_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P20_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P20_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P21; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P21_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P21_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P21_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P21_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P21_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P22; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P22_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P22_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P22_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P22_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P22_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P23; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P23_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P23_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P23_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P23_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P23_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P24; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P24_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P24_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P24_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P24_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P24_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P25; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P25_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P25_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P25_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P25_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P25_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P26; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P26_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P26_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P26_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P26_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P26_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P27; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P27_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P27_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P27_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P27_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P27_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P28; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P28_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P28_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P28_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P28_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P28_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P29; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P29_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P29_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P29_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P29_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P29_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P30; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P30_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P30_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P30_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P30_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P30_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P31; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P31_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P31_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P31_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P31_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P31_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P32; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P32_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P32_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P32_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P32_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P32_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P33; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P33_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P33_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P33_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P33_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P33_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P34_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P34_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P34_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P34_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P34_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P35_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P35_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P35_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P35_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P35_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P36_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P36_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P36_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P36_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P36_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P37_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P37_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P37_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P37_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P37_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P38_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P38_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P38_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P38_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P38_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P39_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P39_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P39_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P39_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P39_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P40_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P40_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P40_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P40_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P40_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P41_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P41_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P41_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P41_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P41_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P42_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P42_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P42_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P42_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P42_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P43_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P43_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P43_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P43_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P43_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P44_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P44_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P44_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P44_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P44_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P45_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P45_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P45_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P45_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P45_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P46_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P46_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P46_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P46_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P46_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P47_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P47_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P47_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P47_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P47_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P48_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P48_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P48_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P48_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P48_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P49_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P49_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P49_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P49_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P49_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P50_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P50_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P50_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P50_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P50_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51; +asn_struct_free_f NGAP_ProtocolIE_SingleContainer_9577P51_free; +asn_struct_print_f NGAP_ProtocolIE_SingleContainer_9577P51_print; +asn_constr_check_f NGAP_ProtocolIE_SingleContainer_9577P51_constraint; +per_type_decoder_f NGAP_ProtocolIE_SingleContainer_9577P51_decode_aper; +per_type_encoder_f NGAP_ProtocolIE_SingleContainer_9577P51_encode_aper; #ifdef __cplusplus } diff --git a/lib/asn1c/ngap/NGAP_QoSFlowsUsageReport-Item.c b/lib/asn1c/ngap/NGAP_QoSFlowsUsageReport-Item.c index 686bfd905..1acff541a 100644 --- a/lib/asn1c/ngap/NGAP_QoSFlowsUsageReport-Item.c +++ b/lib/asn1c/ngap/NGAP_QoSFlowsUsageReport-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -125,7 +125,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QoSFlowsUsageReport_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QoSFlowsUsageReport_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P214, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P215, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QoSFlowsUsageReport-Item.h b/lib/asn1c/ngap/NGAP_QoSFlowsUsageReport-Item.h index df10db13a..087f03565 100644 --- a/lib/asn1c/ngap/NGAP_QoSFlowsUsageReport-Item.h +++ b/lib/asn1c/ngap/NGAP_QoSFlowsUsageReport-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QoSFlowsUsageReportList.c b/lib/asn1c/ngap/NGAP_QoSFlowsUsageReportList.c index 25872ccbb..d59bc8147 100644 --- a/lib/asn1c/ngap/NGAP_QoSFlowsUsageReportList.c +++ b/lib/asn1c/ngap/NGAP_QoSFlowsUsageReportList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QoSFlowsUsageReportList.h b/lib/asn1c/ngap/NGAP_QoSFlowsUsageReportList.h index c36516d11..5036a6f6c 100644 --- a/lib/asn1c/ngap/NGAP_QoSFlowsUsageReportList.h +++ b/lib/asn1c/ngap/NGAP_QoSFlowsUsageReportList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosCharacteristics.c b/lib/asn1c/ngap/NGAP_QosCharacteristics.c index fbb060677..3346a2cc2 100644 --- a/lib/asn1c/ngap/NGAP_QosCharacteristics.c +++ b/lib/asn1c/ngap/NGAP_QosCharacteristics.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosCharacteristics_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_QosCharacteristics, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P34, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P34, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosCharacteristics.h b/lib/asn1c/ngap/NGAP_QosCharacteristics.h index 570601c84..ccd2836b9 100644 --- a/lib/asn1c/ngap/NGAP_QosCharacteristics.h +++ b/lib/asn1c/ngap/NGAP_QosCharacteristics.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAcceptedItem.c b/lib/asn1c/ngap/NGAP_QosFlowAcceptedItem.c index 9af56bdb1..6e6d432bb 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAcceptedItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowAcceptedItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowAcceptedItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowAcceptedItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P200, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P200, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowAcceptedItem.h b/lib/asn1c/ngap/NGAP_QosFlowAcceptedItem.h index 71f7fcbe8..548ce7ace 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAcceptedItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowAcceptedItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAcceptedList.c b/lib/asn1c/ngap/NGAP_QosFlowAcceptedList.c index 4c0ce5e35..30ed77619 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAcceptedList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowAcceptedList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAcceptedList.h b/lib/asn1c/ngap/NGAP_QosFlowAcceptedList.h index 1821d4b8d..c6da5a6ac 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAcceptedList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowAcceptedList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestItem.c b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestItem.c index f90fdf966..143d444fc 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowAddOrModifyRequestItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowAddOrModifyRequestItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P201, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P201, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestItem.h b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestItem.h index cac2b475e..93d2a098a 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestList.c b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestList.c index 7cea4a44d..ca979a0a2 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestList.h b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestList.h index b04065390..5af361b7a 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyRequestList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseItem.c b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseItem.c index fdcfabeea..765cb2c9a 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowAddOrModifyResponseItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowAddOrModifyResponseItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P202, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P202, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseItem.h b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseItem.h index a02f51292..b6cfd3854 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseList.c b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseList.c index 218583b9b..e612f0fcf 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseList.h b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseList.h index 37fd50213..513bd7b82 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowAddOrModifyResponseList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowFeedbackItem.c b/lib/asn1c/ngap/NGAP_QosFlowFeedbackItem.c new file mode 100644 index 000000000..c93d73fe1 --- /dev/null +++ b/lib/asn1c/ngap/NGAP_QosFlowFeedbackItem.c @@ -0,0 +1,141 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#include "NGAP_QosFlowFeedbackItem.h" + +#include "NGAP_ProtocolExtensionContainer.h" +asn_TYPE_member_t asn_MBR_NGAP_QosFlowFeedbackItem_1[] = { + { ATF_NOFLAGS, 0, offsetof(struct NGAP_QosFlowFeedbackItem, qosFlowIdentifier), + (ASN_TAG_CLASS_CONTEXT | (0 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_QosFlowIdentifier, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "qosFlowIdentifier" + }, + { ATF_POINTER, 4, offsetof(struct NGAP_QosFlowFeedbackItem, updateFeedback), + (ASN_TAG_CLASS_CONTEXT | (1 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_UpdateFeedback, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "updateFeedback" + }, + { ATF_POINTER, 3, offsetof(struct NGAP_QosFlowFeedbackItem, cNpacketDelayBudgetDL), + (ASN_TAG_CLASS_CONTEXT | (2 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ExtendedPacketDelayBudget, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "cNpacketDelayBudgetDL" + }, + { ATF_POINTER, 2, offsetof(struct NGAP_QosFlowFeedbackItem, cNpacketDelayBudgetUL), + (ASN_TAG_CLASS_CONTEXT | (3 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ExtendedPacketDelayBudget, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "cNpacketDelayBudgetUL" + }, + { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowFeedbackItem, iE_Extensions), + (ASN_TAG_CLASS_CONTEXT | (4 << 2)), + -1, /* IMPLICIT tag at current level */ + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P203, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "iE-Extensions" + }, +}; +static const int asn_MAP_NGAP_QosFlowFeedbackItem_oms_1[] = { 1, 2, 3, 4 }; +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowFeedbackItem_tags_1[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static const asn_TYPE_tag2member_t asn_MAP_NGAP_QosFlowFeedbackItem_tag2el_1[] = { + { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* qosFlowIdentifier */ + { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* updateFeedback */ + { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 }, /* cNpacketDelayBudgetDL */ + { (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 3, 0, 0 }, /* cNpacketDelayBudgetUL */ + { (ASN_TAG_CLASS_CONTEXT | (4 << 2)), 4, 0, 0 } /* iE-Extensions */ +}; +asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowFeedbackItem_specs_1 = { + sizeof(struct NGAP_QosFlowFeedbackItem), + offsetof(struct NGAP_QosFlowFeedbackItem, _asn_ctx), + asn_MAP_NGAP_QosFlowFeedbackItem_tag2el_1, + 5, /* Count of tags in the map */ + asn_MAP_NGAP_QosFlowFeedbackItem_oms_1, /* Optional members */ + 4, 0, /* Root/Additions */ + 5, /* First extension addition */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowFeedbackItem = { + "QosFlowFeedbackItem", + "QosFlowFeedbackItem", + &asn_OP_SEQUENCE, + asn_DEF_NGAP_QosFlowFeedbackItem_tags_1, + sizeof(asn_DEF_NGAP_QosFlowFeedbackItem_tags_1) + /sizeof(asn_DEF_NGAP_QosFlowFeedbackItem_tags_1[0]), /* 1 */ + asn_DEF_NGAP_QosFlowFeedbackItem_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowFeedbackItem_tags_1) + /sizeof(asn_DEF_NGAP_QosFlowFeedbackItem_tags_1[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_constraint + }, + asn_MBR_NGAP_QosFlowFeedbackItem_1, + 5, /* Elements count */ + &asn_SPC_NGAP_QosFlowFeedbackItem_specs_1 /* Additional specs */ +}; + diff --git a/lib/asn1c/ngap/NGAP_QosFlowFeedbackItem.h b/lib/asn1c/ngap/NGAP_QosFlowFeedbackItem.h new file mode 100644 index 000000000..62555f3cf --- /dev/null +++ b/lib/asn1c/ngap/NGAP_QosFlowFeedbackItem.h @@ -0,0 +1,53 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#ifndef _NGAP_QosFlowFeedbackItem_H_ +#define _NGAP_QosFlowFeedbackItem_H_ + + +#include + +/* Including external dependencies */ +#include "NGAP_QosFlowIdentifier.h" +#include "NGAP_UpdateFeedback.h" +#include "NGAP_ExtendedPacketDelayBudget.h" +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* Forward declarations */ +struct NGAP_ProtocolExtensionContainer; + +/* NGAP_QosFlowFeedbackItem */ +typedef struct NGAP_QosFlowFeedbackItem { + NGAP_QosFlowIdentifier_t qosFlowIdentifier; + NGAP_UpdateFeedback_t *updateFeedback; /* OPTIONAL */ + NGAP_ExtendedPacketDelayBudget_t *cNpacketDelayBudgetDL; /* OPTIONAL */ + NGAP_ExtendedPacketDelayBudget_t *cNpacketDelayBudgetUL; /* OPTIONAL */ + struct NGAP_ProtocolExtensionContainer *iE_Extensions; /* OPTIONAL */ + /* + * This type is extensible, + * possible extensions are below. + */ + + /* Context for parsing across buffer boundaries */ + asn_struct_ctx_t _asn_ctx; +} NGAP_QosFlowFeedbackItem_t; + +/* Implementation */ +extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowFeedbackItem; +extern asn_SEQUENCE_specifics_t asn_SPC_NGAP_QosFlowFeedbackItem_specs_1; +extern asn_TYPE_member_t asn_MBR_NGAP_QosFlowFeedbackItem_1[5]; + +#ifdef __cplusplus +} +#endif + +#endif /* _NGAP_QosFlowFeedbackItem_H_ */ +#include diff --git a/lib/asn1c/ngap/NGAP_QosFlowFeedbackList.c b/lib/asn1c/ngap/NGAP_QosFlowFeedbackList.c new file mode 100644 index 000000000..3e5f6d0aa --- /dev/null +++ b/lib/asn1c/ngap/NGAP_QosFlowFeedbackList.c @@ -0,0 +1,68 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#include "NGAP_QosFlowFeedbackList.h" + +#include "NGAP_QosFlowFeedbackItem.h" +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +static asn_per_constraints_t asn_PER_type_NGAP_QosFlowFeedbackList_constr_1 CC_NOTUSED = { + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + { APC_CONSTRAINED, 6, 6, 1, 64 } /* (SIZE(1..64)) */, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +static asn_TYPE_member_t asn_MBR_NGAP_QosFlowFeedbackList_1[] = { + { ATF_POINTER, 0, 0, + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), + 0, + &asn_DEF_NGAP_QosFlowFeedbackItem, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "" + }, +}; +static const ber_tlv_tag_t asn_DEF_NGAP_QosFlowFeedbackList_tags_1[] = { + (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) +}; +static asn_SET_OF_specifics_t asn_SPC_NGAP_QosFlowFeedbackList_specs_1 = { + sizeof(struct NGAP_QosFlowFeedbackList), + offsetof(struct NGAP_QosFlowFeedbackList, _asn_ctx), + 0, /* XER encoding is XMLDelimitedItemList */ +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowFeedbackList = { + "QosFlowFeedbackList", + "QosFlowFeedbackList", + &asn_OP_SEQUENCE_OF, + asn_DEF_NGAP_QosFlowFeedbackList_tags_1, + sizeof(asn_DEF_NGAP_QosFlowFeedbackList_tags_1) + /sizeof(asn_DEF_NGAP_QosFlowFeedbackList_tags_1[0]), /* 1 */ + asn_DEF_NGAP_QosFlowFeedbackList_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_QosFlowFeedbackList_tags_1) + /sizeof(asn_DEF_NGAP_QosFlowFeedbackList_tags_1[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_type_NGAP_QosFlowFeedbackList_constr_1, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + SEQUENCE_OF_constraint + }, + asn_MBR_NGAP_QosFlowFeedbackList_1, + 1, /* Single element */ + &asn_SPC_NGAP_QosFlowFeedbackList_specs_1 /* Additional specs */ +}; + diff --git a/lib/asn1c/ngap/NGAP_QosFlowFeedbackList.h b/lib/asn1c/ngap/NGAP_QosFlowFeedbackList.h new file mode 100644 index 000000000..f36a00595 --- /dev/null +++ b/lib/asn1c/ngap/NGAP_QosFlowFeedbackList.h @@ -0,0 +1,41 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#ifndef _NGAP_QosFlowFeedbackList_H_ +#define _NGAP_QosFlowFeedbackList_H_ + + +#include + +/* Including external dependencies */ +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* Forward declarations */ +struct NGAP_QosFlowFeedbackItem; + +/* NGAP_QosFlowFeedbackList */ +typedef struct NGAP_QosFlowFeedbackList { + A_SEQUENCE_OF(struct NGAP_QosFlowFeedbackItem) list; + + /* Context for parsing across buffer boundaries */ + asn_struct_ctx_t _asn_ctx; +} NGAP_QosFlowFeedbackList_t; + +/* Implementation */ +extern asn_TYPE_descriptor_t asn_DEF_NGAP_QosFlowFeedbackList; + +#ifdef __cplusplus +} +#endif + +#endif /* _NGAP_QosFlowFeedbackList_H_ */ +#include diff --git a/lib/asn1c/ngap/NGAP_QosFlowIdentifier.c b/lib/asn1c/ngap/NGAP_QosFlowIdentifier.c index 95b14f9fc..e829dc22e 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowIdentifier.c +++ b/lib/asn1c/ngap/NGAP_QosFlowIdentifier.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowIdentifier.h b/lib/asn1c/ngap/NGAP_QosFlowIdentifier.h index a11a21178..0dc7fcc25 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowIdentifier.h +++ b/lib/asn1c/ngap/NGAP_QosFlowIdentifier.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowInformationItem.c b/lib/asn1c/ngap/NGAP_QosFlowInformationItem.c index 5542ffb97..422f9cdc6 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowInformationItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowInformationItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowInformationItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowInformationItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P203, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P204, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowInformationItem.h b/lib/asn1c/ngap/NGAP_QosFlowInformationItem.h index f6fcc7264..c6c16c943 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowInformationItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowInformationItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowInformationList.c b/lib/asn1c/ngap/NGAP_QosFlowInformationList.c index f1ede4b6a..e70274de7 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowInformationList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowInformationList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowInformationList.h b/lib/asn1c/ngap/NGAP_QosFlowInformationList.h index 865cafcca..fb80ec1eb 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowInformationList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowInformationList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowItemWithDataForwarding.c b/lib/asn1c/ngap/NGAP_QosFlowItemWithDataForwarding.c index 50231e2c1..5676aff49 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowItemWithDataForwarding.c +++ b/lib/asn1c/ngap/NGAP_QosFlowItemWithDataForwarding.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowItemWithDataForwarding_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowItemWithDataForwarding, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P212, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P213, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowItemWithDataForwarding.h b/lib/asn1c/ngap/NGAP_QosFlowItemWithDataForwarding.h index 8c8e91656..45dbdc026 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowItemWithDataForwarding.h +++ b/lib/asn1c/ngap/NGAP_QosFlowItemWithDataForwarding.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowLevelQosParameters.c b/lib/asn1c/ngap/NGAP_QosFlowLevelQosParameters.c index c41b03d5c..fb11d4983 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowLevelQosParameters.c +++ b/lib/asn1c/ngap/NGAP_QosFlowLevelQosParameters.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -98,7 +98,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowLevelQosParameters_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowLevelQosParameters, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P204, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P205, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowLevelQosParameters.h b/lib/asn1c/ngap/NGAP_QosFlowLevelQosParameters.h index 43433ec28..8d85c6f2d 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowLevelQosParameters.h +++ b/lib/asn1c/ngap/NGAP_QosFlowLevelQosParameters.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowListWithCause.c b/lib/asn1c/ngap/NGAP_QosFlowListWithCause.c index 4c32b109c..7620625d2 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowListWithCause.c +++ b/lib/asn1c/ngap/NGAP_QosFlowListWithCause.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowListWithCause.h b/lib/asn1c/ngap/NGAP_QosFlowListWithCause.h index 51b73fab7..1afbc4c1a 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowListWithCause.h +++ b/lib/asn1c/ngap/NGAP_QosFlowListWithCause.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowListWithDataForwarding.c b/lib/asn1c/ngap/NGAP_QosFlowListWithDataForwarding.c index 7e0288fb1..ca1d956a3 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowListWithDataForwarding.c +++ b/lib/asn1c/ngap/NGAP_QosFlowListWithDataForwarding.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowListWithDataForwarding.h b/lib/asn1c/ngap/NGAP_QosFlowListWithDataForwarding.h index f44bc34bd..7f0339e0c 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowListWithDataForwarding.h +++ b/lib/asn1c/ngap/NGAP_QosFlowListWithDataForwarding.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmItem.c b/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmItem.c index 836c135cd..ae11c1cdf 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowModifyConfirmItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowModifyConfirmItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P206, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P207, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmItem.h b/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmItem.h index d26feeeb9..c15bc40d5 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmList.c b/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmList.c index 4d92c3d6c..5e9706fcc 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmList.h b/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmList.h index efe2e6fb6..2a0025358 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowModifyConfirmList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowNotifyItem.c b/lib/asn1c/ngap/NGAP_QosFlowNotifyItem.c index 7e1d00b76..a7de34855 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowNotifyItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowNotifyItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowNotifyItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowNotifyItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P207, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P208, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowNotifyItem.h b/lib/asn1c/ngap/NGAP_QosFlowNotifyItem.h index 3aa1761ce..254248edf 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowNotifyItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowNotifyItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowNotifyList.c b/lib/asn1c/ngap/NGAP_QosFlowNotifyList.c index 252914363..fa2b2de6a 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowNotifyList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowNotifyList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowNotifyList.h b/lib/asn1c/ngap/NGAP_QosFlowNotifyList.h index 8c3c5de8c..8de73cfd1 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowNotifyList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowNotifyList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowParametersItem.c b/lib/asn1c/ngap/NGAP_QosFlowParametersItem.c index 59812a0cd..7892572ad 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowParametersItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowParametersItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowParametersItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowParametersItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P208, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P209, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowParametersItem.h b/lib/asn1c/ngap/NGAP_QosFlowParametersItem.h index ee4486d2f..b26ea6bc2 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowParametersItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowParametersItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowParametersList.c b/lib/asn1c/ngap/NGAP_QosFlowParametersList.c index 9241a802e..bd142029e 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowParametersList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowParametersList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowParametersList.h b/lib/asn1c/ngap/NGAP_QosFlowParametersList.h index 675390507..8843b45da 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowParametersList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowParametersList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformation.c b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformation.c index 038d333c5..183de4c58 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformation.c +++ b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowPerTNLInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P209, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P210, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformation.h b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformation.h index 8d1492e8c..eec51a98d 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformation.h +++ b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationItem.c b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationItem.c index ec757f9db..41395494a 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowPerTNLInformationItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowPerTNLInformationItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P210, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P211, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationItem.h b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationItem.h index 5b8120e09..eb00a2ee5 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationList.c b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationList.c index 365477a19..17d49120c 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationList.h b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationList.h index 9da0fe2c4..6f305d89c 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowPerTNLInformationList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowSetupRequestItem.c b/lib/asn1c/ngap/NGAP_QosFlowSetupRequestItem.c index 0335b2059..e98962e47 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowSetupRequestItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowSetupRequestItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowSetupRequestItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowSetupRequestItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P211, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P212, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowSetupRequestItem.h b/lib/asn1c/ngap/NGAP_QosFlowSetupRequestItem.h index e1a63cce1..2b6eea6c7 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowSetupRequestItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowSetupRequestItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowSetupRequestList.c b/lib/asn1c/ngap/NGAP_QosFlowSetupRequestList.c index 968dfd127..f172175a6 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowSetupRequestList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowSetupRequestList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowSetupRequestList.h b/lib/asn1c/ngap/NGAP_QosFlowSetupRequestList.h index 5c97dd7ff..65cee0fa3 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowSetupRequestList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowSetupRequestList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedItem.c b/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedItem.c index bcdb19203..5fbfbb14c 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowToBeForwardedItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowToBeForwardedItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P213, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P214, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedItem.h b/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedItem.h index 277b29779..21d795799 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedList.c b/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedList.c index ffb3eac76..a5f91d65e 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedList.c +++ b/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedList.h b/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedList.h index 04f766b0a..7d2de367f 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedList.h +++ b/lib/asn1c/ngap/NGAP_QosFlowToBeForwardedList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosFlowWithCauseItem.c b/lib/asn1c/ngap/NGAP_QosFlowWithCauseItem.c index 4a90a446d..9c4e0c2b8 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowWithCauseItem.c +++ b/lib/asn1c/ngap/NGAP_QosFlowWithCauseItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_QosFlowWithCauseItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_QosFlowWithCauseItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P205, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P206, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_QosFlowWithCauseItem.h b/lib/asn1c/ngap/NGAP_QosFlowWithCauseItem.h index 226e688e2..b06693d45 100644 --- a/lib/asn1c/ngap/NGAP_QosFlowWithCauseItem.h +++ b/lib/asn1c/ngap/NGAP_QosFlowWithCauseItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosMonitoringReportingFrequency.c b/lib/asn1c/ngap/NGAP_QosMonitoringReportingFrequency.c index 78aab4f63..8b1470478 100644 --- a/lib/asn1c/ngap/NGAP_QosMonitoringReportingFrequency.c +++ b/lib/asn1c/ngap/NGAP_QosMonitoringReportingFrequency.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosMonitoringReportingFrequency.h b/lib/asn1c/ngap/NGAP_QosMonitoringReportingFrequency.h index 1e73fb41a..0ab127e48 100644 --- a/lib/asn1c/ngap/NGAP_QosMonitoringReportingFrequency.h +++ b/lib/asn1c/ngap/NGAP_QosMonitoringReportingFrequency.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_QosMonitoringRequest.c b/lib/asn1c/ngap/NGAP_QosMonitoringRequest.c index 7191a1b50..174de7331 100644 --- a/lib/asn1c/ngap/NGAP_QosMonitoringRequest.c +++ b/lib/asn1c/ngap/NGAP_QosMonitoringRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,19 +21,21 @@ static asn_per_constraints_t asn_PER_type_NGAP_QosMonitoringRequest_constr_1 CC_ static const asn_INTEGER_enum_map_t asn_MAP_NGAP_QosMonitoringRequest_value2enum_1[] = { { 0, 2, "ul" }, { 1, 2, "dl" }, - { 2, 4, "both" } + { 2, 4, "both" }, + { 3, 4, "stop" } /* This list is extensible */ }; static const unsigned int asn_MAP_NGAP_QosMonitoringRequest_enum2value_1[] = { 2, /* both(2) */ 1, /* dl(1) */ + 3, /* stop(3) */ 0 /* ul(0) */ /* This list is extensible */ }; static const asn_INTEGER_specifics_t asn_SPC_NGAP_QosMonitoringRequest_specs_1 = { asn_MAP_NGAP_QosMonitoringRequest_value2enum_1, /* "tag" => N; sorted by tag */ asn_MAP_NGAP_QosMonitoringRequest_enum2value_1, /* N => "tag"; sorted by N */ - 3, /* Number of elements in the maps */ + 4, /* Number of elements in the maps */ 4, /* Extensions before this member */ 1, /* Strict enumeration */ 0, /* Native long size */ diff --git a/lib/asn1c/ngap/NGAP_QosMonitoringRequest.h b/lib/asn1c/ngap/NGAP_QosMonitoringRequest.h index cc594a0a0..2ea8cc6a2 100644 --- a/lib/asn1c/ngap/NGAP_QosMonitoringRequest.h +++ b/lib/asn1c/ngap/NGAP_QosMonitoringRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -22,10 +22,11 @@ extern "C" { typedef enum NGAP_QosMonitoringRequest { NGAP_QosMonitoringRequest_ul = 0, NGAP_QosMonitoringRequest_dl = 1, - NGAP_QosMonitoringRequest_both = 2 + NGAP_QosMonitoringRequest_both = 2, /* * Enumeration is extensible */ + NGAP_QosMonitoringRequest_stop = 3 } e_NGAP_QosMonitoringRequest; /* NGAP_QosMonitoringRequest */ diff --git a/lib/asn1c/ngap/NGAP_RAN-UE-NGAP-ID.c b/lib/asn1c/ngap/NGAP_RAN-UE-NGAP-ID.c index f8019c71c..13b6ef8cf 100644 --- a/lib/asn1c/ngap/NGAP_RAN-UE-NGAP-ID.c +++ b/lib/asn1c/ngap/NGAP_RAN-UE-NGAP-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RAN-UE-NGAP-ID.h b/lib/asn1c/ngap/NGAP_RAN-UE-NGAP-ID.h index 15e133bdf..d5875ba7e 100644 --- a/lib/asn1c/ngap/NGAP_RAN-UE-NGAP-ID.h +++ b/lib/asn1c/ngap/NGAP_RAN-UE-NGAP-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RANCPRelocationIndication.c b/lib/asn1c/ngap/NGAP_RANCPRelocationIndication.c index 631acd1b4..21c134bc4 100644 --- a/lib/asn1c/ngap/NGAP_RANCPRelocationIndication.c +++ b/lib/asn1c/ngap/NGAP_RANCPRelocationIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RANCPRelocationIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_RANCPRelocationIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P27, + &asn_DEF_NGAP_ProtocolIE_Container_9574P27, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RANCPRelocationIndication.h b/lib/asn1c/ngap/NGAP_RANCPRelocationIndication.h index 8f6b8accb..fff02525b 100644 --- a/lib/asn1c/ngap/NGAP_RANCPRelocationIndication.h +++ b/lib/asn1c/ngap/NGAP_RANCPRelocationIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_RANCPRelocationIndication */ typedef struct NGAP_RANCPRelocationIndication { - NGAP_ProtocolIE_Container_9520P27_t protocolIEs; + NGAP_ProtocolIE_Container_9574P27_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_RANConfigurationUpdate.c b/lib/asn1c/ngap/NGAP_RANConfigurationUpdate.c index acb389640..842da8df5 100644 --- a/lib/asn1c/ngap/NGAP_RANConfigurationUpdate.c +++ b/lib/asn1c/ngap/NGAP_RANConfigurationUpdate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RANConfigurationUpdate_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_RANConfigurationUpdate, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P54, + &asn_DEF_NGAP_ProtocolIE_Container_9574P54, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RANConfigurationUpdate.h b/lib/asn1c/ngap/NGAP_RANConfigurationUpdate.h index 27d7d2525..959f093b9 100644 --- a/lib/asn1c/ngap/NGAP_RANConfigurationUpdate.h +++ b/lib/asn1c/ngap/NGAP_RANConfigurationUpdate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_RANConfigurationUpdate */ typedef struct NGAP_RANConfigurationUpdate { - NGAP_ProtocolIE_Container_9520P54_t protocolIEs; + NGAP_ProtocolIE_Container_9574P54_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_RANConfigurationUpdateAcknowledge.c b/lib/asn1c/ngap/NGAP_RANConfigurationUpdateAcknowledge.c index ceb39085d..970842083 100644 --- a/lib/asn1c/ngap/NGAP_RANConfigurationUpdateAcknowledge.c +++ b/lib/asn1c/ngap/NGAP_RANConfigurationUpdateAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RANConfigurationUpdateAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_RANConfigurationUpdateAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P55, + &asn_DEF_NGAP_ProtocolIE_Container_9574P55, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RANConfigurationUpdateAcknowledge.h b/lib/asn1c/ngap/NGAP_RANConfigurationUpdateAcknowledge.h index 5045a758c..6b39d8ff4 100644 --- a/lib/asn1c/ngap/NGAP_RANConfigurationUpdateAcknowledge.h +++ b/lib/asn1c/ngap/NGAP_RANConfigurationUpdateAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_RANConfigurationUpdateAcknowledge */ typedef struct NGAP_RANConfigurationUpdateAcknowledge { - NGAP_ProtocolIE_Container_9520P55_t protocolIEs; + NGAP_ProtocolIE_Container_9574P55_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_RANConfigurationUpdateFailure.c b/lib/asn1c/ngap/NGAP_RANConfigurationUpdateFailure.c index dd967011b..358560f66 100644 --- a/lib/asn1c/ngap/NGAP_RANConfigurationUpdateFailure.c +++ b/lib/asn1c/ngap/NGAP_RANConfigurationUpdateFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RANConfigurationUpdateFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_RANConfigurationUpdateFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P56, + &asn_DEF_NGAP_ProtocolIE_Container_9574P56, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RANConfigurationUpdateFailure.h b/lib/asn1c/ngap/NGAP_RANConfigurationUpdateFailure.h index 299af30ea..bcbaea4ea 100644 --- a/lib/asn1c/ngap/NGAP_RANConfigurationUpdateFailure.h +++ b/lib/asn1c/ngap/NGAP_RANConfigurationUpdateFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_RANConfigurationUpdateFailure */ typedef struct NGAP_RANConfigurationUpdateFailure { - NGAP_ProtocolIE_Container_9520P56_t protocolIEs; + NGAP_ProtocolIE_Container_9574P56_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_RANNodeName.c b/lib/asn1c/ngap/NGAP_RANNodeName.c index da769978c..66d247916 100644 --- a/lib/asn1c/ngap/NGAP_RANNodeName.c +++ b/lib/asn1c/ngap/NGAP_RANNodeName.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RANNodeName.h b/lib/asn1c/ngap/NGAP_RANNodeName.h index 6b5ee2e1f..aceba32a8 100644 --- a/lib/asn1c/ngap/NGAP_RANNodeName.h +++ b/lib/asn1c/ngap/NGAP_RANNodeName.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.c b/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.c index 79ebd0288..13ac31dc0 100644 --- a/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.c +++ b/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -49,7 +49,7 @@ asn_per_constraints_t asn_PER_type_NGAP_RANNodeNameUTF8String_constr_1 CC_NOTUSE #if 0 /* modified by acetcom */ { APC_UNCONSTRAINED, -1, -1, 0, 0 }, #else - { APC_CONSTRAINED | APC_EXTENSIBLE, 8, 8, 1, 150 } /* (SIZE(1..150,...)) */, + { APC_CONSTRAINED | APC_EXTENSIBLE, 8, 8, 1, 150 } /* (SIZE(1..150,...)) */, #endif 0, 0 /* No PER value map */ }; diff --git a/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.h b/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.h index 06dca9b5c..d7c0bfe1d 100644 --- a/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.h +++ b/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RANNodeNameVisibleString.c b/lib/asn1c/ngap/NGAP_RANNodeNameVisibleString.c index c17bf3fbd..331cc0ca1 100644 --- a/lib/asn1c/ngap/NGAP_RANNodeNameVisibleString.c +++ b/lib/asn1c/ngap/NGAP_RANNodeNameVisibleString.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RANNodeNameVisibleString.h b/lib/asn1c/ngap/NGAP_RANNodeNameVisibleString.h index 3ac3abc9b..60883c8e1 100644 --- a/lib/asn1c/ngap/NGAP_RANNodeNameVisibleString.h +++ b/lib/asn1c/ngap/NGAP_RANNodeNameVisibleString.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RANPagingPriority.c b/lib/asn1c/ngap/NGAP_RANPagingPriority.c index 51a95a32e..50fc405b3 100644 --- a/lib/asn1c/ngap/NGAP_RANPagingPriority.c +++ b/lib/asn1c/ngap/NGAP_RANPagingPriority.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RANPagingPriority.h b/lib/asn1c/ngap/NGAP_RANPagingPriority.h index 9053fc39c..faf58c5e9 100644 --- a/lib/asn1c/ngap/NGAP_RANPagingPriority.h +++ b/lib/asn1c/ngap/NGAP_RANPagingPriority.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RANStatusTransfer-TransparentContainer.c b/lib/asn1c/ngap/NGAP_RANStatusTransfer-TransparentContainer.c index 190936ffb..d66911a1d 100644 --- a/lib/asn1c/ngap/NGAP_RANStatusTransfer-TransparentContainer.c +++ b/lib/asn1c/ngap/NGAP_RANStatusTransfer-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_RANStatusTransfer_TransparentContainer_1[] { ATF_POINTER, 1, offsetof(struct NGAP_RANStatusTransfer_TransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P215, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P216, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RANStatusTransfer-TransparentContainer.h b/lib/asn1c/ngap/NGAP_RANStatusTransfer-TransparentContainer.h index c57dc3556..9e997b593 100644 --- a/lib/asn1c/ngap/NGAP_RANStatusTransfer-TransparentContainer.h +++ b/lib/asn1c/ngap/NGAP_RANStatusTransfer-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RAT-Information.c b/lib/asn1c/ngap/NGAP_RAT-Information.c index 60dadb0e2..bd5f55a47 100644 --- a/lib/asn1c/ngap/NGAP_RAT-Information.c +++ b/lib/asn1c/ngap/NGAP_RAT-Information.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RAT-Information.h b/lib/asn1c/ngap/NGAP_RAT-Information.h index 1febf171e..9d2d0cf1b 100644 --- a/lib/asn1c/ngap/NGAP_RAT-Information.h +++ b/lib/asn1c/ngap/NGAP_RAT-Information.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RATRestrictionInformation.c b/lib/asn1c/ngap/NGAP_RATRestrictionInformation.c index 10886b7c7..d5e43efd4 100644 --- a/lib/asn1c/ngap/NGAP_RATRestrictionInformation.c +++ b/lib/asn1c/ngap/NGAP_RATRestrictionInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RATRestrictionInformation.h b/lib/asn1c/ngap/NGAP_RATRestrictionInformation.h index f4699d2f8..3dc3fb183 100644 --- a/lib/asn1c/ngap/NGAP_RATRestrictionInformation.h +++ b/lib/asn1c/ngap/NGAP_RATRestrictionInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RATRestrictions-Item.c b/lib/asn1c/ngap/NGAP_RATRestrictions-Item.c index a758af698..fc3871305 100644 --- a/lib/asn1c/ngap/NGAP_RATRestrictions-Item.c +++ b/lib/asn1c/ngap/NGAP_RATRestrictions-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RATRestrictions_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_RATRestrictions_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P216, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P217, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RATRestrictions-Item.h b/lib/asn1c/ngap/NGAP_RATRestrictions-Item.h index 954219d35..77b6bfff9 100644 --- a/lib/asn1c/ngap/NGAP_RATRestrictions-Item.h +++ b/lib/asn1c/ngap/NGAP_RATRestrictions-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RATRestrictions.c b/lib/asn1c/ngap/NGAP_RATRestrictions.c index ba9318a92..3d3ddfd3e 100644 --- a/lib/asn1c/ngap/NGAP_RATRestrictions.c +++ b/lib/asn1c/ngap/NGAP_RATRestrictions.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RATRestrictions.h b/lib/asn1c/ngap/NGAP_RATRestrictions.h index 533bf982f..2b4f6b1df 100644 --- a/lib/asn1c/ngap/NGAP_RATRestrictions.h +++ b/lib/asn1c/ngap/NGAP_RATRestrictions.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RGLevelWirelineAccessCharacteristics.c b/lib/asn1c/ngap/NGAP_RGLevelWirelineAccessCharacteristics.c index b53e2c919..33e835100 100644 --- a/lib/asn1c/ngap/NGAP_RGLevelWirelineAccessCharacteristics.c +++ b/lib/asn1c/ngap/NGAP_RGLevelWirelineAccessCharacteristics.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RGLevelWirelineAccessCharacteristics.h b/lib/asn1c/ngap/NGAP_RGLevelWirelineAccessCharacteristics.h index c88fd87cf..dcf7025b2 100644 --- a/lib/asn1c/ngap/NGAP_RGLevelWirelineAccessCharacteristics.h +++ b/lib/asn1c/ngap/NGAP_RGLevelWirelineAccessCharacteristics.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RIMInformation.c b/lib/asn1c/ngap/NGAP_RIMInformation.c index 1db86528a..199346fe0 100644 --- a/lib/asn1c/ngap/NGAP_RIMInformation.c +++ b/lib/asn1c/ngap/NGAP_RIMInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -104,7 +104,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RIMInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_RIMInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P223, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P224, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RIMInformation.h b/lib/asn1c/ngap/NGAP_RIMInformation.h index 113a4978a..7be2cc45d 100644 --- a/lib/asn1c/ngap/NGAP_RIMInformation.h +++ b/lib/asn1c/ngap/NGAP_RIMInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RIMInformationTransfer.c b/lib/asn1c/ngap/NGAP_RIMInformationTransfer.c index 88b7daacb..e3dc44daf 100644 --- a/lib/asn1c/ngap/NGAP_RIMInformationTransfer.c +++ b/lib/asn1c/ngap/NGAP_RIMInformationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_RIMInformationTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_RIMInformationTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P222, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P223, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RIMInformationTransfer.h b/lib/asn1c/ngap/NGAP_RIMInformationTransfer.h index cb337db19..305c9ec1d 100644 --- a/lib/asn1c/ngap/NGAP_RIMInformationTransfer.h +++ b/lib/asn1c/ngap/NGAP_RIMInformationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RNC-ID.c b/lib/asn1c/ngap/NGAP_RNC-ID.c index a4abf5dd3..b0a4519be 100644 --- a/lib/asn1c/ngap/NGAP_RNC-ID.c +++ b/lib/asn1c/ngap/NGAP_RNC-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RNC-ID.h b/lib/asn1c/ngap/NGAP_RNC-ID.h index 241ee9339..5c99bdb5b 100644 --- a/lib/asn1c/ngap/NGAP_RNC-ID.h +++ b/lib/asn1c/ngap/NGAP_RNC-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RRCContainer.c b/lib/asn1c/ngap/NGAP_RRCContainer.c index a61e3015a..476b553ae 100644 --- a/lib/asn1c/ngap/NGAP_RRCContainer.c +++ b/lib/asn1c/ngap/NGAP_RRCContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RRCContainer.h b/lib/asn1c/ngap/NGAP_RRCContainer.h index 818943942..590071ae1 100644 --- a/lib/asn1c/ngap/NGAP_RRCContainer.h +++ b/lib/asn1c/ngap/NGAP_RRCContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RRCEstablishmentCause.c b/lib/asn1c/ngap/NGAP_RRCEstablishmentCause.c index 31cd5fbe1..08d622b1e 100644 --- a/lib/asn1c/ngap/NGAP_RRCEstablishmentCause.c +++ b/lib/asn1c/ngap/NGAP_RRCEstablishmentCause.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RRCEstablishmentCause.h b/lib/asn1c/ngap/NGAP_RRCEstablishmentCause.h index c4edb781d..90f4c9030 100644 --- a/lib/asn1c/ngap/NGAP_RRCEstablishmentCause.h +++ b/lib/asn1c/ngap/NGAP_RRCEstablishmentCause.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReport.c b/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReport.c index fc5a162a9..d4914e323 100644 --- a/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReport.c +++ b/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RRCInactiveTransitionReport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_RRCInactiveTransitionReport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P24, + &asn_DEF_NGAP_ProtocolIE_Container_9574P24, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReport.h b/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReport.h index e4b2ae640..140aaecd4 100644 --- a/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReport.h +++ b/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_RRCInactiveTransitionReport */ typedef struct NGAP_RRCInactiveTransitionReport { - NGAP_ProtocolIE_Container_9520P24_t protocolIEs; + NGAP_ProtocolIE_Container_9574P24_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReportRequest.c b/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReportRequest.c index b85f20e7f..0f4079385 100644 --- a/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReportRequest.c +++ b/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReportRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReportRequest.h b/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReportRequest.h index ae485a9f0..99f4f3726 100644 --- a/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReportRequest.h +++ b/lib/asn1c/ngap/NGAP_RRCInactiveTransitionReportRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RRCState.c b/lib/asn1c/ngap/NGAP_RRCState.c index 853ca4af8..64982d2a8 100644 --- a/lib/asn1c/ngap/NGAP_RRCState.c +++ b/lib/asn1c/ngap/NGAP_RRCState.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RRCState.h b/lib/asn1c/ngap/NGAP_RRCState.h index eb42449de..d898e77ca 100644 --- a/lib/asn1c/ngap/NGAP_RRCState.h +++ b/lib/asn1c/ngap/NGAP_RRCState.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RSN.c b/lib/asn1c/ngap/NGAP_RSN.c index 0064b138e..cd213a12f 100644 --- a/lib/asn1c/ngap/NGAP_RSN.c +++ b/lib/asn1c/ngap/NGAP_RSN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RSN.h b/lib/asn1c/ngap/NGAP_RSN.h index 9c602d77c..fdc0849b8 100644 --- a/lib/asn1c/ngap/NGAP_RSN.h +++ b/lib/asn1c/ngap/NGAP_RSN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Range.c b/lib/asn1c/ngap/NGAP_Range.c index 6597dd0b4..25f0daead 100644 --- a/lib/asn1c/ngap/NGAP_Range.c +++ b/lib/asn1c/ngap/NGAP_Range.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Range.h b/lib/asn1c/ngap/NGAP_Range.h index 766abea86..38eda9552 100644 --- a/lib/asn1c/ngap/NGAP_Range.h +++ b/lib/asn1c/ngap/NGAP_Range.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RecommendedCellItem.c b/lib/asn1c/ngap/NGAP_RecommendedCellItem.c index 5bd2ba81f..409b2ed19 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedCellItem.c +++ b/lib/asn1c/ngap/NGAP_RecommendedCellItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -78,7 +78,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_RecommendedCellItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P218, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P219, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RecommendedCellItem.h b/lib/asn1c/ngap/NGAP_RecommendedCellItem.h index ca15bc7b8..1c7f0ca77 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedCellItem.h +++ b/lib/asn1c/ngap/NGAP_RecommendedCellItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RecommendedCellList.c b/lib/asn1c/ngap/NGAP_RecommendedCellList.c index d453c7646..a5e72de55 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedCellList.c +++ b/lib/asn1c/ngap/NGAP_RecommendedCellList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RecommendedCellList.h b/lib/asn1c/ngap/NGAP_RecommendedCellList.h index 3fac98d33..d87a5e9ba 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedCellList.h +++ b/lib/asn1c/ngap/NGAP_RecommendedCellList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RecommendedCellsForPaging.c b/lib/asn1c/ngap/NGAP_RecommendedCellsForPaging.c index b4bd977a7..c6e1a7d87 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedCellsForPaging.c +++ b/lib/asn1c/ngap/NGAP_RecommendedCellsForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedCellsForPaging_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_RecommendedCellsForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P217, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P218, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RecommendedCellsForPaging.h b/lib/asn1c/ngap/NGAP_RecommendedCellsForPaging.h index f94fccc05..da39f7f87 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedCellsForPaging.h +++ b/lib/asn1c/ngap/NGAP_RecommendedCellsForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RecommendedRANNodeItem.c b/lib/asn1c/ngap/NGAP_RecommendedRANNodeItem.c index b0cb259a2..82e4070bd 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedRANNodeItem.c +++ b/lib/asn1c/ngap/NGAP_RecommendedRANNodeItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodeItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_RecommendedRANNodeItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P220, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P221, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RecommendedRANNodeItem.h b/lib/asn1c/ngap/NGAP_RecommendedRANNodeItem.h index b574d9e56..c88843a32 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedRANNodeItem.h +++ b/lib/asn1c/ngap/NGAP_RecommendedRANNodeItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RecommendedRANNodeList.c b/lib/asn1c/ngap/NGAP_RecommendedRANNodeList.c index d8a2b926e..ea319c59f 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedRANNodeList.c +++ b/lib/asn1c/ngap/NGAP_RecommendedRANNodeList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RecommendedRANNodeList.h b/lib/asn1c/ngap/NGAP_RecommendedRANNodeList.h index 840db050a..c479a2293 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedRANNodeList.h +++ b/lib/asn1c/ngap/NGAP_RecommendedRANNodeList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RecommendedRANNodesForPaging.c b/lib/asn1c/ngap/NGAP_RecommendedRANNodesForPaging.c index 2dbd5db60..abda09b67 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedRANNodesForPaging.c +++ b/lib/asn1c/ngap/NGAP_RecommendedRANNodesForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RecommendedRANNodesForPaging_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_RecommendedRANNodesForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P219, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P220, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RecommendedRANNodesForPaging.h b/lib/asn1c/ngap/NGAP_RecommendedRANNodesForPaging.h index 2f85ceb3f..1b944b6ca 100644 --- a/lib/asn1c/ngap/NGAP_RecommendedRANNodesForPaging.h +++ b/lib/asn1c/ngap/NGAP_RecommendedRANNodesForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RedirectionVoiceFallback.c b/lib/asn1c/ngap/NGAP_RedirectionVoiceFallback.c index 6442ab8b3..bb6b0e0e1 100644 --- a/lib/asn1c/ngap/NGAP_RedirectionVoiceFallback.c +++ b/lib/asn1c/ngap/NGAP_RedirectionVoiceFallback.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RedirectionVoiceFallback.h b/lib/asn1c/ngap/NGAP_RedirectionVoiceFallback.h index dc963077b..1a2ac89ba 100644 --- a/lib/asn1c/ngap/NGAP_RedirectionVoiceFallback.h +++ b/lib/asn1c/ngap/NGAP_RedirectionVoiceFallback.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RedundantPDUSessionInformation.c b/lib/asn1c/ngap/NGAP_RedundantPDUSessionInformation.c index 9d5e846ef..f1e3d5e89 100644 --- a/lib/asn1c/ngap/NGAP_RedundantPDUSessionInformation.c +++ b/lib/asn1c/ngap/NGAP_RedundantPDUSessionInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_RedundantPDUSessionInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_RedundantPDUSessionInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P221, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P222, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RedundantPDUSessionInformation.h b/lib/asn1c/ngap/NGAP_RedundantPDUSessionInformation.h index 43dda1cef..063a06339 100644 --- a/lib/asn1c/ngap/NGAP_RedundantPDUSessionInformation.h +++ b/lib/asn1c/ngap/NGAP_RedundantPDUSessionInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RedundantQosFlowIndicator.c b/lib/asn1c/ngap/NGAP_RedundantQosFlowIndicator.c index fec5d3940..ff5b45fde 100644 --- a/lib/asn1c/ngap/NGAP_RedundantQosFlowIndicator.c +++ b/lib/asn1c/ngap/NGAP_RedundantQosFlowIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RedundantQosFlowIndicator.h b/lib/asn1c/ngap/NGAP_RedundantQosFlowIndicator.h index 9591a3467..96be7b04e 100644 --- a/lib/asn1c/ngap/NGAP_RedundantQosFlowIndicator.h +++ b/lib/asn1c/ngap/NGAP_RedundantQosFlowIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ReflectiveQosAttribute.c b/lib/asn1c/ngap/NGAP_ReflectiveQosAttribute.c index e5aa49dc6..bcdbc7f73 100644 --- a/lib/asn1c/ngap/NGAP_ReflectiveQosAttribute.c +++ b/lib/asn1c/ngap/NGAP_ReflectiveQosAttribute.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ReflectiveQosAttribute.h b/lib/asn1c/ngap/NGAP_ReflectiveQosAttribute.h index 701cbc875..9f77edabc 100644 --- a/lib/asn1c/ngap/NGAP_ReflectiveQosAttribute.h +++ b/lib/asn1c/ngap/NGAP_ReflectiveQosAttribute.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RejectedNSSAIinPLMN.c b/lib/asn1c/ngap/NGAP_RejectedNSSAIinPLMN.c index a3c65308e..bbfe95ca4 100644 --- a/lib/asn1c/ngap/NGAP_RejectedNSSAIinPLMN.c +++ b/lib/asn1c/ngap/NGAP_RejectedNSSAIinPLMN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RejectedNSSAIinPLMN.h b/lib/asn1c/ngap/NGAP_RejectedNSSAIinPLMN.h index b04545eff..0bc0fa6c2 100644 --- a/lib/asn1c/ngap/NGAP_RejectedNSSAIinPLMN.h +++ b/lib/asn1c/ngap/NGAP_RejectedNSSAIinPLMN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RejectedNSSAIinTA.c b/lib/asn1c/ngap/NGAP_RejectedNSSAIinTA.c index 30723b00c..57bda6332 100644 --- a/lib/asn1c/ngap/NGAP_RejectedNSSAIinTA.c +++ b/lib/asn1c/ngap/NGAP_RejectedNSSAIinTA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RejectedNSSAIinTA.h b/lib/asn1c/ngap/NGAP_RejectedNSSAIinTA.h index 30726100f..a0122711e 100644 --- a/lib/asn1c/ngap/NGAP_RejectedNSSAIinTA.h +++ b/lib/asn1c/ngap/NGAP_RejectedNSSAIinTA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RelativeAMFCapacity.c b/lib/asn1c/ngap/NGAP_RelativeAMFCapacity.c index 09a5d6aad..db6339261 100644 --- a/lib/asn1c/ngap/NGAP_RelativeAMFCapacity.c +++ b/lib/asn1c/ngap/NGAP_RelativeAMFCapacity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RelativeAMFCapacity.h b/lib/asn1c/ngap/NGAP_RelativeAMFCapacity.h index 8584bd3e0..79026ba23 100644 --- a/lib/asn1c/ngap/NGAP_RelativeAMFCapacity.h +++ b/lib/asn1c/ngap/NGAP_RelativeAMFCapacity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RepetitionPeriod.c b/lib/asn1c/ngap/NGAP_RepetitionPeriod.c index c24b2715b..8ff70ac17 100644 --- a/lib/asn1c/ngap/NGAP_RepetitionPeriod.c +++ b/lib/asn1c/ngap/NGAP_RepetitionPeriod.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RepetitionPeriod.h b/lib/asn1c/ngap/NGAP_RepetitionPeriod.h index 66f15b7e6..0fd7c0c80 100644 --- a/lib/asn1c/ngap/NGAP_RepetitionPeriod.h +++ b/lib/asn1c/ngap/NGAP_RepetitionPeriod.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ReportAmountMDT.c b/lib/asn1c/ngap/NGAP_ReportAmountMDT.c index 925433da0..63cad39fb 100644 --- a/lib/asn1c/ngap/NGAP_ReportAmountMDT.c +++ b/lib/asn1c/ngap/NGAP_ReportAmountMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ReportAmountMDT.h b/lib/asn1c/ngap/NGAP_ReportAmountMDT.h index 9a75c5a3c..34a2af84d 100644 --- a/lib/asn1c/ngap/NGAP_ReportAmountMDT.h +++ b/lib/asn1c/ngap/NGAP_ReportAmountMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ReportArea.c b/lib/asn1c/ngap/NGAP_ReportArea.c index f4f536654..4f1ead3a6 100644 --- a/lib/asn1c/ngap/NGAP_ReportArea.c +++ b/lib/asn1c/ngap/NGAP_ReportArea.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ReportArea.h b/lib/asn1c/ngap/NGAP_ReportArea.h index f7248d0c9..0a01fb8df 100644 --- a/lib/asn1c/ngap/NGAP_ReportArea.h +++ b/lib/asn1c/ngap/NGAP_ReportArea.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ReportIntervalMDT.c b/lib/asn1c/ngap/NGAP_ReportIntervalMDT.c index 61a3e2738..62f2eac9f 100644 --- a/lib/asn1c/ngap/NGAP_ReportIntervalMDT.c +++ b/lib/asn1c/ngap/NGAP_ReportIntervalMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ReportIntervalMDT.h b/lib/asn1c/ngap/NGAP_ReportIntervalMDT.h index 0ca2e997a..9f7d47a80 100644 --- a/lib/asn1c/ngap/NGAP_ReportIntervalMDT.h +++ b/lib/asn1c/ngap/NGAP_ReportIntervalMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RerouteNASRequest.c b/lib/asn1c/ngap/NGAP_RerouteNASRequest.c index 920006bb5..a604636d3 100644 --- a/lib/asn1c/ngap/NGAP_RerouteNASRequest.c +++ b/lib/asn1c/ngap/NGAP_RerouteNASRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RerouteNASRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_RerouteNASRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P50, + &asn_DEF_NGAP_ProtocolIE_Container_9574P50, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RerouteNASRequest.h b/lib/asn1c/ngap/NGAP_RerouteNASRequest.h index e54eb5256..7aa3a130b 100644 --- a/lib/asn1c/ngap/NGAP_RerouteNASRequest.h +++ b/lib/asn1c/ngap/NGAP_RerouteNASRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_RerouteNASRequest */ typedef struct NGAP_RerouteNASRequest { - NGAP_ProtocolIE_Container_9520P50_t protocolIEs; + NGAP_ProtocolIE_Container_9574P50_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_ResetAll.c b/lib/asn1c/ngap/NGAP_ResetAll.c index 72b4bb2c5..6bfbdf378 100644 --- a/lib/asn1c/ngap/NGAP_ResetAll.c +++ b/lib/asn1c/ngap/NGAP_ResetAll.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ResetAll.h b/lib/asn1c/ngap/NGAP_ResetAll.h index 0d1b4ffd3..7abdd8230 100644 --- a/lib/asn1c/ngap/NGAP_ResetAll.h +++ b/lib/asn1c/ngap/NGAP_ResetAll.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ResetType.c b/lib/asn1c/ngap/NGAP_ResetType.c index 4e09469bd..b2a3866e4 100644 --- a/lib/asn1c/ngap/NGAP_ResetType.c +++ b/lib/asn1c/ngap/NGAP_ResetType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -54,7 +54,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_ResetType_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_ResetType, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P35, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P35, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ResetType.h b/lib/asn1c/ngap/NGAP_ResetType.h index b402aaa55..000c942ee 100644 --- a/lib/asn1c/ngap/NGAP_ResetType.h +++ b/lib/asn1c/ngap/NGAP_ResetType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RetrieveUEInformation.c b/lib/asn1c/ngap/NGAP_RetrieveUEInformation.c index b381a0baa..f70db7a07 100644 --- a/lib/asn1c/ngap/NGAP_RetrieveUEInformation.c +++ b/lib/asn1c/ngap/NGAP_RetrieveUEInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_RetrieveUEInformation_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_RetrieveUEInformation, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P25, + &asn_DEF_NGAP_ProtocolIE_Container_9574P25, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_RetrieveUEInformation.h b/lib/asn1c/ngap/NGAP_RetrieveUEInformation.h index 2e8ad50ab..418956c72 100644 --- a/lib/asn1c/ngap/NGAP_RetrieveUEInformation.h +++ b/lib/asn1c/ngap/NGAP_RetrieveUEInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_RetrieveUEInformation */ typedef struct NGAP_RetrieveUEInformation { - NGAP_ProtocolIE_Container_9520P25_t protocolIEs; + NGAP_ProtocolIE_Container_9574P25_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_RoutingID.c b/lib/asn1c/ngap/NGAP_RoutingID.c index 85f01606f..8f3b2e4a5 100644 --- a/lib/asn1c/ngap/NGAP_RoutingID.c +++ b/lib/asn1c/ngap/NGAP_RoutingID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_RoutingID.h b/lib/asn1c/ngap/NGAP_RoutingID.h index e385ff9ed..2228786ae 100644 --- a/lib/asn1c/ngap/NGAP_RoutingID.h +++ b/lib/asn1c/ngap/NGAP_RoutingID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_S-NSSAI.c b/lib/asn1c/ngap/NGAP_S-NSSAI.c index 0c55fcd59..0d04c97fb 100644 --- a/lib/asn1c/ngap/NGAP_S-NSSAI.c +++ b/lib/asn1c/ngap/NGAP_S-NSSAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_S_NSSAI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_S_NSSAI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P237, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P238, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_S-NSSAI.h b/lib/asn1c/ngap/NGAP_S-NSSAI.h index 5404462f2..6d67d9af7 100644 --- a/lib/asn1c/ngap/NGAP_S-NSSAI.h +++ b/lib/asn1c/ngap/NGAP_S-NSSAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SCTP-TLAs.c b/lib/asn1c/ngap/NGAP_SCTP-TLAs.c index 5a7c11b18..75240b1f7 100644 --- a/lib/asn1c/ngap/NGAP_SCTP-TLAs.c +++ b/lib/asn1c/ngap/NGAP_SCTP-TLAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SCTP-TLAs.h b/lib/asn1c/ngap/NGAP_SCTP-TLAs.h index a55527ff8..39a7d42b0 100644 --- a/lib/asn1c/ngap/NGAP_SCTP-TLAs.h +++ b/lib/asn1c/ngap/NGAP_SCTP-TLAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SD.c b/lib/asn1c/ngap/NGAP_SD.c index 25bc000ee..54372c35e 100644 --- a/lib/asn1c/ngap/NGAP_SD.c +++ b/lib/asn1c/ngap/NGAP_SD.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SD.h b/lib/asn1c/ngap/NGAP_SD.h index 0dcf95c93..91f48a5ae 100644 --- a/lib/asn1c/ngap/NGAP_SD.h +++ b/lib/asn1c/ngap/NGAP_SD.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SNPN-MobilityInformation.c b/lib/asn1c/ngap/NGAP_SNPN-MobilityInformation.c index 857a83755..24873e07b 100644 --- a/lib/asn1c/ngap/NGAP_SNPN-MobilityInformation.c +++ b/lib/asn1c/ngap/NGAP_SNPN-MobilityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SNPN_MobilityInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SNPN_MobilityInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P236, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P237, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SNPN-MobilityInformation.h b/lib/asn1c/ngap/NGAP_SNPN-MobilityInformation.h index 756e30e48..979bb347f 100644 --- a/lib/asn1c/ngap/NGAP_SNPN-MobilityInformation.h +++ b/lib/asn1c/ngap/NGAP_SNPN-MobilityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SONConfigurationTransfer.c b/lib/asn1c/ngap/NGAP_SONConfigurationTransfer.c index e4f3e816e..c98988970 100644 --- a/lib/asn1c/ngap/NGAP_SONConfigurationTransfer.c +++ b/lib/asn1c/ngap/NGAP_SONConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -81,7 +81,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_SONConfigurationTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SONConfigurationTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P238, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P239, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SONConfigurationTransfer.h b/lib/asn1c/ngap/NGAP_SONConfigurationTransfer.h index 1f83172cf..24de1ed23 100644 --- a/lib/asn1c/ngap/NGAP_SONConfigurationTransfer.h +++ b/lib/asn1c/ngap/NGAP_SONConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SONInformation.c b/lib/asn1c/ngap/NGAP_SONInformation.c index 7823cea74..fcb62674d 100644 --- a/lib/asn1c/ngap/NGAP_SONInformation.c +++ b/lib/asn1c/ngap/NGAP_SONInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -54,7 +54,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SONInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_SONInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P37, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P37, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SONInformation.h b/lib/asn1c/ngap/NGAP_SONInformation.h index a926bddf3..dc39844c1 100644 --- a/lib/asn1c/ngap/NGAP_SONInformation.h +++ b/lib/asn1c/ngap/NGAP_SONInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SONInformationReply.c b/lib/asn1c/ngap/NGAP_SONInformationReply.c index 855a21054..1ae3d4016 100644 --- a/lib/asn1c/ngap/NGAP_SONInformationReply.c +++ b/lib/asn1c/ngap/NGAP_SONInformationReply.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -30,7 +30,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SONInformationReply_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SONInformationReply, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P239, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P240, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SONInformationReply.h b/lib/asn1c/ngap/NGAP_SONInformationReply.h index 995a2c246..853aa5b0d 100644 --- a/lib/asn1c/ngap/NGAP_SONInformationReply.h +++ b/lib/asn1c/ngap/NGAP_SONInformationReply.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SONInformationReport.c b/lib/asn1c/ngap/NGAP_SONInformationReport.c index e70eec149..3b381da0e 100644 --- a/lib/asn1c/ngap/NGAP_SONInformationReport.c +++ b/lib/asn1c/ngap/NGAP_SONInformationReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_SONInformationReport_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_SONInformationReport, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P38, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P38, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SONInformationReport.h b/lib/asn1c/ngap/NGAP_SONInformationReport.h index c91ad67fc..cba40738c 100644 --- a/lib/asn1c/ngap/NGAP_SONInformationReport.h +++ b/lib/asn1c/ngap/NGAP_SONInformationReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SONInformationRequest.c b/lib/asn1c/ngap/NGAP_SONInformationRequest.c index 3895a6066..c788cbe81 100644 --- a/lib/asn1c/ngap/NGAP_SONInformationRequest.c +++ b/lib/asn1c/ngap/NGAP_SONInformationRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SONInformationRequest.h b/lib/asn1c/ngap/NGAP_SONInformationRequest.h index 339b0cae0..ff4c2c92c 100644 --- a/lib/asn1c/ngap/NGAP_SONInformationRequest.h +++ b/lib/asn1c/ngap/NGAP_SONInformationRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SRVCCOperationPossible.c b/lib/asn1c/ngap/NGAP_SRVCCOperationPossible.c index c6db3e4de..d3db6ce8f 100644 --- a/lib/asn1c/ngap/NGAP_SRVCCOperationPossible.c +++ b/lib/asn1c/ngap/NGAP_SRVCCOperationPossible.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SRVCCOperationPossible.h b/lib/asn1c/ngap/NGAP_SRVCCOperationPossible.h index b7beb0605..c50687ce0 100644 --- a/lib/asn1c/ngap/NGAP_SRVCCOperationPossible.h +++ b/lib/asn1c/ngap/NGAP_SRVCCOperationPossible.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SST.c b/lib/asn1c/ngap/NGAP_SST.c index b32ab0af4..d0839076f 100644 --- a/lib/asn1c/ngap/NGAP_SST.c +++ b/lib/asn1c/ngap/NGAP_SST.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SST.h b/lib/asn1c/ngap/NGAP_SST.h index 9d5b4cab8..a3fafa30c 100644 --- a/lib/asn1c/ngap/NGAP_SST.h +++ b/lib/asn1c/ngap/NGAP_SST.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ScheduledCommunicationTime.c b/lib/asn1c/ngap/NGAP_ScheduledCommunicationTime.c index c265d1f3a..400463439 100644 --- a/lib/asn1c/ngap/NGAP_ScheduledCommunicationTime.c +++ b/lib/asn1c/ngap/NGAP_ScheduledCommunicationTime.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -165,7 +165,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ScheduledCommunicationTime_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ScheduledCommunicationTime, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P224, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P225, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ScheduledCommunicationTime.h b/lib/asn1c/ngap/NGAP_ScheduledCommunicationTime.h index 2cf7d7dbf..8be52208f 100644 --- a/lib/asn1c/ngap/NGAP_ScheduledCommunicationTime.h +++ b/lib/asn1c/ngap/NGAP_ScheduledCommunicationTime.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReport.c b/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReport.c index c053bb5b5..245fe36d8 100644 --- a/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReport.c +++ b/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_SecondaryRATDataUsageReport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P89, + &asn_DEF_NGAP_ProtocolIE_Container_9574P89, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReport.h b/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReport.h index 2fb8675a1..25febb5bf 100644 --- a/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReport.h +++ b/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_SecondaryRATDataUsageReport */ typedef struct NGAP_SecondaryRATDataUsageReport { - NGAP_ProtocolIE_Container_9520P89_t protocolIEs; + NGAP_ProtocolIE_Container_9574P89_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReportTransfer.c b/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReportTransfer.c index 4cd486222..c941083c4 100644 --- a/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReportTransfer.c +++ b/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReportTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -30,7 +30,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATDataUsageReportTransfer_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_SecondaryRATDataUsageReportTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P226, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P227, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReportTransfer.h b/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReportTransfer.h index 42258cc5c..38923f819 100644 --- a/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReportTransfer.h +++ b/lib/asn1c/ngap/NGAP_SecondaryRATDataUsageReportTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SecondaryRATUsageInformation.c b/lib/asn1c/ngap/NGAP_SecondaryRATUsageInformation.c index c87f0dd03..29d4478c3 100644 --- a/lib/asn1c/ngap/NGAP_SecondaryRATUsageInformation.c +++ b/lib/asn1c/ngap/NGAP_SecondaryRATUsageInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -48,7 +48,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecondaryRATUsageInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SecondaryRATUsageInformation, iE_Extension), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P225, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P226, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SecondaryRATUsageInformation.h b/lib/asn1c/ngap/NGAP_SecondaryRATUsageInformation.h index 2b1c8e5a8..194028a17 100644 --- a/lib/asn1c/ngap/NGAP_SecondaryRATUsageInformation.h +++ b/lib/asn1c/ngap/NGAP_SecondaryRATUsageInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SecurityContext.c b/lib/asn1c/ngap/NGAP_SecurityContext.c index c5549261d..8a5639f9d 100644 --- a/lib/asn1c/ngap/NGAP_SecurityContext.c +++ b/lib/asn1c/ngap/NGAP_SecurityContext.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_SecurityContext_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SecurityContext, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P227, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P228, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SecurityContext.h b/lib/asn1c/ngap/NGAP_SecurityContext.h index 0a30a0115..8e53ab3c0 100644 --- a/lib/asn1c/ngap/NGAP_SecurityContext.h +++ b/lib/asn1c/ngap/NGAP_SecurityContext.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SecurityIndication.c b/lib/asn1c/ngap/NGAP_SecurityIndication.c index 55b732084..cea1bffda 100644 --- a/lib/asn1c/ngap/NGAP_SecurityIndication.c +++ b/lib/asn1c/ngap/NGAP_SecurityIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityIndication_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SecurityIndication, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P228, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P229, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SecurityIndication.h b/lib/asn1c/ngap/NGAP_SecurityIndication.h index e62455994..22a178faa 100644 --- a/lib/asn1c/ngap/NGAP_SecurityIndication.h +++ b/lib/asn1c/ngap/NGAP_SecurityIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SecurityKey.c b/lib/asn1c/ngap/NGAP_SecurityKey.c index 532312172..85bba0d08 100644 --- a/lib/asn1c/ngap/NGAP_SecurityKey.c +++ b/lib/asn1c/ngap/NGAP_SecurityKey.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SecurityKey.h b/lib/asn1c/ngap/NGAP_SecurityKey.h index 0f33c2df4..eaff603ac 100644 --- a/lib/asn1c/ngap/NGAP_SecurityKey.h +++ b/lib/asn1c/ngap/NGAP_SecurityKey.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SecurityResult.c b/lib/asn1c/ngap/NGAP_SecurityResult.c index 7df7bace5..1ad3cab17 100644 --- a/lib/asn1c/ngap/NGAP_SecurityResult.c +++ b/lib/asn1c/ngap/NGAP_SecurityResult.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SecurityResult_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SecurityResult, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P229, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P230, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SecurityResult.h b/lib/asn1c/ngap/NGAP_SecurityResult.h index a6e9b45b1..fcc056c4f 100644 --- a/lib/asn1c/ngap/NGAP_SecurityResult.h +++ b/lib/asn1c/ngap/NGAP_SecurityResult.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SensorMeasConfig.c b/lib/asn1c/ngap/NGAP_SensorMeasConfig.c index 6048668c5..9ea97dd7a 100644 --- a/lib/asn1c/ngap/NGAP_SensorMeasConfig.c +++ b/lib/asn1c/ngap/NGAP_SensorMeasConfig.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SensorMeasConfig.h b/lib/asn1c/ngap/NGAP_SensorMeasConfig.h index de1e85940..44c9a2708 100644 --- a/lib/asn1c/ngap/NGAP_SensorMeasConfig.h +++ b/lib/asn1c/ngap/NGAP_SensorMeasConfig.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SensorMeasConfigNameItem.c b/lib/asn1c/ngap/NGAP_SensorMeasConfigNameItem.c index 99ba5c5d5..9e6a4b7a7 100644 --- a/lib/asn1c/ngap/NGAP_SensorMeasConfigNameItem.c +++ b/lib/asn1c/ngap/NGAP_SensorMeasConfigNameItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorMeasConfigNameItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SensorMeasConfigNameItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P231, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P232, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SensorMeasConfigNameItem.h b/lib/asn1c/ngap/NGAP_SensorMeasConfigNameItem.h index 74df46dcf..c862e3c88 100644 --- a/lib/asn1c/ngap/NGAP_SensorMeasConfigNameItem.h +++ b/lib/asn1c/ngap/NGAP_SensorMeasConfigNameItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SensorMeasConfigNameList.c b/lib/asn1c/ngap/NGAP_SensorMeasConfigNameList.c index 8ab889553..8058cb73a 100644 --- a/lib/asn1c/ngap/NGAP_SensorMeasConfigNameList.c +++ b/lib/asn1c/ngap/NGAP_SensorMeasConfigNameList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SensorMeasConfigNameList.h b/lib/asn1c/ngap/NGAP_SensorMeasConfigNameList.h index b3b153c7b..0eb3cbc09 100644 --- a/lib/asn1c/ngap/NGAP_SensorMeasConfigNameList.h +++ b/lib/asn1c/ngap/NGAP_SensorMeasConfigNameList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SensorMeasurementConfiguration.c b/lib/asn1c/ngap/NGAP_SensorMeasurementConfiguration.c index 87fa6ed2f..ad6a74198 100644 --- a/lib/asn1c/ngap/NGAP_SensorMeasurementConfiguration.c +++ b/lib/asn1c/ngap/NGAP_SensorMeasurementConfiguration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorMeasurementConfiguration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SensorMeasurementConfiguration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P230, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P231, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SensorMeasurementConfiguration.h b/lib/asn1c/ngap/NGAP_SensorMeasurementConfiguration.h index a699804c1..d97d2cb53 100644 --- a/lib/asn1c/ngap/NGAP_SensorMeasurementConfiguration.h +++ b/lib/asn1c/ngap/NGAP_SensorMeasurementConfiguration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SensorNameConfig.c b/lib/asn1c/ngap/NGAP_SensorNameConfig.c index 9f6d611b7..43f3cf274 100644 --- a/lib/asn1c/ngap/NGAP_SensorNameConfig.c +++ b/lib/asn1c/ngap/NGAP_SensorNameConfig.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -238,7 +238,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SensorNameConfig_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_SensorNameConfig, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P36, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P36, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SensorNameConfig.h b/lib/asn1c/ngap/NGAP_SensorNameConfig.h index 126441739..96ffd4aac 100644 --- a/lib/asn1c/ngap/NGAP_SensorNameConfig.h +++ b/lib/asn1c/ngap/NGAP_SensorNameConfig.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SerialNumber.c b/lib/asn1c/ngap/NGAP_SerialNumber.c index 0a9721294..15f1a3f61 100644 --- a/lib/asn1c/ngap/NGAP_SerialNumber.c +++ b/lib/asn1c/ngap/NGAP_SerialNumber.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SerialNumber.h b/lib/asn1c/ngap/NGAP_SerialNumber.h index cb45153e7..2e3381606 100644 --- a/lib/asn1c/ngap/NGAP_SerialNumber.h +++ b/lib/asn1c/ngap/NGAP_SerialNumber.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ServedGUAMIItem.c b/lib/asn1c/ngap/NGAP_ServedGUAMIItem.c index 208ca9ccd..c3f0f574e 100644 --- a/lib/asn1c/ngap/NGAP_ServedGUAMIItem.c +++ b/lib/asn1c/ngap/NGAP_ServedGUAMIItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ServedGUAMIItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ServedGUAMIItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P232, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P233, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ServedGUAMIItem.h b/lib/asn1c/ngap/NGAP_ServedGUAMIItem.h index ff04754b8..62b773693 100644 --- a/lib/asn1c/ngap/NGAP_ServedGUAMIItem.h +++ b/lib/asn1c/ngap/NGAP_ServedGUAMIItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ServedGUAMIList.c b/lib/asn1c/ngap/NGAP_ServedGUAMIList.c index 9240748b2..4f7d317e4 100644 --- a/lib/asn1c/ngap/NGAP_ServedGUAMIList.c +++ b/lib/asn1c/ngap/NGAP_ServedGUAMIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ServedGUAMIList.h b/lib/asn1c/ngap/NGAP_ServedGUAMIList.h index e90d771cd..064e14fef 100644 --- a/lib/asn1c/ngap/NGAP_ServedGUAMIList.h +++ b/lib/asn1c/ngap/NGAP_ServedGUAMIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ServiceAreaInformation-Item.c b/lib/asn1c/ngap/NGAP_ServiceAreaInformation-Item.c index a71f72363..d7cf4a017 100644 --- a/lib/asn1c/ngap/NGAP_ServiceAreaInformation-Item.c +++ b/lib/asn1c/ngap/NGAP_ServiceAreaInformation-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -65,7 +65,7 @@ asn_TYPE_member_t asn_MBR_NGAP_ServiceAreaInformation_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_ServiceAreaInformation_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P233, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P234, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_ServiceAreaInformation-Item.h b/lib/asn1c/ngap/NGAP_ServiceAreaInformation-Item.h index a2863c140..3106d5831 100644 --- a/lib/asn1c/ngap/NGAP_ServiceAreaInformation-Item.h +++ b/lib/asn1c/ngap/NGAP_ServiceAreaInformation-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ServiceAreaInformation.c b/lib/asn1c/ngap/NGAP_ServiceAreaInformation.c index 828de4126..798f17c1c 100644 --- a/lib/asn1c/ngap/NGAP_ServiceAreaInformation.c +++ b/lib/asn1c/ngap/NGAP_ServiceAreaInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ServiceAreaInformation.h b/lib/asn1c/ngap/NGAP_ServiceAreaInformation.h index 2c7c73478..05eb9c760 100644 --- a/lib/asn1c/ngap/NGAP_ServiceAreaInformation.h +++ b/lib/asn1c/ngap/NGAP_ServiceAreaInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SgNB-UE-X2AP-ID.c b/lib/asn1c/ngap/NGAP_SgNB-UE-X2AP-ID.c index 3faaacdec..40dc8b2a3 100644 --- a/lib/asn1c/ngap/NGAP_SgNB-UE-X2AP-ID.c +++ b/lib/asn1c/ngap/NGAP_SgNB-UE-X2AP-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SgNB-UE-X2AP-ID.h b/lib/asn1c/ngap/NGAP_SgNB-UE-X2AP-ID.h index f569f75a8..a177e3552 100644 --- a/lib/asn1c/ngap/NGAP_SgNB-UE-X2AP-ID.h +++ b/lib/asn1c/ngap/NGAP_SgNB-UE-X2AP-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SliceOverloadItem.c b/lib/asn1c/ngap/NGAP_SliceOverloadItem.c index c05a1b922..f8fab24d1 100644 --- a/lib/asn1c/ngap/NGAP_SliceOverloadItem.c +++ b/lib/asn1c/ngap/NGAP_SliceOverloadItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SliceOverloadItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SliceOverloadItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P234, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P235, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SliceOverloadItem.h b/lib/asn1c/ngap/NGAP_SliceOverloadItem.h index b18965177..04ccc4822 100644 --- a/lib/asn1c/ngap/NGAP_SliceOverloadItem.h +++ b/lib/asn1c/ngap/NGAP_SliceOverloadItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SliceOverloadList.c b/lib/asn1c/ngap/NGAP_SliceOverloadList.c index ced9341da..fa1527b7e 100644 --- a/lib/asn1c/ngap/NGAP_SliceOverloadList.c +++ b/lib/asn1c/ngap/NGAP_SliceOverloadList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SliceOverloadList.h b/lib/asn1c/ngap/NGAP_SliceOverloadList.h index 4644a838c..fa60ec44f 100644 --- a/lib/asn1c/ngap/NGAP_SliceOverloadList.h +++ b/lib/asn1c/ngap/NGAP_SliceOverloadList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SliceSupportItem.c b/lib/asn1c/ngap/NGAP_SliceSupportItem.c index 1e20113b6..5fcb86249 100644 --- a/lib/asn1c/ngap/NGAP_SliceSupportItem.c +++ b/lib/asn1c/ngap/NGAP_SliceSupportItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SliceSupportItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SliceSupportItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P235, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P236, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SliceSupportItem.h b/lib/asn1c/ngap/NGAP_SliceSupportItem.h index 9e18086fc..a10224bca 100644 --- a/lib/asn1c/ngap/NGAP_SliceSupportItem.h +++ b/lib/asn1c/ngap/NGAP_SliceSupportItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SliceSupportList.c b/lib/asn1c/ngap/NGAP_SliceSupportList.c index f85caa46d..32e79dc2c 100644 --- a/lib/asn1c/ngap/NGAP_SliceSupportList.c +++ b/lib/asn1c/ngap/NGAP_SliceSupportList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SliceSupportList.h b/lib/asn1c/ngap/NGAP_SliceSupportList.h index f9d1c7397..b7b227dd9 100644 --- a/lib/asn1c/ngap/NGAP_SliceSupportList.h +++ b/lib/asn1c/ngap/NGAP_SliceSupportList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SourceNGRANNode-ToTargetNGRANNode-TransparentContainer.c b/lib/asn1c/ngap/NGAP_SourceNGRANNode-ToTargetNGRANNode-TransparentContainer.c index 8315e7432..b09ff10ff 100644 --- a/lib/asn1c/ngap/NGAP_SourceNGRANNode-ToTargetNGRANNode-TransparentContainer.c +++ b/lib/asn1c/ngap/NGAP_SourceNGRANNode-ToTargetNGRANNode-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -116,7 +116,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_SourceNGRANNode_ToTargetNGRANNode_Transpar { ATF_POINTER, 1, offsetof(struct NGAP_SourceNGRANNode_ToTargetNGRANNode_TransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (6 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P240, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P241, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SourceNGRANNode-ToTargetNGRANNode-TransparentContainer.h b/lib/asn1c/ngap/NGAP_SourceNGRANNode-ToTargetNGRANNode-TransparentContainer.h index 66a89ef0d..cf37de118 100644 --- a/lib/asn1c/ngap/NGAP_SourceNGRANNode-ToTargetNGRANNode-TransparentContainer.h +++ b/lib/asn1c/ngap/NGAP_SourceNGRANNode-ToTargetNGRANNode-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SourceOfUEActivityBehaviourInformation.c b/lib/asn1c/ngap/NGAP_SourceOfUEActivityBehaviourInformation.c index 6743a93c1..95d5b281f 100644 --- a/lib/asn1c/ngap/NGAP_SourceOfUEActivityBehaviourInformation.c +++ b/lib/asn1c/ngap/NGAP_SourceOfUEActivityBehaviourInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SourceOfUEActivityBehaviourInformation.h b/lib/asn1c/ngap/NGAP_SourceOfUEActivityBehaviourInformation.h index 52f93ea54..833591f87 100644 --- a/lib/asn1c/ngap/NGAP_SourceOfUEActivityBehaviourInformation.h +++ b/lib/asn1c/ngap/NGAP_SourceOfUEActivityBehaviourInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SourceRANNodeID.c b/lib/asn1c/ngap/NGAP_SourceRANNodeID.c index 647a2a39d..37863386e 100644 --- a/lib/asn1c/ngap/NGAP_SourceRANNodeID.c +++ b/lib/asn1c/ngap/NGAP_SourceRANNodeID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SourceRANNodeID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SourceRANNodeID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P241, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P242, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SourceRANNodeID.h b/lib/asn1c/ngap/NGAP_SourceRANNodeID.h index 4c41dc70e..07785f8b0 100644 --- a/lib/asn1c/ngap/NGAP_SourceRANNodeID.h +++ b/lib/asn1c/ngap/NGAP_SourceRANNodeID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SourceToTarget-AMFInformationReroute.c b/lib/asn1c/ngap/NGAP_SourceToTarget-AMFInformationReroute.c index 722ff9a03..4dbc43350 100644 --- a/lib/asn1c/ngap/NGAP_SourceToTarget-AMFInformationReroute.c +++ b/lib/asn1c/ngap/NGAP_SourceToTarget-AMFInformationReroute.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_SourceToTarget_AMFInformationReroute_1[] = { ATF_POINTER, 1, offsetof(struct NGAP_SourceToTarget_AMFInformationReroute, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P242, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P243, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SourceToTarget-AMFInformationReroute.h b/lib/asn1c/ngap/NGAP_SourceToTarget-AMFInformationReroute.h index 12e557786..5698a3ee5 100644 --- a/lib/asn1c/ngap/NGAP_SourceToTarget-AMFInformationReroute.h +++ b/lib/asn1c/ngap/NGAP_SourceToTarget-AMFInformationReroute.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SourceToTarget-TransparentContainer.c b/lib/asn1c/ngap/NGAP_SourceToTarget-TransparentContainer.c index 948323db0..a0e324dc0 100644 --- a/lib/asn1c/ngap/NGAP_SourceToTarget-TransparentContainer.c +++ b/lib/asn1c/ngap/NGAP_SourceToTarget-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SourceToTarget-TransparentContainer.h b/lib/asn1c/ngap/NGAP_SourceToTarget-TransparentContainer.h index 6027c9a67..26a02f532 100644 --- a/lib/asn1c/ngap/NGAP_SourceToTarget-TransparentContainer.h +++ b/lib/asn1c/ngap/NGAP_SourceToTarget-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SuccessfulOutcome.c b/lib/asn1c/ngap/NGAP_SuccessfulOutcome.c index a35f77ed8..ab486cbd3 100644 --- a/lib/asn1c/ngap/NGAP_SuccessfulOutcome.c +++ b/lib/asn1c/ngap/NGAP_SuccessfulOutcome.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Descriptions" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SuccessfulOutcome.h b/lib/asn1c/ngap/NGAP_SuccessfulOutcome.h index d8b93a5ae..cac6f4ea6 100644 --- a/lib/asn1c/ngap/NGAP_SuccessfulOutcome.h +++ b/lib/asn1c/ngap/NGAP_SuccessfulOutcome.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Descriptions" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SupportedTAItem.c b/lib/asn1c/ngap/NGAP_SupportedTAItem.c index 8cadb4767..9e65688ee 100644 --- a/lib/asn1c/ngap/NGAP_SupportedTAItem.c +++ b/lib/asn1c/ngap/NGAP_SupportedTAItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_SupportedTAItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_SupportedTAItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P243, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P244, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_SupportedTAItem.h b/lib/asn1c/ngap/NGAP_SupportedTAItem.h index dd0f8ca02..c10b7f03c 100644 --- a/lib/asn1c/ngap/NGAP_SupportedTAItem.h +++ b/lib/asn1c/ngap/NGAP_SupportedTAItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SupportedTAList.c b/lib/asn1c/ngap/NGAP_SupportedTAList.c index b6f4114d7..e36cdf042 100644 --- a/lib/asn1c/ngap/NGAP_SupportedTAList.c +++ b/lib/asn1c/ngap/NGAP_SupportedTAList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SupportedTAList.h b/lib/asn1c/ngap/NGAP_SupportedTAList.h index 201ea7fad..c59028ab2 100644 --- a/lib/asn1c/ngap/NGAP_SupportedTAList.h +++ b/lib/asn1c/ngap/NGAP_SupportedTAList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Suspend-Request-Indication.c b/lib/asn1c/ngap/NGAP_Suspend-Request-Indication.c index 08b7ba966..387f7310c 100644 --- a/lib/asn1c/ngap/NGAP_Suspend-Request-Indication.c +++ b/lib/asn1c/ngap/NGAP_Suspend-Request-Indication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Suspend-Request-Indication.h b/lib/asn1c/ngap/NGAP_Suspend-Request-Indication.h index 5758047ea..608a3bd8f 100644 --- a/lib/asn1c/ngap/NGAP_Suspend-Request-Indication.h +++ b/lib/asn1c/ngap/NGAP_Suspend-Request-Indication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Suspend-Response-Indication.c b/lib/asn1c/ngap/NGAP_Suspend-Response-Indication.c index ad66724e3..dd40aa3a4 100644 --- a/lib/asn1c/ngap/NGAP_Suspend-Response-Indication.c +++ b/lib/asn1c/ngap/NGAP_Suspend-Response-Indication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Suspend-Response-Indication.h b/lib/asn1c/ngap/NGAP_Suspend-Response-Indication.h index 71b085c94..75eced909 100644 --- a/lib/asn1c/ngap/NGAP_Suspend-Response-Indication.h +++ b/lib/asn1c/ngap/NGAP_Suspend-Response-Indication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SuspendIndicator.c b/lib/asn1c/ngap/NGAP_SuspendIndicator.c index 7dd6fe148..54d9e1e80 100644 --- a/lib/asn1c/ngap/NGAP_SuspendIndicator.c +++ b/lib/asn1c/ngap/NGAP_SuspendIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_SuspendIndicator.h b/lib/asn1c/ngap/NGAP_SuspendIndicator.h index a8ceff590..13b0d475b 100644 --- a/lib/asn1c/ngap/NGAP_SuspendIndicator.h +++ b/lib/asn1c/ngap/NGAP_SuspendIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TABasedMDT.c b/lib/asn1c/ngap/NGAP_TABasedMDT.c index 8955d96c6..af962de87 100644 --- a/lib/asn1c/ngap/NGAP_TABasedMDT.c +++ b/lib/asn1c/ngap/NGAP_TABasedMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TABasedMDT_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TABasedMDT, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P260, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P261, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TABasedMDT.h b/lib/asn1c/ngap/NGAP_TABasedMDT.h index 951bc3dd1..e3a1bc8af 100644 --- a/lib/asn1c/ngap/NGAP_TABasedMDT.h +++ b/lib/asn1c/ngap/NGAP_TABasedMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAC.c b/lib/asn1c/ngap/NGAP_TAC.c index 8c8ccc497..821e74ef6 100644 --- a/lib/asn1c/ngap/NGAP_TAC.c +++ b/lib/asn1c/ngap/NGAP_TAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAC.h b/lib/asn1c/ngap/NGAP_TAC.h index 74bc128ef..c2213caa2 100644 --- a/lib/asn1c/ngap/NGAP_TAC.h +++ b/lib/asn1c/ngap/NGAP_TAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAI.c b/lib/asn1c/ngap/NGAP_TAI.c index 6e5a4cdcb..4d72471b0 100644 --- a/lib/asn1c/ngap/NGAP_TAI.c +++ b/lib/asn1c/ngap/NGAP_TAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAI_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TAI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P244, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P245, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TAI.h b/lib/asn1c/ngap/NGAP_TAI.h index bfdf8d0f9..09ed1b349 100644 --- a/lib/asn1c/ngap/NGAP_TAI.h +++ b/lib/asn1c/ngap/NGAP_TAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIBasedMDT.c b/lib/asn1c/ngap/NGAP_TAIBasedMDT.c index daaeaad41..a9c53e4bc 100644 --- a/lib/asn1c/ngap/NGAP_TAIBasedMDT.c +++ b/lib/asn1c/ngap/NGAP_TAIBasedMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBasedMDT_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TAIBasedMDT, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P259, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P260, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TAIBasedMDT.h b/lib/asn1c/ngap/NGAP_TAIBasedMDT.h index 24383ee04..cad6ac2a3 100644 --- a/lib/asn1c/ngap/NGAP_TAIBasedMDT.h +++ b/lib/asn1c/ngap/NGAP_TAIBasedMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA-Item.c b/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA-Item.c index df99b349b..3628ae4bd 100644 --- a/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastEUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TAIBroadcastEUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P245, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P246, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA-Item.h b/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA-Item.h index d6b59980a..dfa9d1c38 100644 --- a/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA.c b/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA.c index 06d946e5f..7ffa01870 100644 --- a/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA.c +++ b/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA.h b/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA.h index 4ddc7e7a9..c1ca6708d 100644 --- a/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA.h +++ b/lib/asn1c/ngap/NGAP_TAIBroadcastEUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIBroadcastNR-Item.c b/lib/asn1c/ngap/NGAP_TAIBroadcastNR-Item.c index c1d6f1bb7..4fb86a2dc 100644 --- a/lib/asn1c/ngap/NGAP_TAIBroadcastNR-Item.c +++ b/lib/asn1c/ngap/NGAP_TAIBroadcastNR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIBroadcastNR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TAIBroadcastNR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P246, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P247, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TAIBroadcastNR-Item.h b/lib/asn1c/ngap/NGAP_TAIBroadcastNR-Item.h index cf2bec6b3..04e158684 100644 --- a/lib/asn1c/ngap/NGAP_TAIBroadcastNR-Item.h +++ b/lib/asn1c/ngap/NGAP_TAIBroadcastNR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIBroadcastNR.c b/lib/asn1c/ngap/NGAP_TAIBroadcastNR.c index 4f3c33fd4..4fd72b4c7 100644 --- a/lib/asn1c/ngap/NGAP_TAIBroadcastNR.c +++ b/lib/asn1c/ngap/NGAP_TAIBroadcastNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIBroadcastNR.h b/lib/asn1c/ngap/NGAP_TAIBroadcastNR.h index 14326e187..516313e04 100644 --- a/lib/asn1c/ngap/NGAP_TAIBroadcastNR.h +++ b/lib/asn1c/ngap/NGAP_TAIBroadcastNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAICancelledEUTRA-Item.c b/lib/asn1c/ngap/NGAP_TAICancelledEUTRA-Item.c index 3256ce01b..21ed27543 100644 --- a/lib/asn1c/ngap/NGAP_TAICancelledEUTRA-Item.c +++ b/lib/asn1c/ngap/NGAP_TAICancelledEUTRA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAICancelledEUTRA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TAICancelledEUTRA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P247, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P248, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TAICancelledEUTRA-Item.h b/lib/asn1c/ngap/NGAP_TAICancelledEUTRA-Item.h index a0bed6841..e3e4c73e2 100644 --- a/lib/asn1c/ngap/NGAP_TAICancelledEUTRA-Item.h +++ b/lib/asn1c/ngap/NGAP_TAICancelledEUTRA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAICancelledEUTRA.c b/lib/asn1c/ngap/NGAP_TAICancelledEUTRA.c index 08f521229..8e9f4ad19 100644 --- a/lib/asn1c/ngap/NGAP_TAICancelledEUTRA.c +++ b/lib/asn1c/ngap/NGAP_TAICancelledEUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAICancelledEUTRA.h b/lib/asn1c/ngap/NGAP_TAICancelledEUTRA.h index 99c757f35..5b11eca33 100644 --- a/lib/asn1c/ngap/NGAP_TAICancelledEUTRA.h +++ b/lib/asn1c/ngap/NGAP_TAICancelledEUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAICancelledNR-Item.c b/lib/asn1c/ngap/NGAP_TAICancelledNR-Item.c index fb91a2a18..3ad98e8f6 100644 --- a/lib/asn1c/ngap/NGAP_TAICancelledNR-Item.c +++ b/lib/asn1c/ngap/NGAP_TAICancelledNR-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAICancelledNR_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TAICancelledNR_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P248, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P249, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TAICancelledNR-Item.h b/lib/asn1c/ngap/NGAP_TAICancelledNR-Item.h index 589aef0cb..69e706c02 100644 --- a/lib/asn1c/ngap/NGAP_TAICancelledNR-Item.h +++ b/lib/asn1c/ngap/NGAP_TAICancelledNR-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAICancelledNR.c b/lib/asn1c/ngap/NGAP_TAICancelledNR.c index 5bd2b29f8..2f43cdb50 100644 --- a/lib/asn1c/ngap/NGAP_TAICancelledNR.c +++ b/lib/asn1c/ngap/NGAP_TAICancelledNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAICancelledNR.h b/lib/asn1c/ngap/NGAP_TAICancelledNR.h index 736a9c8c8..1febe2338 100644 --- a/lib/asn1c/ngap/NGAP_TAICancelledNR.h +++ b/lib/asn1c/ngap/NGAP_TAICancelledNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForInactive.c b/lib/asn1c/ngap/NGAP_TAIListForInactive.c index a98dfd100..dc7540087 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForInactive.c +++ b/lib/asn1c/ngap/NGAP_TAIListForInactive.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForInactive.h b/lib/asn1c/ngap/NGAP_TAIListForInactive.h index 6116f5223..18fead103 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForInactive.h +++ b/lib/asn1c/ngap/NGAP_TAIListForInactive.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForInactiveItem.c b/lib/asn1c/ngap/NGAP_TAIListForInactiveItem.c index 170cba3d1..df5a9e362 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForInactiveItem.c +++ b/lib/asn1c/ngap/NGAP_TAIListForInactiveItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIListForInactiveItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TAIListForInactiveItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P249, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P250, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TAIListForInactiveItem.h b/lib/asn1c/ngap/NGAP_TAIListForInactiveItem.h index 34a0aaa8c..dca4ba327 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForInactiveItem.h +++ b/lib/asn1c/ngap/NGAP_TAIListForInactiveItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForPaging.c b/lib/asn1c/ngap/NGAP_TAIListForPaging.c index 2e53a0206..f94a7f949 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForPaging.c +++ b/lib/asn1c/ngap/NGAP_TAIListForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForPaging.h b/lib/asn1c/ngap/NGAP_TAIListForPaging.h index 7807910f6..d57fe54ba 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForPaging.h +++ b/lib/asn1c/ngap/NGAP_TAIListForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForPagingItem.c b/lib/asn1c/ngap/NGAP_TAIListForPagingItem.c index 99ccdd4dd..d51980a85 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForPagingItem.c +++ b/lib/asn1c/ngap/NGAP_TAIListForPagingItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TAIListForPagingItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TAIListForPagingItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P250, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P251, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TAIListForPagingItem.h b/lib/asn1c/ngap/NGAP_TAIListForPagingItem.h index befa9a1d8..46c75a13c 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForPagingItem.h +++ b/lib/asn1c/ngap/NGAP_TAIListForPagingItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForRestart.c b/lib/asn1c/ngap/NGAP_TAIListForRestart.c index 119674fe4..53e6c9263 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForRestart.c +++ b/lib/asn1c/ngap/NGAP_TAIListForRestart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForRestart.h b/lib/asn1c/ngap/NGAP_TAIListForRestart.h index 0179d7963..169dfc142 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForRestart.h +++ b/lib/asn1c/ngap/NGAP_TAIListForRestart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForWarning.c b/lib/asn1c/ngap/NGAP_TAIListForWarning.c index 0d4090d35..0c5f9a0b7 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForWarning.c +++ b/lib/asn1c/ngap/NGAP_TAIListForWarning.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListForWarning.h b/lib/asn1c/ngap/NGAP_TAIListForWarning.h index fac55d228..e9afaa84f 100644 --- a/lib/asn1c/ngap/NGAP_TAIListForWarning.h +++ b/lib/asn1c/ngap/NGAP_TAIListForWarning.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListforMDT.c b/lib/asn1c/ngap/NGAP_TAIListforMDT.c index c75f765e2..18cea39c6 100644 --- a/lib/asn1c/ngap/NGAP_TAIListforMDT.c +++ b/lib/asn1c/ngap/NGAP_TAIListforMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAIListforMDT.h b/lib/asn1c/ngap/NGAP_TAIListforMDT.h index d5978a62f..b02b6d3ce 100644 --- a/lib/asn1c/ngap/NGAP_TAIListforMDT.h +++ b/lib/asn1c/ngap/NGAP_TAIListforMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAListforMDT.c b/lib/asn1c/ngap/NGAP_TAListforMDT.c index e3bc5ee1e..dde73dce3 100644 --- a/lib/asn1c/ngap/NGAP_TAListforMDT.c +++ b/lib/asn1c/ngap/NGAP_TAListforMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TAListforMDT.h b/lib/asn1c/ngap/NGAP_TAListforMDT.h index 8c8a94dd5..496ddcba6 100644 --- a/lib/asn1c/ngap/NGAP_TAListforMDT.h +++ b/lib/asn1c/ngap/NGAP_TAListforMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNAP-ID.c b/lib/asn1c/ngap/NGAP_TNAP-ID.c index 06bbe86c4..2add080c7 100644 --- a/lib/asn1c/ngap/NGAP_TNAP-ID.c +++ b/lib/asn1c/ngap/NGAP_TNAP-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNAP-ID.h b/lib/asn1c/ngap/NGAP_TNAP-ID.h index ae89c338f..7e62ac61c 100644 --- a/lib/asn1c/ngap/NGAP_TNAP-ID.h +++ b/lib/asn1c/ngap/NGAP_TNAP-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNGF-ID.c b/lib/asn1c/ngap/NGAP_TNGF-ID.c index 7c2a00278..510131120 100644 --- a/lib/asn1c/ngap/NGAP_TNGF-ID.c +++ b/lib/asn1c/ngap/NGAP_TNGF-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TNGF_ID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_TNGF_ID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P40, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P40, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TNGF-ID.h b/lib/asn1c/ngap/NGAP_TNGF-ID.h index f7de984ac..dbf35902b 100644 --- a/lib/asn1c/ngap/NGAP_TNGF-ID.h +++ b/lib/asn1c/ngap/NGAP_TNGF-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNLAddressWeightFactor.c b/lib/asn1c/ngap/NGAP_TNLAddressWeightFactor.c index 9241886bd..8fdddf143 100644 --- a/lib/asn1c/ngap/NGAP_TNLAddressWeightFactor.c +++ b/lib/asn1c/ngap/NGAP_TNLAddressWeightFactor.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNLAddressWeightFactor.h b/lib/asn1c/ngap/NGAP_TNLAddressWeightFactor.h index c9041b0c6..a69448d22 100644 --- a/lib/asn1c/ngap/NGAP_TNLAddressWeightFactor.h +++ b/lib/asn1c/ngap/NGAP_TNLAddressWeightFactor.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNLAssociationItem.c b/lib/asn1c/ngap/NGAP_TNLAssociationItem.c index d4d698119..b64add70d 100644 --- a/lib/asn1c/ngap/NGAP_TNLAssociationItem.c +++ b/lib/asn1c/ngap/NGAP_TNLAssociationItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TNLAssociationItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TNLAssociationItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P256, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P257, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TNLAssociationItem.h b/lib/asn1c/ngap/NGAP_TNLAssociationItem.h index 35165403f..ec1038cb4 100644 --- a/lib/asn1c/ngap/NGAP_TNLAssociationItem.h +++ b/lib/asn1c/ngap/NGAP_TNLAssociationItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNLAssociationList.c b/lib/asn1c/ngap/NGAP_TNLAssociationList.c index d8d496358..ad47980d2 100644 --- a/lib/asn1c/ngap/NGAP_TNLAssociationList.c +++ b/lib/asn1c/ngap/NGAP_TNLAssociationList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNLAssociationList.h b/lib/asn1c/ngap/NGAP_TNLAssociationList.h index 2eda3a62c..f72ea12c8 100644 --- a/lib/asn1c/ngap/NGAP_TNLAssociationList.h +++ b/lib/asn1c/ngap/NGAP_TNLAssociationList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNLAssociationUsage.c b/lib/asn1c/ngap/NGAP_TNLAssociationUsage.c index 0eb1f44fe..45ed27230 100644 --- a/lib/asn1c/ngap/NGAP_TNLAssociationUsage.c +++ b/lib/asn1c/ngap/NGAP_TNLAssociationUsage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TNLAssociationUsage.h b/lib/asn1c/ngap/NGAP_TNLAssociationUsage.h index 103337147..96ec919ba 100644 --- a/lib/asn1c/ngap/NGAP_TNLAssociationUsage.h +++ b/lib/asn1c/ngap/NGAP_TNLAssociationUsage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TSCAssistanceInformation.c b/lib/asn1c/ngap/NGAP_TSCAssistanceInformation.c index e2b5c25f1..86214499f 100644 --- a/lib/asn1c/ngap/NGAP_TSCAssistanceInformation.c +++ b/lib/asn1c/ngap/NGAP_TSCAssistanceInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TSCAssistanceInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TSCAssistanceInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P261, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P262, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TSCAssistanceInformation.h b/lib/asn1c/ngap/NGAP_TSCAssistanceInformation.h index fbc002e1c..bfcf94c4c 100644 --- a/lib/asn1c/ngap/NGAP_TSCAssistanceInformation.h +++ b/lib/asn1c/ngap/NGAP_TSCAssistanceInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TSCTrafficCharacteristics.c b/lib/asn1c/ngap/NGAP_TSCTrafficCharacteristics.c index 642503e6e..496f83650 100644 --- a/lib/asn1c/ngap/NGAP_TSCTrafficCharacteristics.c +++ b/lib/asn1c/ngap/NGAP_TSCTrafficCharacteristics.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_TSCTrafficCharacteristics_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TSCTrafficCharacteristics, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P262, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P263, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TSCTrafficCharacteristics.h b/lib/asn1c/ngap/NGAP_TSCTrafficCharacteristics.h index b2bc4cd6d..1238af45d 100644 --- a/lib/asn1c/ngap/NGAP_TSCTrafficCharacteristics.h +++ b/lib/asn1c/ngap/NGAP_TSCTrafficCharacteristics.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TWAP-ID.c b/lib/asn1c/ngap/NGAP_TWAP-ID.c index 3821af6ff..59616842b 100644 --- a/lib/asn1c/ngap/NGAP_TWAP-ID.c +++ b/lib/asn1c/ngap/NGAP_TWAP-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TWAP-ID.h b/lib/asn1c/ngap/NGAP_TWAP-ID.h index 2db082774..45a476f07 100644 --- a/lib/asn1c/ngap/NGAP_TWAP-ID.h +++ b/lib/asn1c/ngap/NGAP_TWAP-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TWIF-ID.c b/lib/asn1c/ngap/NGAP_TWIF-ID.c index 917e6ef90..f98b6ea86 100644 --- a/lib/asn1c/ngap/NGAP_TWIF-ID.c +++ b/lib/asn1c/ngap/NGAP_TWIF-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TWIF_ID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_TWIF_ID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P41, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P41, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TWIF-ID.h b/lib/asn1c/ngap/NGAP_TWIF-ID.h index bcb274ff3..06e30cf6d 100644 --- a/lib/asn1c/ngap/NGAP_TWIF-ID.h +++ b/lib/asn1c/ngap/NGAP_TWIF-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargetID.c b/lib/asn1c/ngap/NGAP_TargetID.c index c67421aef..c7733a611 100644 --- a/lib/asn1c/ngap/NGAP_TargetID.c +++ b/lib/asn1c/ngap/NGAP_TargetID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -55,7 +55,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_TargetID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_TargetID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P39, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P39, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TargetID.h b/lib/asn1c/ngap/NGAP_TargetID.h index 30bef8b5e..3e557e1b3 100644 --- a/lib/asn1c/ngap/NGAP_TargetID.h +++ b/lib/asn1c/ngap/NGAP_TargetID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.c b/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.c index dbd22bf5e..55acd4926 100644 --- a/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.c +++ b/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.c @@ -1,15 +1,16 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ #include "NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.h" +#include "NGAP_Cell-CAGInformation.h" #include "NGAP_ProtocolExtensionContainer.h" static asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_1[] = { - { ATF_NOFLAGS, 0, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer, cell_CAGInformation), + { ATF_POINTER, 2, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer, cell_CAGInformation), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ &asn_DEF_NGAP_Cell_CAGInformation, @@ -29,7 +30,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureT { ATF_POINTER, 1, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P253, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P254, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -44,7 +45,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureT "iE-Extensions" }, }; -static const int asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_oms_1[] = { 1 }; +static const int asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_oms_1[] = { 0, 1 }; static const ber_tlv_tag_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; @@ -58,7 +59,7 @@ static asn_SEQUENCE_specifics_t asn_SPC_NGAP_TargetNGRANNode_ToSourceNGRANNode_F asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_tag2el_1, 2, /* Count of tags in the map */ asn_MAP_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_oms_1, /* Optional members */ - 1, 0, /* Root/Additions */ + 2, 0, /* Root/Additions */ 2, /* First extension addition */ }; asn_TYPE_descriptor_t asn_DEF_NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer = { diff --git a/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.h b/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.h index ced10c7d0..5bbff8531 100644 --- a/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.h +++ b/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -12,7 +12,6 @@ #include /* Including external dependencies */ -#include "NGAP_Cell-CAGInformation.h" #include #ifdef __cplusplus @@ -20,11 +19,12 @@ extern "C" { #endif /* Forward declarations */ +struct NGAP_Cell_CAGInformation; struct NGAP_ProtocolExtensionContainer; /* NGAP_TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer */ typedef struct NGAP_TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer { - NGAP_Cell_CAGInformation_t cell_CAGInformation; + struct NGAP_Cell_CAGInformation *cell_CAGInformation; /* OPTIONAL */ struct NGAP_ProtocolExtensionContainer *iE_Extensions; /* OPTIONAL */ /* * This type is extensible, diff --git a/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-TransparentContainer.c b/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-TransparentContainer.c index 72a7b72e6..67854a700 100644 --- a/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-TransparentContainer.c +++ b/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_TargetNGRANNode_ToSourceNGRANNode_Transpar { ATF_POINTER, 1, offsetof(struct NGAP_TargetNGRANNode_ToSourceNGRANNode_TransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P252, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P253, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-TransparentContainer.h b/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-TransparentContainer.h index 5ed0bbcdb..c07b54c73 100644 --- a/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-TransparentContainer.h +++ b/lib/asn1c/ngap/NGAP_TargetNGRANNode-ToSourceNGRANNode-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargetRANNodeID.c b/lib/asn1c/ngap/NGAP_TargetRANNodeID.c index 38dce9913..31844fe9d 100644 --- a/lib/asn1c/ngap/NGAP_TargetRANNodeID.c +++ b/lib/asn1c/ngap/NGAP_TargetRANNodeID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TargetRANNodeID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TargetRANNodeID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P254, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P255, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TargetRANNodeID.h b/lib/asn1c/ngap/NGAP_TargetRANNodeID.h index c7efe36cb..03fbc9633 100644 --- a/lib/asn1c/ngap/NGAP_TargetRANNodeID.h +++ b/lib/asn1c/ngap/NGAP_TargetRANNodeID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargetRNC-ID.c b/lib/asn1c/ngap/NGAP_TargetRNC-ID.c index eea3fb027..9a748c2c9 100644 --- a/lib/asn1c/ngap/NGAP_TargetRNC-ID.c +++ b/lib/asn1c/ngap/NGAP_TargetRNC-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_TargetRNC_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TargetRNC_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P255, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P256, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TargetRNC-ID.h b/lib/asn1c/ngap/NGAP_TargetRNC-ID.h index 4526b6385..2a9201b06 100644 --- a/lib/asn1c/ngap/NGAP_TargetRNC-ID.h +++ b/lib/asn1c/ngap/NGAP_TargetRNC-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargetToSource-TransparentContainer.c b/lib/asn1c/ngap/NGAP_TargetToSource-TransparentContainer.c index 6268a96cc..7871c51c6 100644 --- a/lib/asn1c/ngap/NGAP_TargetToSource-TransparentContainer.c +++ b/lib/asn1c/ngap/NGAP_TargetToSource-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargetToSource-TransparentContainer.h b/lib/asn1c/ngap/NGAP_TargetToSource-TransparentContainer.h index 6b4948aaf..82681a839 100644 --- a/lib/asn1c/ngap/NGAP_TargetToSource-TransparentContainer.h +++ b/lib/asn1c/ngap/NGAP_TargetToSource-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargeteNB-ID.c b/lib/asn1c/ngap/NGAP_TargeteNB-ID.c index ac8724e58..d29aa3329 100644 --- a/lib/asn1c/ngap/NGAP_TargeteNB-ID.c +++ b/lib/asn1c/ngap/NGAP_TargeteNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TargeteNB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TargeteNB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P251, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P252, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TargeteNB-ID.h b/lib/asn1c/ngap/NGAP_TargeteNB-ID.h index 866dc3caf..3ab10edf2 100644 --- a/lib/asn1c/ngap/NGAP_TargeteNB-ID.h +++ b/lib/asn1c/ngap/NGAP_TargeteNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargettoSource-Failure-TransparentContainer.c b/lib/asn1c/ngap/NGAP_TargettoSource-Failure-TransparentContainer.c index a286b2bef..a8b3d8e0c 100644 --- a/lib/asn1c/ngap/NGAP_TargettoSource-Failure-TransparentContainer.c +++ b/lib/asn1c/ngap/NGAP_TargettoSource-Failure-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TargettoSource-Failure-TransparentContainer.h b/lib/asn1c/ngap/NGAP_TargettoSource-Failure-TransparentContainer.h index 3c22769c0..16ff1402d 100644 --- a/lib/asn1c/ngap/NGAP_TargettoSource-Failure-TransparentContainer.h +++ b/lib/asn1c/ngap/NGAP_TargettoSource-Failure-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Threshold-RSRP.c b/lib/asn1c/ngap/NGAP_Threshold-RSRP.c index 903b6365e..d0abb13ff 100644 --- a/lib/asn1c/ngap/NGAP_Threshold-RSRP.c +++ b/lib/asn1c/ngap/NGAP_Threshold-RSRP.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Threshold-RSRP.h b/lib/asn1c/ngap/NGAP_Threshold-RSRP.h index a5acfbe05..d1fbee620 100644 --- a/lib/asn1c/ngap/NGAP_Threshold-RSRP.h +++ b/lib/asn1c/ngap/NGAP_Threshold-RSRP.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Threshold-RSRQ.c b/lib/asn1c/ngap/NGAP_Threshold-RSRQ.c index f5f4ad429..5f070eea2 100644 --- a/lib/asn1c/ngap/NGAP_Threshold-RSRQ.c +++ b/lib/asn1c/ngap/NGAP_Threshold-RSRQ.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Threshold-RSRQ.h b/lib/asn1c/ngap/NGAP_Threshold-RSRQ.h index 83f6ba6bd..716574944 100644 --- a/lib/asn1c/ngap/NGAP_Threshold-RSRQ.h +++ b/lib/asn1c/ngap/NGAP_Threshold-RSRQ.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Threshold-SINR.c b/lib/asn1c/ngap/NGAP_Threshold-SINR.c index ea0b6891a..14c4328ee 100644 --- a/lib/asn1c/ngap/NGAP_Threshold-SINR.c +++ b/lib/asn1c/ngap/NGAP_Threshold-SINR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_Threshold-SINR.h b/lib/asn1c/ngap/NGAP_Threshold-SINR.h index 8164c1e6e..6a1e33da2 100644 --- a/lib/asn1c/ngap/NGAP_Threshold-SINR.h +++ b/lib/asn1c/ngap/NGAP_Threshold-SINR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeStamp.c b/lib/asn1c/ngap/NGAP_TimeStamp.c index e645f97bf..cb518fe27 100644 --- a/lib/asn1c/ngap/NGAP_TimeStamp.c +++ b/lib/asn1c/ngap/NGAP_TimeStamp.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeStamp.h b/lib/asn1c/ngap/NGAP_TimeStamp.h index 4f4cb0365..db9b34f29 100644 --- a/lib/asn1c/ngap/NGAP_TimeStamp.h +++ b/lib/asn1c/ngap/NGAP_TimeStamp.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeToTrigger.c b/lib/asn1c/ngap/NGAP_TimeToTrigger.c index 204e16f9f..a5515618c 100644 --- a/lib/asn1c/ngap/NGAP_TimeToTrigger.c +++ b/lib/asn1c/ngap/NGAP_TimeToTrigger.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeToTrigger.h b/lib/asn1c/ngap/NGAP_TimeToTrigger.h index 4a15300e3..166de7c67 100644 --- a/lib/asn1c/ngap/NGAP_TimeToTrigger.h +++ b/lib/asn1c/ngap/NGAP_TimeToTrigger.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeToWait.c b/lib/asn1c/ngap/NGAP_TimeToWait.c index 69825e345..f35b1fe71 100644 --- a/lib/asn1c/ngap/NGAP_TimeToWait.c +++ b/lib/asn1c/ngap/NGAP_TimeToWait.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeToWait.h b/lib/asn1c/ngap/NGAP_TimeToWait.h index fd375a5d1..d49b3ffdb 100644 --- a/lib/asn1c/ngap/NGAP_TimeToWait.h +++ b/lib/asn1c/ngap/NGAP_TimeToWait.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeUEStayedInCell.c b/lib/asn1c/ngap/NGAP_TimeUEStayedInCell.c index 32aee4014..6cfd63fb7 100644 --- a/lib/asn1c/ngap/NGAP_TimeUEStayedInCell.c +++ b/lib/asn1c/ngap/NGAP_TimeUEStayedInCell.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeUEStayedInCell.h b/lib/asn1c/ngap/NGAP_TimeUEStayedInCell.h index e685a6a1d..9fbbb3804 100644 --- a/lib/asn1c/ngap/NGAP_TimeUEStayedInCell.h +++ b/lib/asn1c/ngap/NGAP_TimeUEStayedInCell.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeUEStayedInCellEnhancedGranularity.c b/lib/asn1c/ngap/NGAP_TimeUEStayedInCellEnhancedGranularity.c index 9ab791c65..665d64186 100644 --- a/lib/asn1c/ngap/NGAP_TimeUEStayedInCellEnhancedGranularity.c +++ b/lib/asn1c/ngap/NGAP_TimeUEStayedInCellEnhancedGranularity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimeUEStayedInCellEnhancedGranularity.h b/lib/asn1c/ngap/NGAP_TimeUEStayedInCellEnhancedGranularity.h index c5d75bae2..1699ebb91 100644 --- a/lib/asn1c/ngap/NGAP_TimeUEStayedInCellEnhancedGranularity.h +++ b/lib/asn1c/ngap/NGAP_TimeUEStayedInCellEnhancedGranularity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimerApproachForGUAMIRemoval.c b/lib/asn1c/ngap/NGAP_TimerApproachForGUAMIRemoval.c index 871422833..2333c19af 100644 --- a/lib/asn1c/ngap/NGAP_TimerApproachForGUAMIRemoval.c +++ b/lib/asn1c/ngap/NGAP_TimerApproachForGUAMIRemoval.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TimerApproachForGUAMIRemoval.h b/lib/asn1c/ngap/NGAP_TimerApproachForGUAMIRemoval.h index 354c88b9c..f9b929df6 100644 --- a/lib/asn1c/ngap/NGAP_TimerApproachForGUAMIRemoval.h +++ b/lib/asn1c/ngap/NGAP_TimerApproachForGUAMIRemoval.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TooearlyIntersystemHO.c b/lib/asn1c/ngap/NGAP_TooearlyIntersystemHO.c index d21ee5c4e..62876d90e 100644 --- a/lib/asn1c/ngap/NGAP_TooearlyIntersystemHO.c +++ b/lib/asn1c/ngap/NGAP_TooearlyIntersystemHO.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TooearlyIntersystemHO_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TooearlyIntersystemHO, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P257, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P258, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TooearlyIntersystemHO.h b/lib/asn1c/ngap/NGAP_TooearlyIntersystemHO.h index 9b08e7be5..10bb7c44d 100644 --- a/lib/asn1c/ngap/NGAP_TooearlyIntersystemHO.h +++ b/lib/asn1c/ngap/NGAP_TooearlyIntersystemHO.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TraceActivation.c b/lib/asn1c/ngap/NGAP_TraceActivation.c index 060d51281..290cb00de 100644 --- a/lib/asn1c/ngap/NGAP_TraceActivation.c +++ b/lib/asn1c/ngap/NGAP_TraceActivation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_TraceActivation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_TraceActivation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P258, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P259, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TraceActivation.h b/lib/asn1c/ngap/NGAP_TraceActivation.h index b44a739c3..c517ce760 100644 --- a/lib/asn1c/ngap/NGAP_TraceActivation.h +++ b/lib/asn1c/ngap/NGAP_TraceActivation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TraceDepth.c b/lib/asn1c/ngap/NGAP_TraceDepth.c index 8c4212210..8d7a2a88e 100644 --- a/lib/asn1c/ngap/NGAP_TraceDepth.c +++ b/lib/asn1c/ngap/NGAP_TraceDepth.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TraceDepth.h b/lib/asn1c/ngap/NGAP_TraceDepth.h index 95be7a70c..7ddb00cf6 100644 --- a/lib/asn1c/ngap/NGAP_TraceDepth.h +++ b/lib/asn1c/ngap/NGAP_TraceDepth.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TraceFailureIndication.c b/lib/asn1c/ngap/NGAP_TraceFailureIndication.c index 35874fe97..b58b1b9a8 100644 --- a/lib/asn1c/ngap/NGAP_TraceFailureIndication.c +++ b/lib/asn1c/ngap/NGAP_TraceFailureIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TraceFailureIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceFailureIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P79, + &asn_DEF_NGAP_ProtocolIE_Container_9574P79, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TraceFailureIndication.h b/lib/asn1c/ngap/NGAP_TraceFailureIndication.h index 874267872..23ebf5510 100644 --- a/lib/asn1c/ngap/NGAP_TraceFailureIndication.h +++ b/lib/asn1c/ngap/NGAP_TraceFailureIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_TraceFailureIndication */ typedef struct NGAP_TraceFailureIndication { - NGAP_ProtocolIE_Container_9520P79_t protocolIEs; + NGAP_ProtocolIE_Container_9574P79_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_TraceStart.c b/lib/asn1c/ngap/NGAP_TraceStart.c index 20282f46c..f7487023d 100644 --- a/lib/asn1c/ngap/NGAP_TraceStart.c +++ b/lib/asn1c/ngap/NGAP_TraceStart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_TraceStart_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_TraceStart, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P78, + &asn_DEF_NGAP_ProtocolIE_Container_9574P78, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_TraceStart.h b/lib/asn1c/ngap/NGAP_TraceStart.h index f843b61cf..08d93d86e 100644 --- a/lib/asn1c/ngap/NGAP_TraceStart.h +++ b/lib/asn1c/ngap/NGAP_TraceStart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_TraceStart */ typedef struct NGAP_TraceStart { - NGAP_ProtocolIE_Container_9520P78_t protocolIEs; + NGAP_ProtocolIE_Container_9574P78_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_TrafficLoadReductionIndication.c b/lib/asn1c/ngap/NGAP_TrafficLoadReductionIndication.c index b1ce54b43..dfb5876e1 100644 --- a/lib/asn1c/ngap/NGAP_TrafficLoadReductionIndication.c +++ b/lib/asn1c/ngap/NGAP_TrafficLoadReductionIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TrafficLoadReductionIndication.h b/lib/asn1c/ngap/NGAP_TrafficLoadReductionIndication.h index 0394fd650..50eb1820d 100644 --- a/lib/asn1c/ngap/NGAP_TrafficLoadReductionIndication.h +++ b/lib/asn1c/ngap/NGAP_TrafficLoadReductionIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TransportLayerAddress.c b/lib/asn1c/ngap/NGAP_TransportLayerAddress.c index 3bbdf5ffe..df7dedf82 100644 --- a/lib/asn1c/ngap/NGAP_TransportLayerAddress.c +++ b/lib/asn1c/ngap/NGAP_TransportLayerAddress.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TransportLayerAddress.h b/lib/asn1c/ngap/NGAP_TransportLayerAddress.h index d237f6891..f61a7edba 100644 --- a/lib/asn1c/ngap/NGAP_TransportLayerAddress.h +++ b/lib/asn1c/ngap/NGAP_TransportLayerAddress.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TriggeringMessage.c b/lib/asn1c/ngap/NGAP_TriggeringMessage.c index 8b29d5c61..e70375b5b 100644 --- a/lib/asn1c/ngap/NGAP_TriggeringMessage.c +++ b/lib/asn1c/ngap/NGAP_TriggeringMessage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TriggeringMessage.h b/lib/asn1c/ngap/NGAP_TriggeringMessage.h index 96b909084..77b999d0b 100644 --- a/lib/asn1c/ngap/NGAP_TriggeringMessage.h +++ b/lib/asn1c/ngap/NGAP_TriggeringMessage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-CommonDataTypes" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TypeOfError.c b/lib/asn1c/ngap/NGAP_TypeOfError.c index 29641544c..c615adeca 100644 --- a/lib/asn1c/ngap/NGAP_TypeOfError.c +++ b/lib/asn1c/ngap/NGAP_TypeOfError.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_TypeOfError.h b/lib/asn1c/ngap/NGAP_TypeOfError.h index 8ffcdb4c8..ce92612d0 100644 --- a/lib/asn1c/ngap/NGAP_TypeOfError.h +++ b/lib/asn1c/ngap/NGAP_TypeOfError.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UE-DifferentiationInfo.c b/lib/asn1c/ngap/NGAP_UE-DifferentiationInfo.c index 8b2c3b7ec..b433b140b 100644 --- a/lib/asn1c/ngap/NGAP_UE-DifferentiationInfo.c +++ b/lib/asn1c/ngap/NGAP_UE-DifferentiationInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -383,7 +383,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UE_DifferentiationInfo_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UE_DifferentiationInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (6 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P268, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P269, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UE-DifferentiationInfo.h b/lib/asn1c/ngap/NGAP_UE-DifferentiationInfo.h index a312d806a..4a919555f 100644 --- a/lib/asn1c/ngap/NGAP_UE-DifferentiationInfo.h +++ b/lib/asn1c/ngap/NGAP_UE-DifferentiationInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UE-NGAP-ID-pair.c b/lib/asn1c/ngap/NGAP_UE-NGAP-ID-pair.c index 02ab03da8..12050a443 100644 --- a/lib/asn1c/ngap/NGAP_UE-NGAP-ID-pair.c +++ b/lib/asn1c/ngap/NGAP_UE-NGAP-ID-pair.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_ID_pair_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UE_NGAP_ID_pair, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P269, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P270, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UE-NGAP-ID-pair.h b/lib/asn1c/ngap/NGAP_UE-NGAP-ID-pair.h index 903b917bf..3735b8d2d 100644 --- a/lib/asn1c/ngap/NGAP_UE-NGAP-ID-pair.h +++ b/lib/asn1c/ngap/NGAP_UE-NGAP-ID-pair.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UE-NGAP-IDs.c b/lib/asn1c/ngap/NGAP_UE-NGAP-IDs.c index 746a20c12..f51e84ca6 100644 --- a/lib/asn1c/ngap/NGAP_UE-NGAP-IDs.c +++ b/lib/asn1c/ngap/NGAP_UE-NGAP-IDs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -54,7 +54,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UE_NGAP_IDs_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_UE_NGAP_IDs, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P44, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P44, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UE-NGAP-IDs.h b/lib/asn1c/ngap/NGAP_UE-NGAP-IDs.h index 081069aed..db1f5b40b 100644 --- a/lib/asn1c/ngap/NGAP_UE-NGAP-IDs.h +++ b/lib/asn1c/ngap/NGAP_UE-NGAP-IDs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UE-UP-CIoT-Support.c b/lib/asn1c/ngap/NGAP_UE-UP-CIoT-Support.c index 24e7123f9..8c5f92597 100644 --- a/lib/asn1c/ngap/NGAP_UE-UP-CIoT-Support.c +++ b/lib/asn1c/ngap/NGAP_UE-UP-CIoT-Support.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UE-UP-CIoT-Support.h b/lib/asn1c/ngap/NGAP_UE-UP-CIoT-Support.h index 687ccc70b..e8765a7fb 100644 --- a/lib/asn1c/ngap/NGAP_UE-UP-CIoT-Support.h +++ b/lib/asn1c/ngap/NGAP_UE-UP-CIoT-Support.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionItem.c b/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionItem.c index 45ab4cbef..6b979ba9f 100644 --- a/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionItem.c +++ b/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UE_associatedLogicalNG_connectionItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UE_associatedLogicalNG_connectionItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P264, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P265, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionItem.h b/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionItem.h index 9f360210f..9aa298417 100644 --- a/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionItem.h +++ b/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionList.c b/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionList.c index 614ee1104..a0ebda504 100644 --- a/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionList.c +++ b/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionList.h b/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionList.h index a615ef6e1..592ea5871 100644 --- a/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionList.h +++ b/lib/asn1c/ngap/NGAP_UE-associatedLogicalNG-connectionList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEAggregateMaximumBitRate.c b/lib/asn1c/ngap/NGAP_UEAggregateMaximumBitRate.c index 4299da1d9..652d93dbe 100644 --- a/lib/asn1c/ngap/NGAP_UEAggregateMaximumBitRate.c +++ b/lib/asn1c/ngap/NGAP_UEAggregateMaximumBitRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UEAggregateMaximumBitRate_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UEAggregateMaximumBitRate, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P263, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P264, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEAggregateMaximumBitRate.h b/lib/asn1c/ngap/NGAP_UEAggregateMaximumBitRate.h index 609b46fd2..f94636f2d 100644 --- a/lib/asn1c/ngap/NGAP_UEAggregateMaximumBitRate.h +++ b/lib/asn1c/ngap/NGAP_UEAggregateMaximumBitRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UECapabilityInfoRequest.c b/lib/asn1c/ngap/NGAP_UECapabilityInfoRequest.c index baf10698e..f0d81e4fb 100644 --- a/lib/asn1c/ngap/NGAP_UECapabilityInfoRequest.c +++ b/lib/asn1c/ngap/NGAP_UECapabilityInfoRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UECapabilityInfoRequest.h b/lib/asn1c/ngap/NGAP_UECapabilityInfoRequest.h index 23cfdc398..64047783d 100644 --- a/lib/asn1c/ngap/NGAP_UECapabilityInfoRequest.h +++ b/lib/asn1c/ngap/NGAP_UECapabilityInfoRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEContextModificationFailure.c b/lib/asn1c/ngap/NGAP_UEContextModificationFailure.c index fbbc4977f..c11bd69a3 100644 --- a/lib/asn1c/ngap/NGAP_UEContextModificationFailure.c +++ b/lib/asn1c/ngap/NGAP_UEContextModificationFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextModificationFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextModificationFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P23, + &asn_DEF_NGAP_ProtocolIE_Container_9574P23, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextModificationFailure.h b/lib/asn1c/ngap/NGAP_UEContextModificationFailure.h index be5e7499a..ab71613d0 100644 --- a/lib/asn1c/ngap/NGAP_UEContextModificationFailure.h +++ b/lib/asn1c/ngap/NGAP_UEContextModificationFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextModificationFailure */ typedef struct NGAP_UEContextModificationFailure { - NGAP_ProtocolIE_Container_9520P23_t protocolIEs; + NGAP_ProtocolIE_Container_9574P23_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextModificationRequest.c b/lib/asn1c/ngap/NGAP_UEContextModificationRequest.c index a37690196..a53f1d6b4 100644 --- a/lib/asn1c/ngap/NGAP_UEContextModificationRequest.c +++ b/lib/asn1c/ngap/NGAP_UEContextModificationRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextModificationRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextModificationRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P21, + &asn_DEF_NGAP_ProtocolIE_Container_9574P21, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextModificationRequest.h b/lib/asn1c/ngap/NGAP_UEContextModificationRequest.h index 0e2833b07..64f91e87b 100644 --- a/lib/asn1c/ngap/NGAP_UEContextModificationRequest.h +++ b/lib/asn1c/ngap/NGAP_UEContextModificationRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextModificationRequest */ typedef struct NGAP_UEContextModificationRequest { - NGAP_ProtocolIE_Container_9520P21_t protocolIEs; + NGAP_ProtocolIE_Container_9574P21_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextModificationResponse.c b/lib/asn1c/ngap/NGAP_UEContextModificationResponse.c index 1518d1965..ce5fca664 100644 --- a/lib/asn1c/ngap/NGAP_UEContextModificationResponse.c +++ b/lib/asn1c/ngap/NGAP_UEContextModificationResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextModificationResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextModificationResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P22, + &asn_DEF_NGAP_ProtocolIE_Container_9574P22, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextModificationResponse.h b/lib/asn1c/ngap/NGAP_UEContextModificationResponse.h index 107bbe8f2..e930ebd95 100644 --- a/lib/asn1c/ngap/NGAP_UEContextModificationResponse.h +++ b/lib/asn1c/ngap/NGAP_UEContextModificationResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextModificationResponse */ typedef struct NGAP_UEContextModificationResponse { - NGAP_ProtocolIE_Container_9520P22_t protocolIEs; + NGAP_ProtocolIE_Container_9574P22_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextReleaseCommand.c b/lib/asn1c/ngap/NGAP_UEContextReleaseCommand.c index e705520b6..66cbdec7c 100644 --- a/lib/asn1c/ngap/NGAP_UEContextReleaseCommand.c +++ b/lib/asn1c/ngap/NGAP_UEContextReleaseCommand.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextReleaseCommand_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextReleaseCommand, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P13, + &asn_DEF_NGAP_ProtocolIE_Container_9574P13, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextReleaseCommand.h b/lib/asn1c/ngap/NGAP_UEContextReleaseCommand.h index 74cf78a33..339889c63 100644 --- a/lib/asn1c/ngap/NGAP_UEContextReleaseCommand.h +++ b/lib/asn1c/ngap/NGAP_UEContextReleaseCommand.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextReleaseCommand */ typedef struct NGAP_UEContextReleaseCommand { - NGAP_ProtocolIE_Container_9520P13_t protocolIEs; + NGAP_ProtocolIE_Container_9574P13_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextReleaseComplete.c b/lib/asn1c/ngap/NGAP_UEContextReleaseComplete.c index 2f007b4fd..114fd6962 100644 --- a/lib/asn1c/ngap/NGAP_UEContextReleaseComplete.c +++ b/lib/asn1c/ngap/NGAP_UEContextReleaseComplete.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextReleaseComplete_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextReleaseComplete, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P14, + &asn_DEF_NGAP_ProtocolIE_Container_9574P14, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextReleaseComplete.h b/lib/asn1c/ngap/NGAP_UEContextReleaseComplete.h index 0d7ddd9cd..655963088 100644 --- a/lib/asn1c/ngap/NGAP_UEContextReleaseComplete.h +++ b/lib/asn1c/ngap/NGAP_UEContextReleaseComplete.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextReleaseComplete */ typedef struct NGAP_UEContextReleaseComplete { - NGAP_ProtocolIE_Container_9520P14_t protocolIEs; + NGAP_ProtocolIE_Container_9574P14_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextReleaseRequest.c b/lib/asn1c/ngap/NGAP_UEContextReleaseRequest.c index c5d07d4b4..ff6655299 100644 --- a/lib/asn1c/ngap/NGAP_UEContextReleaseRequest.c +++ b/lib/asn1c/ngap/NGAP_UEContextReleaseRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextReleaseRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextReleaseRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P12, + &asn_DEF_NGAP_ProtocolIE_Container_9574P12, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextReleaseRequest.h b/lib/asn1c/ngap/NGAP_UEContextReleaseRequest.h index 1e11eb7e1..88977eb82 100644 --- a/lib/asn1c/ngap/NGAP_UEContextReleaseRequest.h +++ b/lib/asn1c/ngap/NGAP_UEContextReleaseRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextReleaseRequest */ typedef struct NGAP_UEContextReleaseRequest { - NGAP_ProtocolIE_Container_9520P12_t protocolIEs; + NGAP_ProtocolIE_Container_9574P12_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextRequest.c b/lib/asn1c/ngap/NGAP_UEContextRequest.c index eec3062ee..9fcdd870d 100644 --- a/lib/asn1c/ngap/NGAP_UEContextRequest.c +++ b/lib/asn1c/ngap/NGAP_UEContextRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEContextRequest.h b/lib/asn1c/ngap/NGAP_UEContextRequest.h index a8f52234c..1bf4dafdc 100644 --- a/lib/asn1c/ngap/NGAP_UEContextRequest.h +++ b/lib/asn1c/ngap/NGAP_UEContextRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeFailure.c b/lib/asn1c/ngap/NGAP_UEContextResumeFailure.c index c2db98def..c0ac1700c 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeFailure.c +++ b/lib/asn1c/ngap/NGAP_UEContextResumeFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P17, + &asn_DEF_NGAP_ProtocolIE_Container_9574P17, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeFailure.h b/lib/asn1c/ngap/NGAP_UEContextResumeFailure.h index 259457fb0..afd53a06e 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeFailure.h +++ b/lib/asn1c/ngap/NGAP_UEContextResumeFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextResumeFailure */ typedef struct NGAP_UEContextResumeFailure { - NGAP_ProtocolIE_Container_9520P17_t protocolIEs; + NGAP_ProtocolIE_Container_9574P17_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeRequest.c b/lib/asn1c/ngap/NGAP_UEContextResumeRequest.c index 1beb5e23a..caf625065 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeRequest.c +++ b/lib/asn1c/ngap/NGAP_UEContextResumeRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P15, + &asn_DEF_NGAP_ProtocolIE_Container_9574P15, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeRequest.h b/lib/asn1c/ngap/NGAP_UEContextResumeRequest.h index f4b6af57c..c6f882289 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeRequest.h +++ b/lib/asn1c/ngap/NGAP_UEContextResumeRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextResumeRequest */ typedef struct NGAP_UEContextResumeRequest { - NGAP_ProtocolIE_Container_9520P15_t protocolIEs; + NGAP_ProtocolIE_Container_9574P15_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeRequestTransfer.c b/lib/asn1c/ngap/NGAP_UEContextResumeRequestTransfer.c index f4ddaf89e..ec309f932 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeRequestTransfer.c +++ b/lib/asn1c/ngap/NGAP_UEContextResumeRequestTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -30,7 +30,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeRequestTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UEContextResumeRequestTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P265, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P266, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeRequestTransfer.h b/lib/asn1c/ngap/NGAP_UEContextResumeRequestTransfer.h index 190ff3c4f..1f51b8397 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeRequestTransfer.h +++ b/lib/asn1c/ngap/NGAP_UEContextResumeRequestTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeResponse.c b/lib/asn1c/ngap/NGAP_UEContextResumeResponse.c index 4bbc04c6f..20a58f7f1 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeResponse.c +++ b/lib/asn1c/ngap/NGAP_UEContextResumeResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextResumeResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P16, + &asn_DEF_NGAP_ProtocolIE_Container_9574P16, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeResponse.h b/lib/asn1c/ngap/NGAP_UEContextResumeResponse.h index e087932bd..7d35963d5 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeResponse.h +++ b/lib/asn1c/ngap/NGAP_UEContextResumeResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextResumeResponse */ typedef struct NGAP_UEContextResumeResponse { - NGAP_ProtocolIE_Container_9520P16_t protocolIEs; + NGAP_ProtocolIE_Container_9574P16_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeResponseTransfer.c b/lib/asn1c/ngap/NGAP_UEContextResumeResponseTransfer.c index 87555604d..22b278f3f 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeResponseTransfer.c +++ b/lib/asn1c/ngap/NGAP_UEContextResumeResponseTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -30,7 +30,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UEContextResumeResponseTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UEContextResumeResponseTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P266, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P267, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextResumeResponseTransfer.h b/lib/asn1c/ngap/NGAP_UEContextResumeResponseTransfer.h index 690123638..cecc70417 100644 --- a/lib/asn1c/ngap/NGAP_UEContextResumeResponseTransfer.h +++ b/lib/asn1c/ngap/NGAP_UEContextResumeResponseTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEContextSuspendFailure.c b/lib/asn1c/ngap/NGAP_UEContextSuspendFailure.c index e5949c228..0127b8fa8 100644 --- a/lib/asn1c/ngap/NGAP_UEContextSuspendFailure.c +++ b/lib/asn1c/ngap/NGAP_UEContextSuspendFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P20, + &asn_DEF_NGAP_ProtocolIE_Container_9574P20, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextSuspendFailure.h b/lib/asn1c/ngap/NGAP_UEContextSuspendFailure.h index e0523648d..8a167f5c2 100644 --- a/lib/asn1c/ngap/NGAP_UEContextSuspendFailure.h +++ b/lib/asn1c/ngap/NGAP_UEContextSuspendFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextSuspendFailure */ typedef struct NGAP_UEContextSuspendFailure { - NGAP_ProtocolIE_Container_9520P20_t protocolIEs; + NGAP_ProtocolIE_Container_9574P20_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextSuspendRequest.c b/lib/asn1c/ngap/NGAP_UEContextSuspendRequest.c index 72ee0babc..3b5e8c915 100644 --- a/lib/asn1c/ngap/NGAP_UEContextSuspendRequest.c +++ b/lib/asn1c/ngap/NGAP_UEContextSuspendRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P18, + &asn_DEF_NGAP_ProtocolIE_Container_9574P18, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextSuspendRequest.h b/lib/asn1c/ngap/NGAP_UEContextSuspendRequest.h index e7dc6cd88..e4e61d936 100644 --- a/lib/asn1c/ngap/NGAP_UEContextSuspendRequest.h +++ b/lib/asn1c/ngap/NGAP_UEContextSuspendRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextSuspendRequest */ typedef struct NGAP_UEContextSuspendRequest { - NGAP_ProtocolIE_Container_9520P18_t protocolIEs; + NGAP_ProtocolIE_Container_9574P18_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEContextSuspendRequestTransfer.c b/lib/asn1c/ngap/NGAP_UEContextSuspendRequestTransfer.c index 1820a3f08..791b0ce21 100644 --- a/lib/asn1c/ngap/NGAP_UEContextSuspendRequestTransfer.c +++ b/lib/asn1c/ngap/NGAP_UEContextSuspendRequestTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendRequestTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UEContextSuspendRequestTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P267, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P268, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextSuspendRequestTransfer.h b/lib/asn1c/ngap/NGAP_UEContextSuspendRequestTransfer.h index 972903fcc..e6026cfd4 100644 --- a/lib/asn1c/ngap/NGAP_UEContextSuspendRequestTransfer.h +++ b/lib/asn1c/ngap/NGAP_UEContextSuspendRequestTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEContextSuspendResponse.c b/lib/asn1c/ngap/NGAP_UEContextSuspendResponse.c index 99a38cef4..ba5fc5242 100644 --- a/lib/asn1c/ngap/NGAP_UEContextSuspendResponse.c +++ b/lib/asn1c/ngap/NGAP_UEContextSuspendResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEContextSuspendResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEContextSuspendResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P19, + &asn_DEF_NGAP_ProtocolIE_Container_9574P19, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEContextSuspendResponse.h b/lib/asn1c/ngap/NGAP_UEContextSuspendResponse.h index e271431ac..5778b3194 100644 --- a/lib/asn1c/ngap/NGAP_UEContextSuspendResponse.h +++ b/lib/asn1c/ngap/NGAP_UEContextSuspendResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEContextSuspendResponse */ typedef struct NGAP_UEContextSuspendResponse { - NGAP_ProtocolIE_Container_9520P19_t protocolIEs; + NGAP_ProtocolIE_Container_9574P19_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEHistoryInformation.c b/lib/asn1c/ngap/NGAP_UEHistoryInformation.c index c6a6bff03..c4f83ff50 100644 --- a/lib/asn1c/ngap/NGAP_UEHistoryInformation.c +++ b/lib/asn1c/ngap/NGAP_UEHistoryInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEHistoryInformation.h b/lib/asn1c/ngap/NGAP_UEHistoryInformation.h index 0fcd885e8..58102431e 100644 --- a/lib/asn1c/ngap/NGAP_UEHistoryInformation.h +++ b/lib/asn1c/ngap/NGAP_UEHistoryInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEHistoryInformationFromTheUE.c b/lib/asn1c/ngap/NGAP_UEHistoryInformationFromTheUE.c index eedbebee4..10549062b 100644 --- a/lib/asn1c/ngap/NGAP_UEHistoryInformationFromTheUE.c +++ b/lib/asn1c/ngap/NGAP_UEHistoryInformationFromTheUE.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -36,7 +36,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UEHistoryInformationFromTheUE_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_UEHistoryInformationFromTheUE, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P42, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P42, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEHistoryInformationFromTheUE.h b/lib/asn1c/ngap/NGAP_UEHistoryInformationFromTheUE.h index 99230e37d..183722999 100644 --- a/lib/asn1c/ngap/NGAP_UEHistoryInformationFromTheUE.h +++ b/lib/asn1c/ngap/NGAP_UEHistoryInformationFromTheUE.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEIdentityIndexValue.c b/lib/asn1c/ngap/NGAP_UEIdentityIndexValue.c index fe3422eb1..5aa38cef0 100644 --- a/lib/asn1c/ngap/NGAP_UEIdentityIndexValue.c +++ b/lib/asn1c/ngap/NGAP_UEIdentityIndexValue.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEIdentityIndexValue_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_UEIdentityIndexValue, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P43, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P43, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEIdentityIndexValue.h b/lib/asn1c/ngap/NGAP_UEIdentityIndexValue.h index 1b7d42150..ff22b65d5 100644 --- a/lib/asn1c/ngap/NGAP_UEIdentityIndexValue.h +++ b/lib/asn1c/ngap/NGAP_UEIdentityIndexValue.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEInformationTransfer.c b/lib/asn1c/ngap/NGAP_UEInformationTransfer.c index 44418862c..39ecac7df 100644 --- a/lib/asn1c/ngap/NGAP_UEInformationTransfer.c +++ b/lib/asn1c/ngap/NGAP_UEInformationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEInformationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UEInformationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P26, + &asn_DEF_NGAP_ProtocolIE_Container_9574P26, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEInformationTransfer.h b/lib/asn1c/ngap/NGAP_UEInformationTransfer.h index 41adcad0e..e173c9bd7 100644 --- a/lib/asn1c/ngap/NGAP_UEInformationTransfer.h +++ b/lib/asn1c/ngap/NGAP_UEInformationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UEInformationTransfer */ typedef struct NGAP_UEInformationTransfer { - NGAP_ProtocolIE_Container_9520P26_t protocolIEs; + NGAP_ProtocolIE_Container_9574P26_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UEPagingIdentity.c b/lib/asn1c/ngap/NGAP_UEPagingIdentity.c index 368655fe8..f0c03b5ea 100644 --- a/lib/asn1c/ngap/NGAP_UEPagingIdentity.c +++ b/lib/asn1c/ngap/NGAP_UEPagingIdentity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -37,7 +37,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UEPagingIdentity_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_UEPagingIdentity, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P45, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P45, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEPagingIdentity.h b/lib/asn1c/ngap/NGAP_UEPagingIdentity.h index a6847b5e0..0e35585f7 100644 --- a/lib/asn1c/ngap/NGAP_UEPagingIdentity.h +++ b/lib/asn1c/ngap/NGAP_UEPagingIdentity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEPresence.c b/lib/asn1c/ngap/NGAP_UEPresence.c index 9069b8a7f..74bf63a9b 100644 --- a/lib/asn1c/ngap/NGAP_UEPresence.c +++ b/lib/asn1c/ngap/NGAP_UEPresence.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEPresence.h b/lib/asn1c/ngap/NGAP_UEPresence.h index 7feb0e9d1..3cb585df6 100644 --- a/lib/asn1c/ngap/NGAP_UEPresence.h +++ b/lib/asn1c/ngap/NGAP_UEPresence.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestItem.c b/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestItem.c index 05b1d4e24..30a331ec4 100644 --- a/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestItem.c +++ b/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UEPresenceInAreaOfInterestItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UEPresenceInAreaOfInterestItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P270, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P271, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestItem.h b/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestItem.h index 14042a0e5..31c57b460 100644 --- a/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestItem.h +++ b/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestList.c b/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestList.c index 46d40aeb1..fe214ee6a 100644 --- a/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestList.c +++ b/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestList.h b/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestList.h index 07f9ac629..729fb839a 100644 --- a/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestList.h +++ b/lib/asn1c/ngap/NGAP_UEPresenceInAreaOfInterestList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERLFReportContainer.c b/lib/asn1c/ngap/NGAP_UERLFReportContainer.c index 2b8f44437..bf49d3746 100644 --- a/lib/asn1c/ngap/NGAP_UERLFReportContainer.c +++ b/lib/asn1c/ngap/NGAP_UERLFReportContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -53,7 +53,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UERLFReportContainer_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_UERLFReportContainer, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P46, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P46, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UERLFReportContainer.h b/lib/asn1c/ngap/NGAP_UERLFReportContainer.h index bee592ed7..d86f3f738 100644 --- a/lib/asn1c/ngap/NGAP_UERLFReportContainer.h +++ b/lib/asn1c/ngap/NGAP_UERLFReportContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapability.c b/lib/asn1c/ngap/NGAP_UERadioCapability.c index 4f54f4141..8a281ed9e 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapability.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapability.h b/lib/asn1c/ngap/NGAP_UERadioCapability.h index bbeeba01f..848146bf4 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapability.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckRequest.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckRequest.c index 2e6dd280b..c677d1d13 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckRequest.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityCheckRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityCheckRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P87, + &asn_DEF_NGAP_ProtocolIE_Container_9574P87, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckRequest.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckRequest.h index f16e42fd7..966615eea 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckRequest.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UERadioCapabilityCheckRequest */ typedef struct NGAP_UERadioCapabilityCheckRequest { - NGAP_ProtocolIE_Container_9520P87_t protocolIEs; + NGAP_ProtocolIE_Container_9574P87_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckResponse.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckResponse.c index 334a306dd..d7c3290d6 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckResponse.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityCheckResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityCheckResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P88, + &asn_DEF_NGAP_ProtocolIE_Container_9574P88, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckResponse.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckResponse.h index 9ce13f90e..061bde8d3 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckResponse.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityCheckResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UERadioCapabilityCheckResponse */ typedef struct NGAP_UERadioCapabilityCheckResponse { - NGAP_ProtocolIE_Container_9520P88_t protocolIEs; + NGAP_ProtocolIE_Container_9574P88_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPaging.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPaging.c index c61eb0d5e..a373b33d2 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPaging.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityForPaging_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UERadioCapabilityForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P271, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P272, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPaging.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPaging.h index be9ab305d..d4541254d 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPaging.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfEUTRA.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfEUTRA.c index f12c4c883..b970e1248 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfEUTRA.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfEUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfEUTRA.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfEUTRA.h index 5daa20cc5..946fb3ca5 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfEUTRA.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfEUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNB-IoT.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNB-IoT.c index 09fde62a1..b4ed6a7cd 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNB-IoT.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNB-IoT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNB-IoT.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNB-IoT.h index 207592c39..36f47e9f1 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNB-IoT.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNB-IoT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNR.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNR.c index 7af6ecadf..905882576 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNR.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNR.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNR.h index 743d4bf42..91ab93447 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNR.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityForPagingOfNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityID.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityID.c index 276f256ee..8de3dc1c6 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityID.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityID.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityID.h index 14d148c11..ec33bdf73 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityID.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingRequest.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingRequest.c index f902fde85..63ae824c0 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingRequest.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityIDMappingRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityIDMappingRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P93, + &asn_DEF_NGAP_ProtocolIE_Container_9574P93, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingRequest.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingRequest.h index bc3472407..e7e2d827e 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingRequest.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UERadioCapabilityIDMappingRequest */ typedef struct NGAP_UERadioCapabilityIDMappingRequest { - NGAP_ProtocolIE_Container_9520P93_t protocolIEs; + NGAP_ProtocolIE_Container_9574P93_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingResponse.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingResponse.c index f17888246..9dcc2c090 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingResponse.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityIDMappingResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityIDMappingResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P94, + &asn_DEF_NGAP_ProtocolIE_Container_9574P94, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingResponse.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingResponse.h index 4b3150b99..e9489a4f2 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingResponse.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityIDMappingResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UERadioCapabilityIDMappingResponse */ typedef struct NGAP_UERadioCapabilityIDMappingResponse { - NGAP_ProtocolIE_Container_9520P94_t protocolIEs; + NGAP_ProtocolIE_Container_9574P94_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityInfoIndication.c b/lib/asn1c/ngap/NGAP_UERadioCapabilityInfoIndication.c index e52074402..dfa7637ff 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityInfoIndication.c +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityInfoIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UERadioCapabilityInfoIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UERadioCapabilityInfoIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P86, + &asn_DEF_NGAP_ProtocolIE_Container_9574P86, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UERadioCapabilityInfoIndication.h b/lib/asn1c/ngap/NGAP_UERadioCapabilityInfoIndication.h index 6c4bf976f..e278db083 100644 --- a/lib/asn1c/ngap/NGAP_UERadioCapabilityInfoIndication.h +++ b/lib/asn1c/ngap/NGAP_UERadioCapabilityInfoIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UERadioCapabilityInfoIndication */ typedef struct NGAP_UERadioCapabilityInfoIndication { - NGAP_ProtocolIE_Container_9520P86_t protocolIEs; + NGAP_ProtocolIE_Container_9574P86_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UERetentionInformation.c b/lib/asn1c/ngap/NGAP_UERetentionInformation.c index 97123b6c5..b1aaa75aa 100644 --- a/lib/asn1c/ngap/NGAP_UERetentionInformation.c +++ b/lib/asn1c/ngap/NGAP_UERetentionInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UERetentionInformation.h b/lib/asn1c/ngap/NGAP_UERetentionInformation.h index 10971445b..676e06ffd 100644 --- a/lib/asn1c/ngap/NGAP_UERetentionInformation.h +++ b/lib/asn1c/ngap/NGAP_UERetentionInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UESecurityCapabilities.c b/lib/asn1c/ngap/NGAP_UESecurityCapabilities.c index 7cfffab4e..862beeed9 100644 --- a/lib/asn1c/ngap/NGAP_UESecurityCapabilities.c +++ b/lib/asn1c/ngap/NGAP_UESecurityCapabilities.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UESecurityCapabilities_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UESecurityCapabilities, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P272, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P273, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UESecurityCapabilities.h b/lib/asn1c/ngap/NGAP_UESecurityCapabilities.h index a09630e7e..a5a8dee9c 100644 --- a/lib/asn1c/ngap/NGAP_UESecurityCapabilities.h +++ b/lib/asn1c/ngap/NGAP_UESecurityCapabilities.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UETNLABindingReleaseRequest.c b/lib/asn1c/ngap/NGAP_UETNLABindingReleaseRequest.c index f95afc03e..6dfd1659f 100644 --- a/lib/asn1c/ngap/NGAP_UETNLABindingReleaseRequest.c +++ b/lib/asn1c/ngap/NGAP_UETNLABindingReleaseRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UETNLABindingReleaseRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UETNLABindingReleaseRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P85, + &asn_DEF_NGAP_ProtocolIE_Container_9574P85, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UETNLABindingReleaseRequest.h b/lib/asn1c/ngap/NGAP_UETNLABindingReleaseRequest.h index 22d69ce0c..b5a077cdb 100644 --- a/lib/asn1c/ngap/NGAP_UETNLABindingReleaseRequest.h +++ b/lib/asn1c/ngap/NGAP_UETNLABindingReleaseRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UETNLABindingReleaseRequest */ typedef struct NGAP_UETNLABindingReleaseRequest { - NGAP_ProtocolIE_Container_9520P85_t protocolIEs; + NGAP_ProtocolIE_Container_9574P85_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UL-CP-SecurityInformation.c b/lib/asn1c/ngap/NGAP_UL-CP-SecurityInformation.c index a5420f40b..c86138804 100644 --- a/lib/asn1c/ngap/NGAP_UL-CP-SecurityInformation.c +++ b/lib/asn1c/ngap/NGAP_UL-CP-SecurityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UL_CP_SecurityInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UL_CP_SecurityInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P273, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P274, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UL-CP-SecurityInformation.h b/lib/asn1c/ngap/NGAP_UL-CP-SecurityInformation.h index 9057045d3..bb50fe388 100644 --- a/lib/asn1c/ngap/NGAP_UL-CP-SecurityInformation.h +++ b/lib/asn1c/ngap/NGAP_UL-CP-SecurityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UL-NAS-Count.c b/lib/asn1c/ngap/NGAP_UL-NAS-Count.c index b2a5b05b4..3ebd1e316 100644 --- a/lib/asn1c/ngap/NGAP_UL-NAS-Count.c +++ b/lib/asn1c/ngap/NGAP_UL-NAS-Count.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UL-NAS-Count.h b/lib/asn1c/ngap/NGAP_UL-NAS-Count.h index 04be83624..e7839e419 100644 --- a/lib/asn1c/ngap/NGAP_UL-NAS-Count.h +++ b/lib/asn1c/ngap/NGAP_UL-NAS-Count.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UL-NAS-MAC.c b/lib/asn1c/ngap/NGAP_UL-NAS-MAC.c index 764cfb731..716c9f442 100644 --- a/lib/asn1c/ngap/NGAP_UL-NAS-MAC.c +++ b/lib/asn1c/ngap/NGAP_UL-NAS-MAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UL-NAS-MAC.h b/lib/asn1c/ngap/NGAP_UL-NAS-MAC.h index 5f9d913ef..cd75ce7ce 100644 --- a/lib/asn1c/ngap/NGAP_UL-NAS-MAC.h +++ b/lib/asn1c/ngap/NGAP_UL-NAS-MAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyItem.c b/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyItem.c index bf86909f0..d82093541 100644 --- a/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyItem.c +++ b/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UL_NGU_UP_TNLModifyItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UL_NGU_UP_TNLModifyItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P274, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P275, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyItem.h b/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyItem.h index d87156675..2ed371f04 100644 --- a/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyItem.h +++ b/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyList.c b/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyList.c index 59cf31bc7..23126b5dd 100644 --- a/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyList.c +++ b/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyList.h b/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyList.h index 052578cd9..9b2c2606a 100644 --- a/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyList.h +++ b/lib/asn1c/ngap/NGAP_UL-NGU-UP-TNLModifyList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ULForwarding.c b/lib/asn1c/ngap/NGAP_ULForwarding.c index 5180807b5..7452e446a 100644 --- a/lib/asn1c/ngap/NGAP_ULForwarding.c +++ b/lib/asn1c/ngap/NGAP_ULForwarding.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_ULForwarding.h b/lib/asn1c/ngap/NGAP_ULForwarding.h index 17095db3e..f58358f3e 100644 --- a/lib/asn1c/ngap/NGAP_ULForwarding.h +++ b/lib/asn1c/ngap/NGAP_ULForwarding.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformation.c b/lib/asn1c/ngap/NGAP_UPTransportLayerInformation.c index bae69d2b8..6846e24dd 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformation.c +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -37,7 +37,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_UPTransportLayerInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P47, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P47, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformation.h b/lib/asn1c/ngap/NGAP_UPTransportLayerInformation.h index a951ce0ad..7d8a49521 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformation.h +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationItem.c b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationItem.c index a8160461f..c86c99ca1 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationItem.c +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UPTransportLayerInformationItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P276, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P277, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationItem.h b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationItem.h index d518e7b0a..7c422da67 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationItem.h +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationList.c b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationList.c index 6bb3dfaf9..8c8c6e37a 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationList.c +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationList.h b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationList.h index 2b7766595..17b2a66aa 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationList.h +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairItem.c b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairItem.c index 6a0ec42d2..322ed975d 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairItem.c +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UPTransportLayerInformationPairItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UPTransportLayerInformationPairItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P277, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P278, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairItem.h b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairItem.h index a85119edd..e6707867e 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairItem.h +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairList.c b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairList.c index b52e3984d..d799ea9ab 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairList.c +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairList.h b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairList.h index 2ee501f96..e7f60a052 100644 --- a/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairList.h +++ b/lib/asn1c/ngap/NGAP_UPTransportLayerInformationPairList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_URI-address.c b/lib/asn1c/ngap/NGAP_URI-address.c index 5a1c9d0f7..95df9f60a 100644 --- a/lib/asn1c/ngap/NGAP_URI-address.c +++ b/lib/asn1c/ngap/NGAP_URI-address.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_URI-address.h b/lib/asn1c/ngap/NGAP_URI-address.h index 551689e5e..e3dee1d1a 100644 --- a/lib/asn1c/ngap/NGAP_URI-address.h +++ b/lib/asn1c/ngap/NGAP_URI-address.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UnavailableGUAMIItem.c b/lib/asn1c/ngap/NGAP_UnavailableGUAMIItem.c index 1f69d3405..e4100e7d4 100644 --- a/lib/asn1c/ngap/NGAP_UnavailableGUAMIItem.c +++ b/lib/asn1c/ngap/NGAP_UnavailableGUAMIItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UnavailableGUAMIItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UnavailableGUAMIItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P275, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P276, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UnavailableGUAMIItem.h b/lib/asn1c/ngap/NGAP_UnavailableGUAMIItem.h index 6018a6a83..527b2eaed 100644 --- a/lib/asn1c/ngap/NGAP_UnavailableGUAMIItem.h +++ b/lib/asn1c/ngap/NGAP_UnavailableGUAMIItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UnavailableGUAMIList.c b/lib/asn1c/ngap/NGAP_UnavailableGUAMIList.c index aa5eaa8be..c3d44e479 100644 --- a/lib/asn1c/ngap/NGAP_UnavailableGUAMIList.c +++ b/lib/asn1c/ngap/NGAP_UnavailableGUAMIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UnavailableGUAMIList.h b/lib/asn1c/ngap/NGAP_UnavailableGUAMIList.h index f7e7e5e65..602848143 100644 --- a/lib/asn1c/ngap/NGAP_UnavailableGUAMIList.h +++ b/lib/asn1c/ngap/NGAP_UnavailableGUAMIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UnsuccessfulOutcome.c b/lib/asn1c/ngap/NGAP_UnsuccessfulOutcome.c index dcabb38cb..d52775d63 100644 --- a/lib/asn1c/ngap/NGAP_UnsuccessfulOutcome.c +++ b/lib/asn1c/ngap/NGAP_UnsuccessfulOutcome.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Descriptions" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UnsuccessfulOutcome.h b/lib/asn1c/ngap/NGAP_UnsuccessfulOutcome.h index 07cda8c80..a4acadd58 100644 --- a/lib/asn1c/ngap/NGAP_UnsuccessfulOutcome.h +++ b/lib/asn1c/ngap/NGAP_UnsuccessfulOutcome.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Descriptions" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UpdateFeedback.c b/lib/asn1c/ngap/NGAP_UpdateFeedback.c new file mode 100644 index 000000000..92edd727b --- /dev/null +++ b/lib/asn1c/ngap/NGAP_UpdateFeedback.c @@ -0,0 +1,77 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#include "NGAP_UpdateFeedback.h" + +int +NGAP_UpdateFeedback_constraint(const asn_TYPE_descriptor_t *td, const void *sptr, + asn_app_constraint_failed_f *ctfailcb, void *app_key) { + const BIT_STRING_t *st = (const BIT_STRING_t *)sptr; + size_t size; + + if(!sptr) { + ASN__CTFAIL(app_key, td, sptr, + "%s: value not given (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } + + if(st->size > 0) { + /* Size in bits */ + size = 8 * st->size - (st->bits_unused & 0x07); + } else { + size = 0; + } + + if((size == 8UL)) { + /* Constraint check succeeded */ + return 0; + } else { + ASN__CTFAIL(app_key, td, sptr, + "%s: constraint failed (%s:%d)", + td->name, __FILE__, __LINE__); + return -1; + } +} + +/* + * This type is implemented using BIT_STRING, + * so here we adjust the DEF accordingly. + */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +asn_per_constraints_t asn_PER_type_NGAP_UpdateFeedback_constr_1 CC_NOTUSED = { + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + { APC_CONSTRAINED | APC_EXTENSIBLE, 0, 0, 8, 8 } /* (SIZE(8..8,...)) */, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +static const ber_tlv_tag_t asn_DEF_NGAP_UpdateFeedback_tags_1[] = { + (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)) +}; +asn_TYPE_descriptor_t asn_DEF_NGAP_UpdateFeedback = { + "UpdateFeedback", + "UpdateFeedback", + &asn_OP_BIT_STRING, + asn_DEF_NGAP_UpdateFeedback_tags_1, + sizeof(asn_DEF_NGAP_UpdateFeedback_tags_1) + /sizeof(asn_DEF_NGAP_UpdateFeedback_tags_1[0]), /* 1 */ + asn_DEF_NGAP_UpdateFeedback_tags_1, /* Same as above */ + sizeof(asn_DEF_NGAP_UpdateFeedback_tags_1) + /sizeof(asn_DEF_NGAP_UpdateFeedback_tags_1[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_type_NGAP_UpdateFeedback_constr_1, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + NGAP_UpdateFeedback_constraint + }, + 0, 0, /* No members */ + &asn_SPC_BIT_STRING_specs /* Additional specs */ +}; + diff --git a/lib/asn1c/ngap/NGAP_UpdateFeedback.h b/lib/asn1c/ngap/NGAP_UpdateFeedback.h new file mode 100644 index 000000000..ef85df056 --- /dev/null +++ b/lib/asn1c/ngap/NGAP_UpdateFeedback.h @@ -0,0 +1,38 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "NGAP-IEs" + * found in "../support/ngap-r16.7.0/38413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#ifndef _NGAP_UpdateFeedback_H_ +#define _NGAP_UpdateFeedback_H_ + + +#include + +/* Including external dependencies */ +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* NGAP_UpdateFeedback */ +typedef BIT_STRING_t NGAP_UpdateFeedback_t; + +/* Implementation */ +extern asn_per_constraints_t asn_PER_type_NGAP_UpdateFeedback_constr_1; +extern asn_TYPE_descriptor_t asn_DEF_NGAP_UpdateFeedback; +asn_struct_free_f NGAP_UpdateFeedback_free; +asn_struct_print_f NGAP_UpdateFeedback_print; +asn_constr_check_f NGAP_UpdateFeedback_constraint; +per_type_decoder_f NGAP_UpdateFeedback_decode_aper; +per_type_encoder_f NGAP_UpdateFeedback_encode_aper; + +#ifdef __cplusplus +} +#endif + +#endif /* _NGAP_UpdateFeedback_H_ */ +#include diff --git a/lib/asn1c/ngap/NGAP_UplinkNASTransport.c b/lib/asn1c/ngap/NGAP_UplinkNASTransport.c index cd57f7544..fba068c35 100644 --- a/lib/asn1c/ngap/NGAP_UplinkNASTransport.c +++ b/lib/asn1c/ngap/NGAP_UplinkNASTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UplinkNASTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UplinkNASTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P48, + &asn_DEF_NGAP_ProtocolIE_Container_9574P48, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UplinkNASTransport.h b/lib/asn1c/ngap/NGAP_UplinkNASTransport.h index d42fded34..c0cda00ba 100644 --- a/lib/asn1c/ngap/NGAP_UplinkNASTransport.h +++ b/lib/asn1c/ngap/NGAP_UplinkNASTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UplinkNASTransport */ typedef struct NGAP_UplinkNASTransport { - NGAP_ProtocolIE_Container_9520P48_t protocolIEs; + NGAP_ProtocolIE_Container_9574P48_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UplinkNonUEAssociatedNRPPaTransport.c b/lib/asn1c/ngap/NGAP_UplinkNonUEAssociatedNRPPaTransport.c index 9e47d3565..b4d1b6c1b 100644 --- a/lib/asn1c/ngap/NGAP_UplinkNonUEAssociatedNRPPaTransport.c +++ b/lib/asn1c/ngap/NGAP_UplinkNonUEAssociatedNRPPaTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UplinkNonUEAssociatedNRPPaTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UplinkNonUEAssociatedNRPPaTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P77, + &asn_DEF_NGAP_ProtocolIE_Container_9574P77, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UplinkNonUEAssociatedNRPPaTransport.h b/lib/asn1c/ngap/NGAP_UplinkNonUEAssociatedNRPPaTransport.h index 8bfc48c3c..5b04ba63f 100644 --- a/lib/asn1c/ngap/NGAP_UplinkNonUEAssociatedNRPPaTransport.h +++ b/lib/asn1c/ngap/NGAP_UplinkNonUEAssociatedNRPPaTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UplinkNonUEAssociatedNRPPaTransport */ typedef struct NGAP_UplinkNonUEAssociatedNRPPaTransport { - NGAP_ProtocolIE_Container_9520P77_t protocolIEs; + NGAP_ProtocolIE_Container_9574P77_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UplinkRANConfigurationTransfer.c b/lib/asn1c/ngap/NGAP_UplinkRANConfigurationTransfer.c index ffc13197c..672e74f0c 100644 --- a/lib/asn1c/ngap/NGAP_UplinkRANConfigurationTransfer.c +++ b/lib/asn1c/ngap/NGAP_UplinkRANConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UplinkRANConfigurationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UplinkRANConfigurationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P66, + &asn_DEF_NGAP_ProtocolIE_Container_9574P66, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UplinkRANConfigurationTransfer.h b/lib/asn1c/ngap/NGAP_UplinkRANConfigurationTransfer.h index 544f28ece..4b408e57d 100644 --- a/lib/asn1c/ngap/NGAP_UplinkRANConfigurationTransfer.h +++ b/lib/asn1c/ngap/NGAP_UplinkRANConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UplinkRANConfigurationTransfer */ typedef struct NGAP_UplinkRANConfigurationTransfer { - NGAP_ProtocolIE_Container_9520P66_t protocolIEs; + NGAP_ProtocolIE_Container_9574P66_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UplinkRANEarlyStatusTransfer.c b/lib/asn1c/ngap/NGAP_UplinkRANEarlyStatusTransfer.c index 680695ee2..580e99e96 100644 --- a/lib/asn1c/ngap/NGAP_UplinkRANEarlyStatusTransfer.c +++ b/lib/asn1c/ngap/NGAP_UplinkRANEarlyStatusTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UplinkRANEarlyStatusTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UplinkRANEarlyStatusTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P41, + &asn_DEF_NGAP_ProtocolIE_Container_9574P41, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UplinkRANEarlyStatusTransfer.h b/lib/asn1c/ngap/NGAP_UplinkRANEarlyStatusTransfer.h index 54641b42c..d19f2d919 100644 --- a/lib/asn1c/ngap/NGAP_UplinkRANEarlyStatusTransfer.h +++ b/lib/asn1c/ngap/NGAP_UplinkRANEarlyStatusTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UplinkRANEarlyStatusTransfer */ typedef struct NGAP_UplinkRANEarlyStatusTransfer { - NGAP_ProtocolIE_Container_9520P41_t protocolIEs; + NGAP_ProtocolIE_Container_9574P41_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UplinkRANStatusTransfer.c b/lib/asn1c/ngap/NGAP_UplinkRANStatusTransfer.c index 54729d070..44c70c789 100644 --- a/lib/asn1c/ngap/NGAP_UplinkRANStatusTransfer.c +++ b/lib/asn1c/ngap/NGAP_UplinkRANStatusTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UplinkRANStatusTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UplinkRANStatusTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P43, + &asn_DEF_NGAP_ProtocolIE_Container_9574P43, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UplinkRANStatusTransfer.h b/lib/asn1c/ngap/NGAP_UplinkRANStatusTransfer.h index 3865c4f43..43bfda60f 100644 --- a/lib/asn1c/ngap/NGAP_UplinkRANStatusTransfer.h +++ b/lib/asn1c/ngap/NGAP_UplinkRANStatusTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UplinkRANStatusTransfer */ typedef struct NGAP_UplinkRANStatusTransfer { - NGAP_ProtocolIE_Container_9520P43_t protocolIEs; + NGAP_ProtocolIE_Container_9574P43_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UplinkRIMInformationTransfer.c b/lib/asn1c/ngap/NGAP_UplinkRIMInformationTransfer.c index b78c591e2..5a62227b0 100644 --- a/lib/asn1c/ngap/NGAP_UplinkRIMInformationTransfer.c +++ b/lib/asn1c/ngap/NGAP_UplinkRIMInformationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UplinkRIMInformationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UplinkRIMInformationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P90, + &asn_DEF_NGAP_ProtocolIE_Container_9574P90, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UplinkRIMInformationTransfer.h b/lib/asn1c/ngap/NGAP_UplinkRIMInformationTransfer.h index 4dfe2b055..18c5d6fcd 100644 --- a/lib/asn1c/ngap/NGAP_UplinkRIMInformationTransfer.h +++ b/lib/asn1c/ngap/NGAP_UplinkRIMInformationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UplinkRIMInformationTransfer */ typedef struct NGAP_UplinkRIMInformationTransfer { - NGAP_ProtocolIE_Container_9520P90_t protocolIEs; + NGAP_ProtocolIE_Container_9574P90_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UplinkUEAssociatedNRPPaTransport.c b/lib/asn1c/ngap/NGAP_UplinkUEAssociatedNRPPaTransport.c index 028a3d55f..ccd49a7eb 100644 --- a/lib/asn1c/ngap/NGAP_UplinkUEAssociatedNRPPaTransport.c +++ b/lib/asn1c/ngap/NGAP_UplinkUEAssociatedNRPPaTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UplinkUEAssociatedNRPPaTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_UplinkUEAssociatedNRPPaTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P75, + &asn_DEF_NGAP_ProtocolIE_Container_9574P75, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UplinkUEAssociatedNRPPaTransport.h b/lib/asn1c/ngap/NGAP_UplinkUEAssociatedNRPPaTransport.h index 92f150444..687216f8c 100644 --- a/lib/asn1c/ngap/NGAP_UplinkUEAssociatedNRPPaTransport.h +++ b/lib/asn1c/ngap/NGAP_UplinkUEAssociatedNRPPaTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_UplinkUEAssociatedNRPPaTransport */ typedef struct NGAP_UplinkUEAssociatedNRPPaTransport { - NGAP_ProtocolIE_Container_9520P75_t protocolIEs; + NGAP_ProtocolIE_Container_9574P75_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformation.c b/lib/asn1c/ngap/NGAP_UserLocationInformation.c index 40e076219..8e87904b3 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformation.c +++ b/lib/asn1c/ngap/NGAP_UserLocationInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -73,7 +73,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformation_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_UserLocationInformation, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P48, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P48, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformation.h b/lib/asn1c/ngap/NGAP_UserLocationInformation.h index 88e5751ee..b2a693092 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformation.h +++ b/lib/asn1c/ngap/NGAP_UserLocationInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationEUTRA.c b/lib/asn1c/ngap/NGAP_UserLocationInformationEUTRA.c index 3cd1c37f7..cd5388cab 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationEUTRA.c +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationEUTRA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationEUTRA_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UserLocationInformationEUTRA, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P278, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P279, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationEUTRA.h b/lib/asn1c/ngap/NGAP_UserLocationInformationEUTRA.h index fa8256d82..bdfdb818a 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationEUTRA.h +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationEUTRA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationN3IWF.c b/lib/asn1c/ngap/NGAP_UserLocationInformationN3IWF.c index c4ba8854b..1254d9a15 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationN3IWF.c +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationN3IWF.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationN3IWF_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UserLocationInformationN3IWF, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P279, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P280, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationN3IWF.h b/lib/asn1c/ngap/NGAP_UserLocationInformationN3IWF.h index d1c270c53..1a3ec1850 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationN3IWF.h +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationN3IWF.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationNR.c b/lib/asn1c/ngap/NGAP_UserLocationInformationNR.c index bab9ae11a..659cad8f4 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationNR.c +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationNR_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UserLocationInformationNR, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P282, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P283, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationNR.h b/lib/asn1c/ngap/NGAP_UserLocationInformationNR.h index cc44f0cb9..db4743845 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationNR.h +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationTNGF.c b/lib/asn1c/ngap/NGAP_UserLocationInformationTNGF.c index b5eea500f..491071b88 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationTNGF.c +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationTNGF.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTNGF_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UserLocationInformationTNGF, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P280, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P281, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationTNGF.h b/lib/asn1c/ngap/NGAP_UserLocationInformationTNGF.h index 321334927..62321ad71 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationTNGF.h +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationTNGF.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationTWIF.c b/lib/asn1c/ngap/NGAP_UserLocationInformationTWIF.c index fbf71d9b6..5eb6c966b 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationTWIF.c +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationTWIF.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationTWIF_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UserLocationInformationTWIF, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P281, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P282, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationTWIF.h b/lib/asn1c/ngap/NGAP_UserLocationInformationTWIF.h index 58943f72b..9bd24c716 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationTWIF.h +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationTWIF.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationW-AGF.c b/lib/asn1c/ngap/NGAP_UserLocationInformationW-AGF.c index 51069a934..10c9dfa36 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationW-AGF.c +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationW-AGF.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -54,7 +54,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_UserLocationInformationW_AGF_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_UserLocationInformationW_AGF, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P49, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P49, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UserLocationInformationW-AGF.h b/lib/asn1c/ngap/NGAP_UserLocationInformationW-AGF.h index 56b0f968a..efbe2d950 100644 --- a/lib/asn1c/ngap/NGAP_UserLocationInformationW-AGF.h +++ b/lib/asn1c/ngap/NGAP_UserLocationInformationW-AGF.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_UserPlaneSecurityInformation.c b/lib/asn1c/ngap/NGAP_UserPlaneSecurityInformation.c index 4d6383092..ed591413d 100644 --- a/lib/asn1c/ngap/NGAP_UserPlaneSecurityInformation.c +++ b/lib/asn1c/ngap/NGAP_UserPlaneSecurityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_NGAP_UserPlaneSecurityInformation_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_UserPlaneSecurityInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P283, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P284, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_UserPlaneSecurityInformation.h b/lib/asn1c/ngap/NGAP_UserPlaneSecurityInformation.h index 917ab9215..9020ad642 100644 --- a/lib/asn1c/ngap/NGAP_UserPlaneSecurityInformation.h +++ b/lib/asn1c/ngap/NGAP_UserPlaneSecurityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_VehicleUE.c b/lib/asn1c/ngap/NGAP_VehicleUE.c index bfae27bf4..ea19be07f 100644 --- a/lib/asn1c/ngap/NGAP_VehicleUE.c +++ b/lib/asn1c/ngap/NGAP_VehicleUE.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_VehicleUE.h b/lib/asn1c/ngap/NGAP_VehicleUE.h index 3488d7347..45c1e2bfd 100644 --- a/lib/asn1c/ngap/NGAP_VehicleUE.h +++ b/lib/asn1c/ngap/NGAP_VehicleUE.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_VolumeTimedReport-Item.c b/lib/asn1c/ngap/NGAP_VolumeTimedReport-Item.c index c6d737c28..0880e0b78 100644 --- a/lib/asn1c/ngap/NGAP_VolumeTimedReport-Item.c +++ b/lib/asn1c/ngap/NGAP_VolumeTimedReport-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -222,7 +222,7 @@ asn_TYPE_member_t asn_MBR_NGAP_VolumeTimedReport_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_VolumeTimedReport_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P284, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P285, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_VolumeTimedReport-Item.h b/lib/asn1c/ngap/NGAP_VolumeTimedReport-Item.h index 20b11d561..f536c23b5 100644 --- a/lib/asn1c/ngap/NGAP_VolumeTimedReport-Item.h +++ b/lib/asn1c/ngap/NGAP_VolumeTimedReport-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_VolumeTimedReportList.c b/lib/asn1c/ngap/NGAP_VolumeTimedReportList.c index 2f9750639..14d369b07 100644 --- a/lib/asn1c/ngap/NGAP_VolumeTimedReportList.c +++ b/lib/asn1c/ngap/NGAP_VolumeTimedReportList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_VolumeTimedReportList.h b/lib/asn1c/ngap/NGAP_VolumeTimedReportList.h index a67e8a001..43bbfc562 100644 --- a/lib/asn1c/ngap/NGAP_VolumeTimedReportList.h +++ b/lib/asn1c/ngap/NGAP_VolumeTimedReportList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_W-AGF-ID.c b/lib/asn1c/ngap/NGAP_W-AGF-ID.c index 3657aa96c..b952e579d 100644 --- a/lib/asn1c/ngap/NGAP_W-AGF-ID.c +++ b/lib/asn1c/ngap/NGAP_W-AGF-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -74,7 +74,7 @@ asn_TYPE_member_t asn_MBR_NGAP_W_AGF_ID_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_W_AGF_ID, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P50, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P50, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_W-AGF-ID.h b/lib/asn1c/ngap/NGAP_W-AGF-ID.h index e70f6c8af..7a90625ab 100644 --- a/lib/asn1c/ngap/NGAP_W-AGF-ID.h +++ b/lib/asn1c/ngap/NGAP_W-AGF-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WLANMeasConfig.c b/lib/asn1c/ngap/NGAP_WLANMeasConfig.c index 21f3e6e93..26ff40ad8 100644 --- a/lib/asn1c/ngap/NGAP_WLANMeasConfig.c +++ b/lib/asn1c/ngap/NGAP_WLANMeasConfig.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WLANMeasConfig.h b/lib/asn1c/ngap/NGAP_WLANMeasConfig.h index efae72937..7deb8cc82 100644 --- a/lib/asn1c/ngap/NGAP_WLANMeasConfig.h +++ b/lib/asn1c/ngap/NGAP_WLANMeasConfig.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WLANMeasConfigNameItem.c b/lib/asn1c/ngap/NGAP_WLANMeasConfigNameItem.c index 19b78078a..0931c9824 100644 --- a/lib/asn1c/ngap/NGAP_WLANMeasConfigNameItem.c +++ b/lib/asn1c/ngap/NGAP_WLANMeasConfigNameItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WLANMeasConfigNameItem_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_WLANMeasConfigNameItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P286, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P287, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_WLANMeasConfigNameItem.h b/lib/asn1c/ngap/NGAP_WLANMeasConfigNameItem.h index 3409be914..651f29d84 100644 --- a/lib/asn1c/ngap/NGAP_WLANMeasConfigNameItem.h +++ b/lib/asn1c/ngap/NGAP_WLANMeasConfigNameItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WLANMeasConfigNameList.c b/lib/asn1c/ngap/NGAP_WLANMeasConfigNameList.c index 74487fdf2..dfe117b78 100644 --- a/lib/asn1c/ngap/NGAP_WLANMeasConfigNameList.c +++ b/lib/asn1c/ngap/NGAP_WLANMeasConfigNameList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WLANMeasConfigNameList.h b/lib/asn1c/ngap/NGAP_WLANMeasConfigNameList.h index 39c8212d5..988b0950c 100644 --- a/lib/asn1c/ngap/NGAP_WLANMeasConfigNameList.h +++ b/lib/asn1c/ngap/NGAP_WLANMeasConfigNameList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WLANMeasurementConfiguration.c b/lib/asn1c/ngap/NGAP_WLANMeasurementConfiguration.c index 87a58a92b..f87096829 100644 --- a/lib/asn1c/ngap/NGAP_WLANMeasurementConfiguration.c +++ b/lib/asn1c/ngap/NGAP_WLANMeasurementConfiguration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -193,7 +193,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WLANMeasurementConfiguration_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_WLANMeasurementConfiguration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P285, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P286, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_WLANMeasurementConfiguration.h b/lib/asn1c/ngap/NGAP_WLANMeasurementConfiguration.h index 32a77dbc9..8b5a4124a 100644 --- a/lib/asn1c/ngap/NGAP_WLANMeasurementConfiguration.h +++ b/lib/asn1c/ngap/NGAP_WLANMeasurementConfiguration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WLANName.c b/lib/asn1c/ngap/NGAP_WLANName.c index 74c51f2fb..c7fee436e 100644 --- a/lib/asn1c/ngap/NGAP_WLANName.c +++ b/lib/asn1c/ngap/NGAP_WLANName.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WLANName.h b/lib/asn1c/ngap/NGAP_WLANName.h index 47283f9ea..90a3cab08 100644 --- a/lib/asn1c/ngap/NGAP_WLANName.h +++ b/lib/asn1c/ngap/NGAP_WLANName.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WUS-Assistance-Information.c b/lib/asn1c/ngap/NGAP_WUS-Assistance-Information.c index 774ed6339..3c76411d0 100644 --- a/lib/asn1c/ngap/NGAP_WUS-Assistance-Information.c +++ b/lib/asn1c/ngap/NGAP_WUS-Assistance-Information.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_WUS_Assistance_Information_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_WUS_Assistance_Information, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P287, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P288, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_WUS-Assistance-Information.h b/lib/asn1c/ngap/NGAP_WUS-Assistance-Information.h index a6067cbdc..8f42f3c65 100644 --- a/lib/asn1c/ngap/NGAP_WUS-Assistance-Information.h +++ b/lib/asn1c/ngap/NGAP_WUS-Assistance-Information.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningAreaCoordinates.c b/lib/asn1c/ngap/NGAP_WarningAreaCoordinates.c index 02faf5c1a..e5db537ee 100644 --- a/lib/asn1c/ngap/NGAP_WarningAreaCoordinates.c +++ b/lib/asn1c/ngap/NGAP_WarningAreaCoordinates.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningAreaCoordinates.h b/lib/asn1c/ngap/NGAP_WarningAreaCoordinates.h index e990fd5ba..fe31a7e94 100644 --- a/lib/asn1c/ngap/NGAP_WarningAreaCoordinates.h +++ b/lib/asn1c/ngap/NGAP_WarningAreaCoordinates.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningAreaList.c b/lib/asn1c/ngap/NGAP_WarningAreaList.c index c7be0f9ee..f073b20cf 100644 --- a/lib/asn1c/ngap/NGAP_WarningAreaList.c +++ b/lib/asn1c/ngap/NGAP_WarningAreaList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -91,7 +91,7 @@ static asn_TYPE_member_t asn_MBR_NGAP_WarningAreaList_1[] = { { ATF_POINTER, 0, offsetof(struct NGAP_WarningAreaList, choice.choice_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_SingleContainer_9523P51, + &asn_DEF_NGAP_ProtocolIE_SingleContainer_9577P51, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_WarningAreaList.h b/lib/asn1c/ngap/NGAP_WarningAreaList.h index 9bd7d087a..065414bcc 100644 --- a/lib/asn1c/ngap/NGAP_WarningAreaList.h +++ b/lib/asn1c/ngap/NGAP_WarningAreaList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningMessageContents.c b/lib/asn1c/ngap/NGAP_WarningMessageContents.c index a4bc3ed11..e598680f1 100644 --- a/lib/asn1c/ngap/NGAP_WarningMessageContents.c +++ b/lib/asn1c/ngap/NGAP_WarningMessageContents.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningMessageContents.h b/lib/asn1c/ngap/NGAP_WarningMessageContents.h index 445dabdf7..dec476a8a 100644 --- a/lib/asn1c/ngap/NGAP_WarningMessageContents.h +++ b/lib/asn1c/ngap/NGAP_WarningMessageContents.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningSecurityInfo.c b/lib/asn1c/ngap/NGAP_WarningSecurityInfo.c index 26f7032e5..cb4dff352 100644 --- a/lib/asn1c/ngap/NGAP_WarningSecurityInfo.c +++ b/lib/asn1c/ngap/NGAP_WarningSecurityInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningSecurityInfo.h b/lib/asn1c/ngap/NGAP_WarningSecurityInfo.h index c394e33a7..53c7e6eab 100644 --- a/lib/asn1c/ngap/NGAP_WarningSecurityInfo.h +++ b/lib/asn1c/ngap/NGAP_WarningSecurityInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningType.c b/lib/asn1c/ngap/NGAP_WarningType.c index 1807085b9..b7d602862 100644 --- a/lib/asn1c/ngap/NGAP_WarningType.c +++ b/lib/asn1c/ngap/NGAP_WarningType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WarningType.h b/lib/asn1c/ngap/NGAP_WarningType.h index 01c9de148..6502be6aa 100644 --- a/lib/asn1c/ngap/NGAP_WarningType.h +++ b/lib/asn1c/ngap/NGAP_WarningType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_WriteReplaceWarningRequest.c b/lib/asn1c/ngap/NGAP_WriteReplaceWarningRequest.c index b04e983eb..675674696 100644 --- a/lib/asn1c/ngap/NGAP_WriteReplaceWarningRequest.c +++ b/lib/asn1c/ngap/NGAP_WriteReplaceWarningRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WriteReplaceWarningRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_WriteReplaceWarningRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P68, + &asn_DEF_NGAP_ProtocolIE_Container_9574P68, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_WriteReplaceWarningRequest.h b/lib/asn1c/ngap/NGAP_WriteReplaceWarningRequest.h index 5dd2567b5..225a66b31 100644 --- a/lib/asn1c/ngap/NGAP_WriteReplaceWarningRequest.h +++ b/lib/asn1c/ngap/NGAP_WriteReplaceWarningRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_WriteReplaceWarningRequest */ typedef struct NGAP_WriteReplaceWarningRequest { - NGAP_ProtocolIE_Container_9520P68_t protocolIEs; + NGAP_ProtocolIE_Container_9574P68_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_WriteReplaceWarningResponse.c b/lib/asn1c/ngap/NGAP_WriteReplaceWarningResponse.c index a405b89aa..ec2b7f7d1 100644 --- a/lib/asn1c/ngap/NGAP_WriteReplaceWarningResponse.c +++ b/lib/asn1c/ngap/NGAP_WriteReplaceWarningResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_NGAP_WriteReplaceWarningResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct NGAP_WriteReplaceWarningResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolIE_Container_9520P69, + &asn_DEF_NGAP_ProtocolIE_Container_9574P69, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_WriteReplaceWarningResponse.h b/lib/asn1c/ngap/NGAP_WriteReplaceWarningResponse.h index 7f8aad49d..09efb24ef 100644 --- a/lib/asn1c/ngap/NGAP_WriteReplaceWarningResponse.h +++ b/lib/asn1c/ngap/NGAP_WriteReplaceWarningResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* NGAP_WriteReplaceWarningResponse */ typedef struct NGAP_WriteReplaceWarningResponse { - NGAP_ProtocolIE_Container_9520P69_t protocolIEs; + NGAP_ProtocolIE_Container_9574P69_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/ngap/NGAP_XnExtTLA-Item.c b/lib/asn1c/ngap/NGAP_XnExtTLA-Item.c index 5c6da9e6b..34e512b2e 100644 --- a/lib/asn1c/ngap/NGAP_XnExtTLA-Item.c +++ b/lib/asn1c/ngap/NGAP_XnExtTLA-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ asn_TYPE_member_t asn_MBR_NGAP_XnExtTLA_Item_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_XnExtTLA_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P288, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P289, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_XnExtTLA-Item.h b/lib/asn1c/ngap/NGAP_XnExtTLA-Item.h index 5a7e9c245..abcde9f80 100644 --- a/lib/asn1c/ngap/NGAP_XnExtTLA-Item.h +++ b/lib/asn1c/ngap/NGAP_XnExtTLA-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_XnExtTLAs.c b/lib/asn1c/ngap/NGAP_XnExtTLAs.c index 8d9899e97..b978ab329 100644 --- a/lib/asn1c/ngap/NGAP_XnExtTLAs.c +++ b/lib/asn1c/ngap/NGAP_XnExtTLAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_XnExtTLAs.h b/lib/asn1c/ngap/NGAP_XnExtTLAs.h index 7b5f656ad..22ad705af 100644 --- a/lib/asn1c/ngap/NGAP_XnExtTLAs.h +++ b/lib/asn1c/ngap/NGAP_XnExtTLAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_XnGTP-TLAs.c b/lib/asn1c/ngap/NGAP_XnGTP-TLAs.c index cd6b10108..ccf3d5d11 100644 --- a/lib/asn1c/ngap/NGAP_XnGTP-TLAs.c +++ b/lib/asn1c/ngap/NGAP_XnGTP-TLAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_XnGTP-TLAs.h b/lib/asn1c/ngap/NGAP_XnGTP-TLAs.h index b9aa0b93f..a52aa035f 100644 --- a/lib/asn1c/ngap/NGAP_XnGTP-TLAs.h +++ b/lib/asn1c/ngap/NGAP_XnGTP-TLAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_XnTLAs.c b/lib/asn1c/ngap/NGAP_XnTLAs.c index f6a58284d..bfc16eb3c 100644 --- a/lib/asn1c/ngap/NGAP_XnTLAs.c +++ b/lib/asn1c/ngap/NGAP_XnTLAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_XnTLAs.h b/lib/asn1c/ngap/NGAP_XnTLAs.h index 75d1d4f23..4d7807728 100644 --- a/lib/asn1c/ngap/NGAP_XnTLAs.h +++ b/lib/asn1c/ngap/NGAP_XnTLAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/NGAP_XnTNLConfigurationInfo.c b/lib/asn1c/ngap/NGAP_XnTNLConfigurationInfo.c index 8aa517a0d..86366728b 100644 --- a/lib/asn1c/ngap/NGAP_XnTNLConfigurationInfo.c +++ b/lib/asn1c/ngap/NGAP_XnTNLConfigurationInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ asn_TYPE_member_t asn_MBR_NGAP_XnTNLConfigurationInfo_1[] = { { ATF_POINTER, 1, offsetof(struct NGAP_XnTNLConfigurationInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_NGAP_ProtocolExtensionContainer_9571P289, + &asn_DEF_NGAP_ProtocolExtensionContainer_9625P290, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/ngap/NGAP_XnTNLConfigurationInfo.h b/lib/asn1c/ngap/NGAP_XnTNLConfigurationInfo.h index 012487e0d..acc797fa9 100644 --- a/lib/asn1c/ngap/NGAP_XnTNLConfigurationInfo.h +++ b/lib/asn1c/ngap/NGAP_XnTNLConfigurationInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" - * found in "../support/ngap-r16.4.0/38413-g40.asn" + * found in "../support/ngap-r16.7.0/38413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/ngap/meson.build b/lib/asn1c/ngap/meson.build index d23c2b5d2..7f6aac7e8 100644 --- a/lib/asn1c/ngap/meson.build +++ b/lib/asn1c/ngap/meson.build @@ -1117,6 +1117,16 @@ libasn1c_ngap_sources = files(''' NGAP_WLANName.h NGAP_WUS-Assistance-Information.c NGAP_WUS-Assistance-Information.h + NGAP_ExtendedUEIdentityIndexValue.c + NGAP_ExtendedUEIdentityIndexValue.h + NGAP_MicoAllPLMN.c + NGAP_MicoAllPLMN.h + NGAP_QosFlowFeedbackItem.c + NGAP_QosFlowFeedbackItem.h + NGAP_QosFlowFeedbackList.c + NGAP_QosFlowFeedbackList.h + NGAP_UpdateFeedback.c + NGAP_UpdateFeedback.h '''.split()) libasn1c_ngap_inc = include_directories('.') diff --git a/lib/asn1c/s1ap/S1AP_Additional-GUTI.c b/lib/asn1c/s1ap/S1AP_Additional-GUTI.c index b29ee228a..ae80457ee 100644 --- a/lib/asn1c/s1ap/S1AP_Additional-GUTI.c +++ b/lib/asn1c/s1ap/S1AP_Additional-GUTI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_Additional_GUTI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_Additional_GUTI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P20, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P20, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Additional-GUTI.h b/lib/asn1c/s1ap/S1AP_Additional-GUTI.h index 3c2698732..de2cd8357 100644 --- a/lib/asn1c/s1ap/S1AP_Additional-GUTI.h +++ b/lib/asn1c/s1ap/S1AP_Additional-GUTI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AdditionalCSFallbackIndicator.c b/lib/asn1c/s1ap/S1AP_AdditionalCSFallbackIndicator.c index 5dca408db..068e3fbf0 100644 --- a/lib/asn1c/s1ap/S1AP_AdditionalCSFallbackIndicator.c +++ b/lib/asn1c/s1ap/S1AP_AdditionalCSFallbackIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AdditionalCSFallbackIndicator.h b/lib/asn1c/s1ap/S1AP_AdditionalCSFallbackIndicator.h index 98ce3838c..5925bfe0f 100644 --- a/lib/asn1c/s1ap/S1AP_AdditionalCSFallbackIndicator.h +++ b/lib/asn1c/s1ap/S1AP_AdditionalCSFallbackIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AdditionalRRMPriorityIndex.c b/lib/asn1c/s1ap/S1AP_AdditionalRRMPriorityIndex.c index bc5dfed7f..7bbf414f7 100644 --- a/lib/asn1c/s1ap/S1AP_AdditionalRRMPriorityIndex.c +++ b/lib/asn1c/s1ap/S1AP_AdditionalRRMPriorityIndex.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AdditionalRRMPriorityIndex.h b/lib/asn1c/s1ap/S1AP_AdditionalRRMPriorityIndex.h index c5424cf76..2459ed4b0 100644 --- a/lib/asn1c/s1ap/S1AP_AdditionalRRMPriorityIndex.h +++ b/lib/asn1c/s1ap/S1AP_AdditionalRRMPriorityIndex.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AerialUEsubscriptionInformation.c b/lib/asn1c/s1ap/S1AP_AerialUEsubscriptionInformation.c index 746b43914..dd0990141 100644 --- a/lib/asn1c/s1ap/S1AP_AerialUEsubscriptionInformation.c +++ b/lib/asn1c/s1ap/S1AP_AerialUEsubscriptionInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AerialUEsubscriptionInformation.h b/lib/asn1c/s1ap/S1AP_AerialUEsubscriptionInformation.h index af3bac379..b91835f1a 100644 --- a/lib/asn1c/s1ap/S1AP_AerialUEsubscriptionInformation.h +++ b/lib/asn1c/s1ap/S1AP_AerialUEsubscriptionInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AllocationAndRetentionPriority.c b/lib/asn1c/s1ap/S1AP_AllocationAndRetentionPriority.c index 33b88aa59..d2ecbfecd 100644 --- a/lib/asn1c/s1ap/S1AP_AllocationAndRetentionPriority.c +++ b/lib/asn1c/s1ap/S1AP_AllocationAndRetentionPriority.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_S1AP_AllocationAndRetentionPriority_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_AllocationAndRetentionPriority, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P21, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P21, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_AllocationAndRetentionPriority.h b/lib/asn1c/s1ap/S1AP_AllocationAndRetentionPriority.h index 080218826..2c874b270 100644 --- a/lib/asn1c/s1ap/S1AP_AllocationAndRetentionPriority.h +++ b/lib/asn1c/s1ap/S1AP_AllocationAndRetentionPriority.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AreaScopeOfMDT.c b/lib/asn1c/s1ap/S1AP_AreaScopeOfMDT.c index f70b81022..5694cab3a 100644 --- a/lib/asn1c/s1ap/S1AP_AreaScopeOfMDT.c +++ b/lib/asn1c/s1ap/S1AP_AreaScopeOfMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AreaScopeOfMDT.h b/lib/asn1c/s1ap/S1AP_AreaScopeOfMDT.h index fdc0bc92a..022fd42b6 100644 --- a/lib/asn1c/s1ap/S1AP_AreaScopeOfMDT.h +++ b/lib/asn1c/s1ap/S1AP_AreaScopeOfMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AreaScopeOfQMC.c b/lib/asn1c/s1ap/S1AP_AreaScopeOfQMC.c index 7c08d17d9..bac997a80 100644 --- a/lib/asn1c/s1ap/S1AP_AreaScopeOfQMC.c +++ b/lib/asn1c/s1ap/S1AP_AreaScopeOfQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AreaScopeOfQMC.h b/lib/asn1c/s1ap/S1AP_AreaScopeOfQMC.h index 84000231b..1a40cac35 100644 --- a/lib/asn1c/s1ap/S1AP_AreaScopeOfQMC.h +++ b/lib/asn1c/s1ap/S1AP_AreaScopeOfQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AssistanceDataForCECapableUEs.c b/lib/asn1c/s1ap/S1AP_AssistanceDataForCECapableUEs.c index 53fee4cc6..017d47f05 100644 --- a/lib/asn1c/s1ap/S1AP_AssistanceDataForCECapableUEs.c +++ b/lib/asn1c/s1ap/S1AP_AssistanceDataForCECapableUEs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_AssistanceDataForCECapableUEs_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_AssistanceDataForCECapableUEs, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P22, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P22, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_AssistanceDataForCECapableUEs.h b/lib/asn1c/s1ap/S1AP_AssistanceDataForCECapableUEs.h index 14f4587c5..298fea506 100644 --- a/lib/asn1c/s1ap/S1AP_AssistanceDataForCECapableUEs.h +++ b/lib/asn1c/s1ap/S1AP_AssistanceDataForCECapableUEs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AssistanceDataForPaging.c b/lib/asn1c/s1ap/S1AP_AssistanceDataForPaging.c index 8740c33d6..8f3016222 100644 --- a/lib/asn1c/s1ap/S1AP_AssistanceDataForPaging.c +++ b/lib/asn1c/s1ap/S1AP_AssistanceDataForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,7 +66,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_AssistanceDataForPaging_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_AssistanceDataForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P23, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P23, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_AssistanceDataForPaging.h b/lib/asn1c/s1ap/S1AP_AssistanceDataForPaging.h index 830e8c235..82b14b6db 100644 --- a/lib/asn1c/s1ap/S1AP_AssistanceDataForPaging.h +++ b/lib/asn1c/s1ap/S1AP_AssistanceDataForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_AssistanceDataForRecommendedCells.c b/lib/asn1c/s1ap/S1AP_AssistanceDataForRecommendedCells.c index 376fee003..fca1f7897 100644 --- a/lib/asn1c/s1ap/S1AP_AssistanceDataForRecommendedCells.c +++ b/lib/asn1c/s1ap/S1AP_AssistanceDataForRecommendedCells.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_AssistanceDataForRecommendedCells_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_AssistanceDataForRecommendedCells, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P24, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P24, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_AssistanceDataForRecommendedCells.h b/lib/asn1c/s1ap/S1AP_AssistanceDataForRecommendedCells.h index e3b3e0df5..4c25e0621 100644 --- a/lib/asn1c/s1ap/S1AP_AssistanceDataForRecommendedCells.h +++ b/lib/asn1c/s1ap/S1AP_AssistanceDataForRecommendedCells.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BPLMNs.c b/lib/asn1c/s1ap/S1AP_BPLMNs.c index 28e11bc57..956b16404 100644 --- a/lib/asn1c/s1ap/S1AP_BPLMNs.c +++ b/lib/asn1c/s1ap/S1AP_BPLMNs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BPLMNs.h b/lib/asn1c/s1ap/S1AP_BPLMNs.h index 67ae4d441..5cab54c51 100644 --- a/lib/asn1c/s1ap/S1AP_BPLMNs.h +++ b/lib/asn1c/s1ap/S1AP_BPLMNs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BearerType.c b/lib/asn1c/s1ap/S1AP_BearerType.c index c1e553161..aee832712 100644 --- a/lib/asn1c/s1ap/S1AP_BearerType.c +++ b/lib/asn1c/s1ap/S1AP_BearerType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BearerType.h b/lib/asn1c/s1ap/S1AP_BearerType.h index 39f56d749..a8623c8ce 100644 --- a/lib/asn1c/s1ap/S1AP_BearerType.h +++ b/lib/asn1c/s1ap/S1AP_BearerType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransfer-Item.c b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransfer-Item.c index 5ac3c55d5..4c41e3f8e 100644 --- a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransfer-Item.c +++ b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransfer-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_Bearers_SubjectToEarlyStatusTransfer_Item_ { ATF_POINTER, 1, offsetof(struct S1AP_Bearers_SubjectToEarlyStatusTransfer_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P26, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P26, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransfer-Item.h b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransfer-Item.h index 50cb4acfd..b1e332a43 100644 --- a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransfer-Item.h +++ b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransfer-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransferList.c b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransferList.c index 2fac8ea5e..74f8362d1 100644 --- a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransferList.c +++ b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransferList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ asn_TYPE_member_t asn_MBR_S1AP_Bearers_SubjectToEarlyStatusTransferList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransferList.h b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransferList.h index 7ae47ef98..74c88455f 100644 --- a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransferList.h +++ b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToEarlyStatusTransferList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransfer-Item.c b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransfer-Item.c index 05bda2441..072a18a15 100644 --- a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransfer-Item.c +++ b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransfer-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_Bearers_SubjectToStatusTransfer_Item_1[] = { ATF_POINTER, 1, offsetof(struct S1AP_Bearers_SubjectToStatusTransfer_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P25, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P25, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransfer-Item.h b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransfer-Item.h index 80c76598e..5945ae546 100644 --- a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransfer-Item.h +++ b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransfer-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransferList.c b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransferList.c index e0359eaaa..c0ebfdd91 100644 --- a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransferList.c +++ b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransferList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ asn_TYPE_member_t asn_MBR_S1AP_Bearers_SubjectToStatusTransferList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransferList.h b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransferList.h index 18fc23d83..31ae05f30 100644 --- a/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransferList.h +++ b/lib/asn1c/s1ap/S1AP_Bearers-SubjectToStatusTransferList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BitRate.c b/lib/asn1c/s1ap/S1AP_BitRate.c index 12cd78b20..fb45ef8a3 100644 --- a/lib/asn1c/s1ap/S1AP_BitRate.c +++ b/lib/asn1c/s1ap/S1AP_BitRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BitRate.h b/lib/asn1c/s1ap/S1AP_BitRate.h index d32e2c2a3..613926b8e 100644 --- a/lib/asn1c/s1ap/S1AP_BitRate.h +++ b/lib/asn1c/s1ap/S1AP_BitRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BluetoothMeasConfig.c b/lib/asn1c/s1ap/S1AP_BluetoothMeasConfig.c index eb2a69003..f366790c9 100644 --- a/lib/asn1c/s1ap/S1AP_BluetoothMeasConfig.c +++ b/lib/asn1c/s1ap/S1AP_BluetoothMeasConfig.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BluetoothMeasConfig.h b/lib/asn1c/s1ap/S1AP_BluetoothMeasConfig.h index 6418f2740..821fd34f5 100644 --- a/lib/asn1c/s1ap/S1AP_BluetoothMeasConfig.h +++ b/lib/asn1c/s1ap/S1AP_BluetoothMeasConfig.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BluetoothMeasConfigNameList.c b/lib/asn1c/s1ap/S1AP_BluetoothMeasConfigNameList.c index 84fd48642..98b14589c 100644 --- a/lib/asn1c/s1ap/S1AP_BluetoothMeasConfigNameList.c +++ b/lib/asn1c/s1ap/S1AP_BluetoothMeasConfigNameList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BluetoothMeasConfigNameList.h b/lib/asn1c/s1ap/S1AP_BluetoothMeasConfigNameList.h index b9fc608b3..1bcc94e65 100644 --- a/lib/asn1c/s1ap/S1AP_BluetoothMeasConfigNameList.h +++ b/lib/asn1c/s1ap/S1AP_BluetoothMeasConfigNameList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BluetoothMeasurementConfiguration.c b/lib/asn1c/s1ap/S1AP_BluetoothMeasurementConfiguration.c index d51460f7a..22683a3d6 100644 --- a/lib/asn1c/s1ap/S1AP_BluetoothMeasurementConfiguration.c +++ b/lib/asn1c/s1ap/S1AP_BluetoothMeasurementConfiguration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -120,7 +120,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_BluetoothMeasurementConfiguration_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_BluetoothMeasurementConfiguration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P27, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P27, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_BluetoothMeasurementConfiguration.h b/lib/asn1c/s1ap/S1AP_BluetoothMeasurementConfiguration.h index 7eb99aeff..daab27d2d 100644 --- a/lib/asn1c/s1ap/S1AP_BluetoothMeasurementConfiguration.h +++ b/lib/asn1c/s1ap/S1AP_BluetoothMeasurementConfiguration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BluetoothName.c b/lib/asn1c/s1ap/S1AP_BluetoothName.c index d8cc2032e..1ea13d569 100644 --- a/lib/asn1c/s1ap/S1AP_BluetoothName.c +++ b/lib/asn1c/s1ap/S1AP_BluetoothName.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BluetoothName.h b/lib/asn1c/s1ap/S1AP_BluetoothName.h index 1b8bb8601..96039e95d 100644 --- a/lib/asn1c/s1ap/S1AP_BluetoothName.h +++ b/lib/asn1c/s1ap/S1AP_BluetoothName.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BroadcastCancelledAreaList.c b/lib/asn1c/s1ap/S1AP_BroadcastCancelledAreaList.c index 15fbae767..49c07bc26 100644 --- a/lib/asn1c/s1ap/S1AP_BroadcastCancelledAreaList.c +++ b/lib/asn1c/s1ap/S1AP_BroadcastCancelledAreaList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BroadcastCancelledAreaList.h b/lib/asn1c/s1ap/S1AP_BroadcastCancelledAreaList.h index 3063e398a..805ea9593 100644 --- a/lib/asn1c/s1ap/S1AP_BroadcastCancelledAreaList.h +++ b/lib/asn1c/s1ap/S1AP_BroadcastCancelledAreaList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BroadcastCompletedAreaList.c b/lib/asn1c/s1ap/S1AP_BroadcastCompletedAreaList.c index 8a4bab2aa..4c0caa89a 100644 --- a/lib/asn1c/s1ap/S1AP_BroadcastCompletedAreaList.c +++ b/lib/asn1c/s1ap/S1AP_BroadcastCompletedAreaList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_BroadcastCompletedAreaList.h b/lib/asn1c/s1ap/S1AP_BroadcastCompletedAreaList.h index 423843527..2073e53fb 100644 --- a/lib/asn1c/s1ap/S1AP_BroadcastCompletedAreaList.h +++ b/lib/asn1c/s1ap/S1AP_BroadcastCompletedAreaList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CE-ModeBRestricted.c b/lib/asn1c/s1ap/S1AP_CE-ModeBRestricted.c index 98e045cdb..21908dfb7 100644 --- a/lib/asn1c/s1ap/S1AP_CE-ModeBRestricted.c +++ b/lib/asn1c/s1ap/S1AP_CE-ModeBRestricted.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CE-ModeBRestricted.h b/lib/asn1c/s1ap/S1AP_CE-ModeBRestricted.h index 1b8ca5443..e4c06a470 100644 --- a/lib/asn1c/s1ap/S1AP_CE-ModeBRestricted.h +++ b/lib/asn1c/s1ap/S1AP_CE-ModeBRestricted.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CE-mode-B-SupportIndicator.c b/lib/asn1c/s1ap/S1AP_CE-mode-B-SupportIndicator.c index 17e1b9ac0..5104b259d 100644 --- a/lib/asn1c/s1ap/S1AP_CE-mode-B-SupportIndicator.c +++ b/lib/asn1c/s1ap/S1AP_CE-mode-B-SupportIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CE-mode-B-SupportIndicator.h b/lib/asn1c/s1ap/S1AP_CE-mode-B-SupportIndicator.h index 11a348edd..e512a2ad7 100644 --- a/lib/asn1c/s1ap/S1AP_CE-mode-B-SupportIndicator.h +++ b/lib/asn1c/s1ap/S1AP_CE-mode-B-SupportIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CELevel.c b/lib/asn1c/s1ap/S1AP_CELevel.c index 41406e8f4..28dcbd2ce 100644 --- a/lib/asn1c/s1ap/S1AP_CELevel.c +++ b/lib/asn1c/s1ap/S1AP_CELevel.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CELevel.h b/lib/asn1c/s1ap/S1AP_CELevel.h index bdcfd9fa7..a2daa939e 100644 --- a/lib/asn1c/s1ap/S1AP_CELevel.h +++ b/lib/asn1c/s1ap/S1AP_CELevel.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CGI.c b/lib/asn1c/s1ap/S1AP_CGI.c index 3ea7bedd6..9c1a61291 100644 --- a/lib/asn1c/s1ap/S1AP_CGI.c +++ b/lib/asn1c/s1ap/S1AP_CGI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CGI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CGI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P37, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P37, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CGI.h b/lib/asn1c/s1ap/S1AP_CGI.h index 2a8dbbd46..26be1e848 100644 --- a/lib/asn1c/s1ap/S1AP_CGI.h +++ b/lib/asn1c/s1ap/S1AP_CGI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CI.c b/lib/asn1c/s1ap/S1AP_CI.c index 08086d00b..b2291bfcc 100644 --- a/lib/asn1c/s1ap/S1AP_CI.c +++ b/lib/asn1c/s1ap/S1AP_CI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CI.h b/lib/asn1c/s1ap/S1AP_CI.h index 439e97896..e218832c7 100644 --- a/lib/asn1c/s1ap/S1AP_CI.h +++ b/lib/asn1c/s1ap/S1AP_CI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CNDomain.c b/lib/asn1c/s1ap/S1AP_CNDomain.c index 51900323e..daaa8205b 100644 --- a/lib/asn1c/s1ap/S1AP_CNDomain.c +++ b/lib/asn1c/s1ap/S1AP_CNDomain.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CNDomain.h b/lib/asn1c/s1ap/S1AP_CNDomain.h index 03c2e81df..919951b53 100644 --- a/lib/asn1c/s1ap/S1AP_CNDomain.h +++ b/lib/asn1c/s1ap/S1AP_CNDomain.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CNType.c b/lib/asn1c/s1ap/S1AP_CNType.c index d310a5699..274475d5b 100644 --- a/lib/asn1c/s1ap/S1AP_CNType.c +++ b/lib/asn1c/s1ap/S1AP_CNType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CNType.h b/lib/asn1c/s1ap/S1AP_CNType.h index d271496da..e025d27b8 100644 --- a/lib/asn1c/s1ap/S1AP_CNType.h +++ b/lib/asn1c/s1ap/S1AP_CNType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CNTypeRestrictions-Item.c b/lib/asn1c/s1ap/S1AP_CNTypeRestrictions-Item.c index ea539ec1f..28a9eabf9 100644 --- a/lib/asn1c/s1ap/S1AP_CNTypeRestrictions-Item.c +++ b/lib/asn1c/s1ap/S1AP_CNTypeRestrictions-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CNTypeRestrictions_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CNTypeRestrictions_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P38, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P38, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CNTypeRestrictions-Item.h b/lib/asn1c/s1ap/S1AP_CNTypeRestrictions-Item.h index ebed44abb..a3544a675 100644 --- a/lib/asn1c/s1ap/S1AP_CNTypeRestrictions-Item.h +++ b/lib/asn1c/s1ap/S1AP_CNTypeRestrictions-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CNTypeRestrictions.c b/lib/asn1c/s1ap/S1AP_CNTypeRestrictions.c index 942a2cfe4..eee2eb390 100644 --- a/lib/asn1c/s1ap/S1AP_CNTypeRestrictions.c +++ b/lib/asn1c/s1ap/S1AP_CNTypeRestrictions.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CNTypeRestrictions.h b/lib/asn1c/s1ap/S1AP_CNTypeRestrictions.h index be8118491..9d9bb9053 100644 --- a/lib/asn1c/s1ap/S1AP_CNTypeRestrictions.h +++ b/lib/asn1c/s1ap/S1AP_CNTypeRestrictions.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_COUNTValueExtended.c b/lib/asn1c/s1ap/S1AP_COUNTValueExtended.c index 36b300e83..b483257fc 100644 --- a/lib/asn1c/s1ap/S1AP_COUNTValueExtended.c +++ b/lib/asn1c/s1ap/S1AP_COUNTValueExtended.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_COUNTValueExtended_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_COUNTValueExtended, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P43, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P43, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_COUNTValueExtended.h b/lib/asn1c/s1ap/S1AP_COUNTValueExtended.h index 906d04b86..f2e869e8e 100644 --- a/lib/asn1c/s1ap/S1AP_COUNTValueExtended.h +++ b/lib/asn1c/s1ap/S1AP_COUNTValueExtended.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_COUNTvalue.c b/lib/asn1c/s1ap/S1AP_COUNTvalue.c index cc4ee2232..4c22154f0 100644 --- a/lib/asn1c/s1ap/S1AP_COUNTvalue.c +++ b/lib/asn1c/s1ap/S1AP_COUNTvalue.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_COUNTvalue_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_COUNTvalue, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P42, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P42, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_COUNTvalue.h b/lib/asn1c/s1ap/S1AP_COUNTvalue.h index ef52cb7b8..d7261cdba 100644 --- a/lib/asn1c/s1ap/S1AP_COUNTvalue.h +++ b/lib/asn1c/s1ap/S1AP_COUNTvalue.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_COUNTvaluePDCP-SNlength18.c b/lib/asn1c/s1ap/S1AP_COUNTvaluePDCP-SNlength18.c index 15368708a..3f9c76aad 100644 --- a/lib/asn1c/s1ap/S1AP_COUNTvaluePDCP-SNlength18.c +++ b/lib/asn1c/s1ap/S1AP_COUNTvaluePDCP-SNlength18.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_COUNTvaluePDCP_SNlength18_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_COUNTvaluePDCP_SNlength18, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P44, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P44, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_COUNTvaluePDCP-SNlength18.h b/lib/asn1c/s1ap/S1AP_COUNTvaluePDCP-SNlength18.h index 2ab846800..632afda42 100644 --- a/lib/asn1c/s1ap/S1AP_COUNTvaluePDCP-SNlength18.h +++ b/lib/asn1c/s1ap/S1AP_COUNTvaluePDCP-SNlength18.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSFallbackIndicator.c b/lib/asn1c/s1ap/S1AP_CSFallbackIndicator.c index 5d1402447..023241e7e 100644 --- a/lib/asn1c/s1ap/S1AP_CSFallbackIndicator.c +++ b/lib/asn1c/s1ap/S1AP_CSFallbackIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSFallbackIndicator.h b/lib/asn1c/s1ap/S1AP_CSFallbackIndicator.h index cdb704a48..9e9720301 100644 --- a/lib/asn1c/s1ap/S1AP_CSFallbackIndicator.h +++ b/lib/asn1c/s1ap/S1AP_CSFallbackIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSG-Id.c b/lib/asn1c/s1ap/S1AP_CSG-Id.c index 61abea326..7441c3c7d 100644 --- a/lib/asn1c/s1ap/S1AP_CSG-Id.c +++ b/lib/asn1c/s1ap/S1AP_CSG-Id.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSG-Id.h b/lib/asn1c/s1ap/S1AP_CSG-Id.h index d5f33af4d..1e5008872 100644 --- a/lib/asn1c/s1ap/S1AP_CSG-Id.h +++ b/lib/asn1c/s1ap/S1AP_CSG-Id.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSG-IdList-Item.c b/lib/asn1c/s1ap/S1AP_CSG-IdList-Item.c index 7054fedbe..2be484c6c 100644 --- a/lib/asn1c/s1ap/S1AP_CSG-IdList-Item.c +++ b/lib/asn1c/s1ap/S1AP_CSG-IdList-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CSG_IdList_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CSG_IdList_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P41, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P41, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CSG-IdList-Item.h b/lib/asn1c/s1ap/S1AP_CSG-IdList-Item.h index 3e6b77e4a..e520bd7b8 100644 --- a/lib/asn1c/s1ap/S1AP_CSG-IdList-Item.h +++ b/lib/asn1c/s1ap/S1AP_CSG-IdList-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSG-IdList.c b/lib/asn1c/s1ap/S1AP_CSG-IdList.c index d65444505..dab959828 100644 --- a/lib/asn1c/s1ap/S1AP_CSG-IdList.c +++ b/lib/asn1c/s1ap/S1AP_CSG-IdList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSG-IdList.h b/lib/asn1c/s1ap/S1AP_CSG-IdList.h index fef5c7831..3d7fdb107 100644 --- a/lib/asn1c/s1ap/S1AP_CSG-IdList.h +++ b/lib/asn1c/s1ap/S1AP_CSG-IdList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSGMembershipInfo.c b/lib/asn1c/s1ap/S1AP_CSGMembershipInfo.c index 849c04a63..5f74757a5 100644 --- a/lib/asn1c/s1ap/S1AP_CSGMembershipInfo.c +++ b/lib/asn1c/s1ap/S1AP_CSGMembershipInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_CSGMembershipInfo_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CSGMembershipInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P16, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P16, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CSGMembershipInfo.h b/lib/asn1c/s1ap/S1AP_CSGMembershipInfo.h index 8bddc729a..b10c0a695 100644 --- a/lib/asn1c/s1ap/S1AP_CSGMembershipInfo.h +++ b/lib/asn1c/s1ap/S1AP_CSGMembershipInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSGMembershipStatus.c b/lib/asn1c/s1ap/S1AP_CSGMembershipStatus.c index f460bcd0a..99837468b 100644 --- a/lib/asn1c/s1ap/S1AP_CSGMembershipStatus.c +++ b/lib/asn1c/s1ap/S1AP_CSGMembershipStatus.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CSGMembershipStatus.h b/lib/asn1c/s1ap/S1AP_CSGMembershipStatus.h index 4ce5d529c..770ac8768 100644 --- a/lib/asn1c/s1ap/S1AP_CSGMembershipStatus.h +++ b/lib/asn1c/s1ap/S1AP_CSGMembershipStatus.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CancelledCellinEAI-Item.c b/lib/asn1c/s1ap/S1AP_CancelledCellinEAI-Item.c index e1ff7b895..8e2f7f16e 100644 --- a/lib/asn1c/s1ap/S1AP_CancelledCellinEAI-Item.c +++ b/lib/asn1c/s1ap/S1AP_CancelledCellinEAI-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CancelledCellinEAI_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CancelledCellinEAI_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P28, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P28, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CancelledCellinEAI-Item.h b/lib/asn1c/s1ap/S1AP_CancelledCellinEAI-Item.h index 22cd7e59c..6cb631ade 100644 --- a/lib/asn1c/s1ap/S1AP_CancelledCellinEAI-Item.h +++ b/lib/asn1c/s1ap/S1AP_CancelledCellinEAI-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CancelledCellinEAI.c b/lib/asn1c/s1ap/S1AP_CancelledCellinEAI.c index f99a48ed4..e2056d3ae 100644 --- a/lib/asn1c/s1ap/S1AP_CancelledCellinEAI.c +++ b/lib/asn1c/s1ap/S1AP_CancelledCellinEAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CancelledCellinEAI.h b/lib/asn1c/s1ap/S1AP_CancelledCellinEAI.h index 1fe88d533..a3585a791 100644 --- a/lib/asn1c/s1ap/S1AP_CancelledCellinEAI.h +++ b/lib/asn1c/s1ap/S1AP_CancelledCellinEAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CancelledCellinTAI-Item.c b/lib/asn1c/s1ap/S1AP_CancelledCellinTAI-Item.c index b4ba6f791..84458277c 100644 --- a/lib/asn1c/s1ap/S1AP_CancelledCellinTAI-Item.c +++ b/lib/asn1c/s1ap/S1AP_CancelledCellinTAI-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CancelledCellinTAI_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CancelledCellinTAI_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P29, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P29, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CancelledCellinTAI-Item.h b/lib/asn1c/s1ap/S1AP_CancelledCellinTAI-Item.h index 8783676c4..f2542662f 100644 --- a/lib/asn1c/s1ap/S1AP_CancelledCellinTAI-Item.h +++ b/lib/asn1c/s1ap/S1AP_CancelledCellinTAI-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CancelledCellinTAI.c b/lib/asn1c/s1ap/S1AP_CancelledCellinTAI.c index b7e407206..324cbd5ff 100644 --- a/lib/asn1c/s1ap/S1AP_CancelledCellinTAI.c +++ b/lib/asn1c/s1ap/S1AP_CancelledCellinTAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CancelledCellinTAI.h b/lib/asn1c/s1ap/S1AP_CancelledCellinTAI.h index d53ac7117..4cb18e88e 100644 --- a/lib/asn1c/s1ap/S1AP_CancelledCellinTAI.h +++ b/lib/asn1c/s1ap/S1AP_CancelledCellinTAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cause.c b/lib/asn1c/s1ap/S1AP_Cause.c index 2c7d33b2c..e94daca57 100644 --- a/lib/asn1c/s1ap/S1AP_Cause.c +++ b/lib/asn1c/s1ap/S1AP_Cause.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cause.h b/lib/asn1c/s1ap/S1AP_Cause.h index 40f477fc3..e8aa65818 100644 --- a/lib/asn1c/s1ap/S1AP_Cause.h +++ b/lib/asn1c/s1ap/S1AP_Cause.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CauseMisc.c b/lib/asn1c/s1ap/S1AP_CauseMisc.c index b7384382c..98655cef7 100644 --- a/lib/asn1c/s1ap/S1AP_CauseMisc.c +++ b/lib/asn1c/s1ap/S1AP_CauseMisc.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CauseMisc.h b/lib/asn1c/s1ap/S1AP_CauseMisc.h index 7898dd6ba..76060cb45 100644 --- a/lib/asn1c/s1ap/S1AP_CauseMisc.h +++ b/lib/asn1c/s1ap/S1AP_CauseMisc.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CauseNas.c b/lib/asn1c/s1ap/S1AP_CauseNas.c index 043f5e5b2..7e7654e23 100644 --- a/lib/asn1c/s1ap/S1AP_CauseNas.c +++ b/lib/asn1c/s1ap/S1AP_CauseNas.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CauseNas.h b/lib/asn1c/s1ap/S1AP_CauseNas.h index 0e3976c93..25ac5f0f6 100644 --- a/lib/asn1c/s1ap/S1AP_CauseNas.h +++ b/lib/asn1c/s1ap/S1AP_CauseNas.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CauseProtocol.c b/lib/asn1c/s1ap/S1AP_CauseProtocol.c index de16c0736..8197bd3b4 100644 --- a/lib/asn1c/s1ap/S1AP_CauseProtocol.c +++ b/lib/asn1c/s1ap/S1AP_CauseProtocol.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CauseProtocol.h b/lib/asn1c/s1ap/S1AP_CauseProtocol.h index 3fa09f624..785052ac7 100644 --- a/lib/asn1c/s1ap/S1AP_CauseProtocol.h +++ b/lib/asn1c/s1ap/S1AP_CauseProtocol.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CauseRadioNetwork.c b/lib/asn1c/s1ap/S1AP_CauseRadioNetwork.c index 91c4c3be0..7719bcea5 100644 --- a/lib/asn1c/s1ap/S1AP_CauseRadioNetwork.c +++ b/lib/asn1c/s1ap/S1AP_CauseRadioNetwork.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -59,7 +59,8 @@ static const asn_INTEGER_enum_map_t asn_MAP_S1AP_CauseRadioNetwork_value2enum_1[ { 37, 23, "not-supported-QCI-value" }, { 38, 14, "invalid-CSG-Id" }, { 39, 26, "release-due-to-pre-emption" }, - { 40, 27, "n26-interface-not-available" } + { 40, 27, "n26-interface-not-available" }, + { 41, 28, "insufficient-ue-capabilities" } /* This list is extensible */ }; static const unsigned int asn_MAP_S1AP_CauseRadioNetwork_enum2value_1[] = { @@ -71,6 +72,7 @@ static const unsigned int asn_MAP_S1AP_CauseRadioNetwork_enum2value_1[] = { 16, /* handover-desirable-for-radio-reason(16) */ 6, /* ho-failure-in-target-EPC-eNB-or-target-system(6) */ 7, /* ho-target-not-allowed(7) */ + 41, /* insufficient-ue-capabilities(41) */ 29, /* interaction-with-other-procedure(29) */ 28, /* interrat-redirection(28) */ 38, /* invalid-CSG-Id(38) */ @@ -109,7 +111,7 @@ static const unsigned int asn_MAP_S1AP_CauseRadioNetwork_enum2value_1[] = { const asn_INTEGER_specifics_t asn_SPC_S1AP_CauseRadioNetwork_specs_1 = { asn_MAP_S1AP_CauseRadioNetwork_value2enum_1, /* "tag" => N; sorted by tag */ asn_MAP_S1AP_CauseRadioNetwork_enum2value_1, /* N => "tag"; sorted by N */ - 41, /* Number of elements in the maps */ + 42, /* Number of elements in the maps */ 37, /* Extensions before this member */ 1, /* Strict enumeration */ 0, /* Native long size */ diff --git a/lib/asn1c/s1ap/S1AP_CauseRadioNetwork.h b/lib/asn1c/s1ap/S1AP_CauseRadioNetwork.h index ab16d9b76..e5e00a4dc 100644 --- a/lib/asn1c/s1ap/S1AP_CauseRadioNetwork.h +++ b/lib/asn1c/s1ap/S1AP_CauseRadioNetwork.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,8 @@ typedef enum S1AP_CauseRadioNetwork { S1AP_CauseRadioNetwork_not_supported_QCI_value = 37, S1AP_CauseRadioNetwork_invalid_CSG_Id = 38, S1AP_CauseRadioNetwork_release_due_to_pre_emption = 39, - S1AP_CauseRadioNetwork_n26_interface_not_available = 40 + S1AP_CauseRadioNetwork_n26_interface_not_available = 40, + S1AP_CauseRadioNetwork_insufficient_ue_capabilities = 41 } e_S1AP_CauseRadioNetwork; /* S1AP_CauseRadioNetwork */ diff --git a/lib/asn1c/s1ap/S1AP_CauseTransport.c b/lib/asn1c/s1ap/S1AP_CauseTransport.c index 1c0308ab5..8f4b499f1 100644 --- a/lib/asn1c/s1ap/S1AP_CauseTransport.c +++ b/lib/asn1c/s1ap/S1AP_CauseTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CauseTransport.h b/lib/asn1c/s1ap/S1AP_CauseTransport.h index 8c663a104..7325f06a5 100644 --- a/lib/asn1c/s1ap/S1AP_CauseTransport.h +++ b/lib/asn1c/s1ap/S1AP_CauseTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000HORequiredIndication.c b/lib/asn1c/s1ap/S1AP_Cdma2000HORequiredIndication.c index 3848e0da5..61431ba47 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000HORequiredIndication.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000HORequiredIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000HORequiredIndication.h b/lib/asn1c/s1ap/S1AP_Cdma2000HORequiredIndication.h index d3c4b317c..848f7c769 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000HORequiredIndication.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000HORequiredIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000HOStatus.c b/lib/asn1c/s1ap/S1AP_Cdma2000HOStatus.c index e71253e39..881b24797 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000HOStatus.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000HOStatus.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000HOStatus.h b/lib/asn1c/s1ap/S1AP_Cdma2000HOStatus.h index 24bb27cf2..d45e99d41 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000HOStatus.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000HOStatus.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXMEID.c b/lib/asn1c/s1ap/S1AP_Cdma2000OneXMEID.c index ba191c720..f297c6a54 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXMEID.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXMEID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXMEID.h b/lib/asn1c/s1ap/S1AP_Cdma2000OneXMEID.h index f4b474db5..4b0b5bd66 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXMEID.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXMEID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXMSI.c b/lib/asn1c/s1ap/S1AP_Cdma2000OneXMSI.c index 96a99353c..a0862838b 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXMSI.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXMSI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXMSI.h b/lib/asn1c/s1ap/S1AP_Cdma2000OneXMSI.h index ec0214d86..73e108ad8 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXMSI.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXMSI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXPilot.c b/lib/asn1c/s1ap/S1AP_Cdma2000OneXPilot.c index e83d3dad3..d959cf201 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXPilot.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXPilot.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXPilot.h b/lib/asn1c/s1ap/S1AP_Cdma2000OneXPilot.h index 372e03c87..274966b9d 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXPilot.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXPilot.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXRAND.c b/lib/asn1c/s1ap/S1AP_Cdma2000OneXRAND.c index 8afa6ee50..4deef20a9 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXRAND.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXRAND.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXRAND.h b/lib/asn1c/s1ap/S1AP_Cdma2000OneXRAND.h index f271c0dcb..8ab136e21 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXRAND.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXRAND.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXSRVCCInfo.c b/lib/asn1c/s1ap/S1AP_Cdma2000OneXSRVCCInfo.c index 88d041af0..d4fb2aab4 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXSRVCCInfo.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXSRVCCInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_Cdma2000OneXSRVCCInfo_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_Cdma2000OneXSRVCCInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P35, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P35, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000OneXSRVCCInfo.h b/lib/asn1c/s1ap/S1AP_Cdma2000OneXSRVCCInfo.h index 10b382b1c..7333ba1d0 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000OneXSRVCCInfo.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000OneXSRVCCInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000PDU.c b/lib/asn1c/s1ap/S1AP_Cdma2000PDU.c index 620cd5a2d..5c98ca808 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000PDU.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000PDU.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000PDU.h b/lib/asn1c/s1ap/S1AP_Cdma2000PDU.h index 002f8546f..e3bd01255 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000PDU.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000PDU.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000RATType.c b/lib/asn1c/s1ap/S1AP_Cdma2000RATType.c index c2b728355..042ce6640 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000RATType.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000RATType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000RATType.h b/lib/asn1c/s1ap/S1AP_Cdma2000RATType.h index 8c8a9a310..4e9fbf046 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000RATType.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000RATType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000SectorID.c b/lib/asn1c/s1ap/S1AP_Cdma2000SectorID.c index 8a758a0bc..21cf7274d 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000SectorID.c +++ b/lib/asn1c/s1ap/S1AP_Cdma2000SectorID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cdma2000SectorID.h b/lib/asn1c/s1ap/S1AP_Cdma2000SectorID.h index 7a2034536..1f991d242 100644 --- a/lib/asn1c/s1ap/S1AP_Cdma2000SectorID.h +++ b/lib/asn1c/s1ap/S1AP_Cdma2000SectorID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cell-Size.c b/lib/asn1c/s1ap/S1AP_Cell-Size.c index 308a00df4..db59bd232 100644 --- a/lib/asn1c/s1ap/S1AP_Cell-Size.c +++ b/lib/asn1c/s1ap/S1AP_Cell-Size.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Cell-Size.h b/lib/asn1c/s1ap/S1AP_Cell-Size.h index b774ec003..4309b4ab3 100644 --- a/lib/asn1c/s1ap/S1AP_Cell-Size.h +++ b/lib/asn1c/s1ap/S1AP_Cell-Size.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellAccessMode.c b/lib/asn1c/s1ap/S1AP_CellAccessMode.c index 692e110be..4da794c4b 100644 --- a/lib/asn1c/s1ap/S1AP_CellAccessMode.c +++ b/lib/asn1c/s1ap/S1AP_CellAccessMode.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellAccessMode.h b/lib/asn1c/s1ap/S1AP_CellAccessMode.h index d8e405556..884ab6b15 100644 --- a/lib/asn1c/s1ap/S1AP_CellAccessMode.h +++ b/lib/asn1c/s1ap/S1AP_CellAccessMode.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellBasedMDT.c b/lib/asn1c/s1ap/S1AP_CellBasedMDT.c index ec3634c39..c523fd703 100644 --- a/lib/asn1c/s1ap/S1AP_CellBasedMDT.c +++ b/lib/asn1c/s1ap/S1AP_CellBasedMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CellBasedMDT_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CellBasedMDT, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P33, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P33, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CellBasedMDT.h b/lib/asn1c/s1ap/S1AP_CellBasedMDT.h index b80d0c7d3..fcbf07bd1 100644 --- a/lib/asn1c/s1ap/S1AP_CellBasedMDT.h +++ b/lib/asn1c/s1ap/S1AP_CellBasedMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellBasedQMC.c b/lib/asn1c/s1ap/S1AP_CellBasedQMC.c index 60ff649dd..ab4e429d8 100644 --- a/lib/asn1c/s1ap/S1AP_CellBasedQMC.c +++ b/lib/asn1c/s1ap/S1AP_CellBasedQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CellBasedQMC_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CellBasedQMC, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P34, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P34, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CellBasedQMC.h b/lib/asn1c/s1ap/S1AP_CellBasedQMC.h index 2aad7f1ef..f86435040 100644 --- a/lib/asn1c/s1ap/S1AP_CellBasedQMC.h +++ b/lib/asn1c/s1ap/S1AP_CellBasedQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellID-Broadcast-Item.c b/lib/asn1c/s1ap/S1AP_CellID-Broadcast-Item.c index 39db7ff3e..b4d7cf380 100644 --- a/lib/asn1c/s1ap/S1AP_CellID-Broadcast-Item.c +++ b/lib/asn1c/s1ap/S1AP_CellID-Broadcast-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CellID_Broadcast_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CellID_Broadcast_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P31, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P31, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CellID-Broadcast-Item.h b/lib/asn1c/s1ap/S1AP_CellID-Broadcast-Item.h index e6ec83648..406741d2d 100644 --- a/lib/asn1c/s1ap/S1AP_CellID-Broadcast-Item.h +++ b/lib/asn1c/s1ap/S1AP_CellID-Broadcast-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellID-Broadcast.c b/lib/asn1c/s1ap/S1AP_CellID-Broadcast.c index cea0096d0..69cdb7b15 100644 --- a/lib/asn1c/s1ap/S1AP_CellID-Broadcast.c +++ b/lib/asn1c/s1ap/S1AP_CellID-Broadcast.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellID-Broadcast.h b/lib/asn1c/s1ap/S1AP_CellID-Broadcast.h index 81352ef6e..38263bd2f 100644 --- a/lib/asn1c/s1ap/S1AP_CellID-Broadcast.h +++ b/lib/asn1c/s1ap/S1AP_CellID-Broadcast.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellID-Cancelled-Item.c b/lib/asn1c/s1ap/S1AP_CellID-Cancelled-Item.c index d6abdef41..562ba0007 100644 --- a/lib/asn1c/s1ap/S1AP_CellID-Cancelled-Item.c +++ b/lib/asn1c/s1ap/S1AP_CellID-Cancelled-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CellID_Cancelled_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CellID_Cancelled_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P32, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P32, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CellID-Cancelled-Item.h b/lib/asn1c/s1ap/S1AP_CellID-Cancelled-Item.h index 9a506f91c..dd8added7 100644 --- a/lib/asn1c/s1ap/S1AP_CellID-Cancelled-Item.h +++ b/lib/asn1c/s1ap/S1AP_CellID-Cancelled-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellID-Cancelled.c b/lib/asn1c/s1ap/S1AP_CellID-Cancelled.c index 844f46c54..3a1bcc6a9 100644 --- a/lib/asn1c/s1ap/S1AP_CellID-Cancelled.c +++ b/lib/asn1c/s1ap/S1AP_CellID-Cancelled.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellID-Cancelled.h b/lib/asn1c/s1ap/S1AP_CellID-Cancelled.h index ea5687a1d..32885b023 100644 --- a/lib/asn1c/s1ap/S1AP_CellID-Cancelled.h +++ b/lib/asn1c/s1ap/S1AP_CellID-Cancelled.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellIdListforMDT.c b/lib/asn1c/s1ap/S1AP_CellIdListforMDT.c index b10e947c0..4ed1b16e9 100644 --- a/lib/asn1c/s1ap/S1AP_CellIdListforMDT.c +++ b/lib/asn1c/s1ap/S1AP_CellIdListforMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellIdListforMDT.h b/lib/asn1c/s1ap/S1AP_CellIdListforMDT.h index ca04efba9..910848925 100644 --- a/lib/asn1c/s1ap/S1AP_CellIdListforMDT.h +++ b/lib/asn1c/s1ap/S1AP_CellIdListforMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellIdListforQMC.c b/lib/asn1c/s1ap/S1AP_CellIdListforQMC.c index e866ebd0a..4b6301313 100644 --- a/lib/asn1c/s1ap/S1AP_CellIdListforQMC.c +++ b/lib/asn1c/s1ap/S1AP_CellIdListforQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellIdListforQMC.h b/lib/asn1c/s1ap/S1AP_CellIdListforQMC.h index 9015c4c02..fea85d1a1 100644 --- a/lib/asn1c/s1ap/S1AP_CellIdListforQMC.h +++ b/lib/asn1c/s1ap/S1AP_CellIdListforQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellIdentifierAndCELevelForCECapableUEs.c b/lib/asn1c/s1ap/S1AP_CellIdentifierAndCELevelForCECapableUEs.c index 541064f4f..1de39c8be 100644 --- a/lib/asn1c/s1ap/S1AP_CellIdentifierAndCELevelForCECapableUEs.c +++ b/lib/asn1c/s1ap/S1AP_CellIdentifierAndCELevelForCECapableUEs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CellIdentifierAndCELevelForCECapableUEs_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CellIdentifierAndCELevelForCECapableUEs, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P30, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P30, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CellIdentifierAndCELevelForCECapableUEs.h b/lib/asn1c/s1ap/S1AP_CellIdentifierAndCELevelForCECapableUEs.h index a4684a57d..361ab7040 100644 --- a/lib/asn1c/s1ap/S1AP_CellIdentifierAndCELevelForCECapableUEs.h +++ b/lib/asn1c/s1ap/S1AP_CellIdentifierAndCELevelForCECapableUEs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellIdentity.c b/lib/asn1c/s1ap/S1AP_CellIdentity.c index 2e832956d..d45fddeb0 100644 --- a/lib/asn1c/s1ap/S1AP_CellIdentity.c +++ b/lib/asn1c/s1ap/S1AP_CellIdentity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellIdentity.h b/lib/asn1c/s1ap/S1AP_CellIdentity.h index 9ee7172db..0068dad04 100644 --- a/lib/asn1c/s1ap/S1AP_CellIdentity.h +++ b/lib/asn1c/s1ap/S1AP_CellIdentity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CellTrafficTrace.c b/lib/asn1c/s1ap/S1AP_CellTrafficTrace.c index 739a393a5..e27794750 100644 --- a/lib/asn1c/s1ap/S1AP_CellTrafficTrace.c +++ b/lib/asn1c/s1ap/S1AP_CellTrafficTrace.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CellTrafficTrace_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_CellTrafficTrace, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P60, + &asn_DEF_S1AP_ProtocolIE_Container_7847P60, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CellTrafficTrace.h b/lib/asn1c/s1ap/S1AP_CellTrafficTrace.h index 8226a77d4..1f3182bb9 100644 --- a/lib/asn1c/s1ap/S1AP_CellTrafficTrace.h +++ b/lib/asn1c/s1ap/S1AP_CellTrafficTrace.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_CellTrafficTrace */ typedef struct S1AP_CellTrafficTrace { - S1AP_ProtocolIE_Container_7838P60_t protocolIEs; + S1AP_ProtocolIE_Container_7847P60_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_CellType.c b/lib/asn1c/s1ap/S1AP_CellType.c index a39273be7..821d4b248 100644 --- a/lib/asn1c/s1ap/S1AP_CellType.c +++ b/lib/asn1c/s1ap/S1AP_CellType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CellType_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CellType, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P36, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P36, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CellType.h b/lib/asn1c/s1ap/S1AP_CellType.h index d71017992..44460bfb8 100644 --- a/lib/asn1c/s1ap/S1AP_CellType.h +++ b/lib/asn1c/s1ap/S1AP_CellType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CompletedCellinEAI-Item.c b/lib/asn1c/s1ap/S1AP_CompletedCellinEAI-Item.c index 7f592dc5a..7f2e085d1 100644 --- a/lib/asn1c/s1ap/S1AP_CompletedCellinEAI-Item.c +++ b/lib/asn1c/s1ap/S1AP_CompletedCellinEAI-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CompletedCellinEAI_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CompletedCellinEAI_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P54, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P54, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CompletedCellinEAI-Item.h b/lib/asn1c/s1ap/S1AP_CompletedCellinEAI-Item.h index 35049e1a1..2dba7d2c9 100644 --- a/lib/asn1c/s1ap/S1AP_CompletedCellinEAI-Item.h +++ b/lib/asn1c/s1ap/S1AP_CompletedCellinEAI-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CompletedCellinEAI.c b/lib/asn1c/s1ap/S1AP_CompletedCellinEAI.c index beb6dccda..eddd20fbc 100644 --- a/lib/asn1c/s1ap/S1AP_CompletedCellinEAI.c +++ b/lib/asn1c/s1ap/S1AP_CompletedCellinEAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CompletedCellinEAI.h b/lib/asn1c/s1ap/S1AP_CompletedCellinEAI.h index b2d07efe2..808e668bc 100644 --- a/lib/asn1c/s1ap/S1AP_CompletedCellinEAI.h +++ b/lib/asn1c/s1ap/S1AP_CompletedCellinEAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CompletedCellinTAI-Item.c b/lib/asn1c/s1ap/S1AP_CompletedCellinTAI-Item.c index 398fb0f03..69854e1e6 100644 --- a/lib/asn1c/s1ap/S1AP_CompletedCellinTAI-Item.c +++ b/lib/asn1c/s1ap/S1AP_CompletedCellinTAI-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CompletedCellinTAI_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CompletedCellinTAI_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P138, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P138, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CompletedCellinTAI-Item.h b/lib/asn1c/s1ap/S1AP_CompletedCellinTAI-Item.h index 486ae6d37..feea3227c 100644 --- a/lib/asn1c/s1ap/S1AP_CompletedCellinTAI-Item.h +++ b/lib/asn1c/s1ap/S1AP_CompletedCellinTAI-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CompletedCellinTAI.c b/lib/asn1c/s1ap/S1AP_CompletedCellinTAI.c index eaf3400ac..13f1b8e3c 100644 --- a/lib/asn1c/s1ap/S1AP_CompletedCellinTAI.c +++ b/lib/asn1c/s1ap/S1AP_CompletedCellinTAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CompletedCellinTAI.h b/lib/asn1c/s1ap/S1AP_CompletedCellinTAI.h index 95a9b6d7f..5fea36d99 100644 --- a/lib/asn1c/s1ap/S1AP_CompletedCellinTAI.h +++ b/lib/asn1c/s1ap/S1AP_CompletedCellinTAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ConcurrentWarningMessageIndicator.c b/lib/asn1c/s1ap/S1AP_ConcurrentWarningMessageIndicator.c index cf243139c..7e25d759e 100644 --- a/lib/asn1c/s1ap/S1AP_ConcurrentWarningMessageIndicator.c +++ b/lib/asn1c/s1ap/S1AP_ConcurrentWarningMessageIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ConcurrentWarningMessageIndicator.h b/lib/asn1c/s1ap/S1AP_ConcurrentWarningMessageIndicator.h index 0b464a60a..7b83372a3 100644 --- a/lib/asn1c/s1ap/S1AP_ConcurrentWarningMessageIndicator.h +++ b/lib/asn1c/s1ap/S1AP_ConcurrentWarningMessageIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ConnectedengNBItem.c b/lib/asn1c/s1ap/S1AP_ConnectedengNBItem.c index 7eca2b8ec..1c3117a29 100644 --- a/lib/asn1c/s1ap/S1AP_ConnectedengNBItem.c +++ b/lib/asn1c/s1ap/S1AP_ConnectedengNBItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ConnectedengNBItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ConnectedengNBItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P39, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P39, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ConnectedengNBItem.h b/lib/asn1c/s1ap/S1AP_ConnectedengNBItem.h index a059f6b66..528e2752e 100644 --- a/lib/asn1c/s1ap/S1AP_ConnectedengNBItem.h +++ b/lib/asn1c/s1ap/S1AP_ConnectedengNBItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ConnectedengNBList.c b/lib/asn1c/s1ap/S1AP_ConnectedengNBList.c index b98e777bb..bac7ca260 100644 --- a/lib/asn1c/s1ap/S1AP_ConnectedengNBList.c +++ b/lib/asn1c/s1ap/S1AP_ConnectedengNBList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ConnectedengNBList.h b/lib/asn1c/s1ap/S1AP_ConnectedengNBList.h index 08dbbadc9..e7e330f07 100644 --- a/lib/asn1c/s1ap/S1AP_ConnectedengNBList.h +++ b/lib/asn1c/s1ap/S1AP_ConnectedengNBList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ConnectionEstablishmentIndication.c b/lib/asn1c/s1ap/S1AP_ConnectionEstablishmentIndication.c index c3f365d64..d08f0b843 100644 --- a/lib/asn1c/s1ap/S1AP_ConnectionEstablishmentIndication.c +++ b/lib/asn1c/s1ap/S1AP_ConnectionEstablishmentIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ConnectionEstablishmentIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ConnectionEstablishmentIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P89, + &asn_DEF_S1AP_ProtocolIE_Container_7847P89, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ConnectionEstablishmentIndication.h b/lib/asn1c/s1ap/S1AP_ConnectionEstablishmentIndication.h index bfdd1f8b0..55cad4c4a 100644 --- a/lib/asn1c/s1ap/S1AP_ConnectionEstablishmentIndication.h +++ b/lib/asn1c/s1ap/S1AP_ConnectionEstablishmentIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ConnectionEstablishmentIndication */ typedef struct S1AP_ConnectionEstablishmentIndication { - S1AP_ProtocolIE_Container_7838P89_t protocolIEs; + S1AP_ProtocolIE_Container_7847P89_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ContextatSource.c b/lib/asn1c/s1ap/S1AP_ContextatSource.c index 96cc8bd32..2ca906347 100644 --- a/lib/asn1c/s1ap/S1AP_ContextatSource.c +++ b/lib/asn1c/s1ap/S1AP_ContextatSource.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_ContextatSource_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ContextatSource, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P40, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P40, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ContextatSource.h b/lib/asn1c/s1ap/S1AP_ContextatSource.h index e1e6520cf..9e8e49bd7 100644 --- a/lib/asn1c/s1ap/S1AP_ContextatSource.h +++ b/lib/asn1c/s1ap/S1AP_ContextatSource.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Correlation-ID.c b/lib/asn1c/s1ap/S1AP_Correlation-ID.c index 33268e40b..5c560a59b 100644 --- a/lib/asn1c/s1ap/S1AP_Correlation-ID.c +++ b/lib/asn1c/s1ap/S1AP_Correlation-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Correlation-ID.h b/lib/asn1c/s1ap/S1AP_Correlation-ID.h index df15f7336..7a65d0ff6 100644 --- a/lib/asn1c/s1ap/S1AP_Correlation-ID.h +++ b/lib/asn1c/s1ap/S1AP_Correlation-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Coverage-Level.c b/lib/asn1c/s1ap/S1AP_Coverage-Level.c index 1973e06b9..95d3cbf67 100644 --- a/lib/asn1c/s1ap/S1AP_Coverage-Level.c +++ b/lib/asn1c/s1ap/S1AP_Coverage-Level.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Coverage-Level.h b/lib/asn1c/s1ap/S1AP_Coverage-Level.h index aa423dc4c..c9ab06055 100644 --- a/lib/asn1c/s1ap/S1AP_Coverage-Level.h +++ b/lib/asn1c/s1ap/S1AP_Coverage-Level.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Criticality.c b/lib/asn1c/s1ap/S1AP_Criticality.c index 8375c73f3..061b840dd 100644 --- a/lib/asn1c/s1ap/S1AP_Criticality.c +++ b/lib/asn1c/s1ap/S1AP_Criticality.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Criticality.h b/lib/asn1c/s1ap/S1AP_Criticality.h index d1e2139f4..65ae7f864 100644 --- a/lib/asn1c/s1ap/S1AP_Criticality.h +++ b/lib/asn1c/s1ap/S1AP_Criticality.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-Item.c b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-Item.c index 357278e96..95a3667d2 100644 --- a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-Item.c +++ b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_S1AP_CriticalityDiagnostics_IE_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CriticalityDiagnostics_IE_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P46, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P46, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-Item.h b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-Item.h index 717cb55e1..d0a77c42b 100644 --- a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-Item.h +++ b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-List.c b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-List.c index 77763bd17..e80aef8d8 100644 --- a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-List.c +++ b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-List.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-List.h b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-List.h index 2e83e1311..975d149b7 100644 --- a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-List.h +++ b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics-IE-List.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics.c b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics.c index 5e40c23d0..d39704467 100644 --- a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics.c +++ b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -81,7 +81,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_CriticalityDiagnostics_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_CriticalityDiagnostics, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P45, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P45, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics.h b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics.h index 4903350cc..e426dc9be 100644 --- a/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics.h +++ b/lib/asn1c/s1ap/S1AP_CriticalityDiagnostics.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DAPSRequestInfo.c b/lib/asn1c/s1ap/S1AP_DAPSRequestInfo.c index ea7863e60..6a96efae9 100644 --- a/lib/asn1c/s1ap/S1AP_DAPSRequestInfo.c +++ b/lib/asn1c/s1ap/S1AP_DAPSRequestInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -85,7 +85,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_DAPSRequestInfo_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_DAPSRequestInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P47, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P47, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DAPSRequestInfo.h b/lib/asn1c/s1ap/S1AP_DAPSRequestInfo.h index d63fb7c30..33118d1f0 100644 --- a/lib/asn1c/s1ap/S1AP_DAPSRequestInfo.h +++ b/lib/asn1c/s1ap/S1AP_DAPSRequestInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DAPSResponseInfo.c b/lib/asn1c/s1ap/S1AP_DAPSResponseInfo.c index 6259fd0a5..3b436cf4f 100644 --- a/lib/asn1c/s1ap/S1AP_DAPSResponseInfo.c +++ b/lib/asn1c/s1ap/S1AP_DAPSResponseInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -87,7 +87,7 @@ asn_TYPE_member_t asn_MBR_S1AP_DAPSResponseInfo_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_DAPSResponseInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P49, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P49, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DAPSResponseInfo.h b/lib/asn1c/s1ap/S1AP_DAPSResponseInfo.h index 7d1e858e7..aaeeb3b51 100644 --- a/lib/asn1c/s1ap/S1AP_DAPSResponseInfo.h +++ b/lib/asn1c/s1ap/S1AP_DAPSResponseInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DAPSResponseInfoItem.c b/lib/asn1c/s1ap/S1AP_DAPSResponseInfoItem.c index 76e077d7d..2555a00f4 100644 --- a/lib/asn1c/s1ap/S1AP_DAPSResponseInfoItem.c +++ b/lib/asn1c/s1ap/S1AP_DAPSResponseInfoItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_DAPSResponseInfoItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_DAPSResponseInfoItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P48, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P48, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DAPSResponseInfoItem.h b/lib/asn1c/s1ap/S1AP_DAPSResponseInfoItem.h index 6f2ba224c..4247ecf56 100644 --- a/lib/asn1c/s1ap/S1AP_DAPSResponseInfoItem.h +++ b/lib/asn1c/s1ap/S1AP_DAPSResponseInfoItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DAPSResponseInfoList.c b/lib/asn1c/s1ap/S1AP_DAPSResponseInfoList.c index b02b21b91..493a96d72 100644 --- a/lib/asn1c/s1ap/S1AP_DAPSResponseInfoList.c +++ b/lib/asn1c/s1ap/S1AP_DAPSResponseInfoList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_DAPSResponseInfoList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DAPSResponseInfoList.h b/lib/asn1c/s1ap/S1AP_DAPSResponseInfoList.h index f016b16c4..c5410ca25 100644 --- a/lib/asn1c/s1ap/S1AP_DAPSResponseInfoList.h +++ b/lib/asn1c/s1ap/S1AP_DAPSResponseInfoList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DCN-ID.c b/lib/asn1c/s1ap/S1AP_DCN-ID.c index d368edce2..8d4b73382 100644 --- a/lib/asn1c/s1ap/S1AP_DCN-ID.c +++ b/lib/asn1c/s1ap/S1AP_DCN-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DCN-ID.h b/lib/asn1c/s1ap/S1AP_DCN-ID.h index f92988e3f..1470cffa8 100644 --- a/lib/asn1c/s1ap/S1AP_DCN-ID.h +++ b/lib/asn1c/s1ap/S1AP_DCN-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DL-CP-SecurityInformation.c b/lib/asn1c/s1ap/S1AP_DL-CP-SecurityInformation.c index dac2d3a82..509259d1e 100644 --- a/lib/asn1c/s1ap/S1AP_DL-CP-SecurityInformation.c +++ b/lib/asn1c/s1ap/S1AP_DL-CP-SecurityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_DL_CP_SecurityInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_DL_CP_SecurityInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P51, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P51, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DL-CP-SecurityInformation.h b/lib/asn1c/s1ap/S1AP_DL-CP-SecurityInformation.h index 25d717b73..dd43a9f09 100644 --- a/lib/asn1c/s1ap/S1AP_DL-CP-SecurityInformation.h +++ b/lib/asn1c/s1ap/S1AP_DL-CP-SecurityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DL-Forwarding.c b/lib/asn1c/s1ap/S1AP_DL-Forwarding.c index e758e10d1..d9f011cde 100644 --- a/lib/asn1c/s1ap/S1AP_DL-Forwarding.c +++ b/lib/asn1c/s1ap/S1AP_DL-Forwarding.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DL-Forwarding.h b/lib/asn1c/s1ap/S1AP_DL-Forwarding.h index aea937cd8..864c50cae 100644 --- a/lib/asn1c/s1ap/S1AP_DL-Forwarding.h +++ b/lib/asn1c/s1ap/S1AP_DL-Forwarding.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DL-NAS-MAC.c b/lib/asn1c/s1ap/S1AP_DL-NAS-MAC.c index aa3058e68..d374b10c7 100644 --- a/lib/asn1c/s1ap/S1AP_DL-NAS-MAC.c +++ b/lib/asn1c/s1ap/S1AP_DL-NAS-MAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DL-NAS-MAC.h b/lib/asn1c/s1ap/S1AP_DL-NAS-MAC.h index 06ad96b89..22196f65f 100644 --- a/lib/asn1c/s1ap/S1AP_DL-NAS-MAC.h +++ b/lib/asn1c/s1ap/S1AP_DL-NAS-MAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DLCOUNT-PDCP-SNlength.c b/lib/asn1c/s1ap/S1AP_DLCOUNT-PDCP-SNlength.c index 749a8ff4d..faf10a968 100644 --- a/lib/asn1c/s1ap/S1AP_DLCOUNT-PDCP-SNlength.c +++ b/lib/asn1c/s1ap/S1AP_DLCOUNT-PDCP-SNlength.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DLCOUNT-PDCP-SNlength.h b/lib/asn1c/s1ap/S1AP_DLCOUNT-PDCP-SNlength.h index 71ceb814f..f37aa3821 100644 --- a/lib/asn1c/s1ap/S1AP_DLCOUNT-PDCP-SNlength.h +++ b/lib/asn1c/s1ap/S1AP_DLCOUNT-PDCP-SNlength.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DLNASPDUDeliveryAckRequest.c b/lib/asn1c/s1ap/S1AP_DLNASPDUDeliveryAckRequest.c index 7cf746769..06dc043f3 100644 --- a/lib/asn1c/s1ap/S1AP_DLNASPDUDeliveryAckRequest.c +++ b/lib/asn1c/s1ap/S1AP_DLNASPDUDeliveryAckRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DLNASPDUDeliveryAckRequest.h b/lib/asn1c/s1ap/S1AP_DLNASPDUDeliveryAckRequest.h index 55302cf39..4c501e697 100644 --- a/lib/asn1c/s1ap/S1AP_DLNASPDUDeliveryAckRequest.h +++ b/lib/asn1c/s1ap/S1AP_DLNASPDUDeliveryAckRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Data-Forwarding-Not-Possible.c b/lib/asn1c/s1ap/S1AP_Data-Forwarding-Not-Possible.c index 4b34b7743..fea2ba29c 100644 --- a/lib/asn1c/s1ap/S1AP_Data-Forwarding-Not-Possible.c +++ b/lib/asn1c/s1ap/S1AP_Data-Forwarding-Not-Possible.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Data-Forwarding-Not-Possible.h b/lib/asn1c/s1ap/S1AP_Data-Forwarding-Not-Possible.h index 12ac28de9..02e9d2916 100644 --- a/lib/asn1c/s1ap/S1AP_Data-Forwarding-Not-Possible.h +++ b/lib/asn1c/s1ap/S1AP_Data-Forwarding-Not-Possible.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DataCodingScheme.c b/lib/asn1c/s1ap/S1AP_DataCodingScheme.c index aab1eee43..2251ed723 100644 --- a/lib/asn1c/s1ap/S1AP_DataCodingScheme.c +++ b/lib/asn1c/s1ap/S1AP_DataCodingScheme.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DataCodingScheme.h b/lib/asn1c/s1ap/S1AP_DataCodingScheme.h index 01d4fd769..10a5a609a 100644 --- a/lib/asn1c/s1ap/S1AP_DataCodingScheme.h +++ b/lib/asn1c/s1ap/S1AP_DataCodingScheme.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DataSize.c b/lib/asn1c/s1ap/S1AP_DataSize.c index 4983239e7..ca157d18b 100644 --- a/lib/asn1c/s1ap/S1AP_DataSize.c +++ b/lib/asn1c/s1ap/S1AP_DataSize.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DataSize.h b/lib/asn1c/s1ap/S1AP_DataSize.h index d8e484479..07ed6524e 100644 --- a/lib/asn1c/s1ap/S1AP_DataSize.h +++ b/lib/asn1c/s1ap/S1AP_DataSize.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DeactivateTrace.c b/lib/asn1c/s1ap/S1AP_DeactivateTrace.c index 0843835e3..c4b284f4a 100644 --- a/lib/asn1c/s1ap/S1AP_DeactivateTrace.c +++ b/lib/asn1c/s1ap/S1AP_DeactivateTrace.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_DeactivateTrace_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_DeactivateTrace, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P59, + &asn_DEF_S1AP_ProtocolIE_Container_7847P59, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DeactivateTrace.h b/lib/asn1c/s1ap/S1AP_DeactivateTrace.h index 30fd49796..70a6b7dea 100644 --- a/lib/asn1c/s1ap/S1AP_DeactivateTrace.h +++ b/lib/asn1c/s1ap/S1AP_DeactivateTrace.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_DeactivateTrace */ typedef struct S1AP_DeactivateTrace { - S1AP_ProtocolIE_Container_7838P59_t protocolIEs; + S1AP_ProtocolIE_Container_7847P59_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_Direct-Forwarding-Path-Availability.c b/lib/asn1c/s1ap/S1AP_Direct-Forwarding-Path-Availability.c index 8b0d6f375..dfd55ae02 100644 --- a/lib/asn1c/s1ap/S1AP_Direct-Forwarding-Path-Availability.c +++ b/lib/asn1c/s1ap/S1AP_Direct-Forwarding-Path-Availability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Direct-Forwarding-Path-Availability.h b/lib/asn1c/s1ap/S1AP_Direct-Forwarding-Path-Availability.h index 03bd107c4..2a94d5f33 100644 --- a/lib/asn1c/s1ap/S1AP_Direct-Forwarding-Path-Availability.h +++ b/lib/asn1c/s1ap/S1AP_Direct-Forwarding-Path-Availability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_DownlinkNASTransport.c b/lib/asn1c/s1ap/S1AP_DownlinkNASTransport.c index 0e278249c..1cab3e357 100644 --- a/lib/asn1c/s1ap/S1AP_DownlinkNASTransport.c +++ b/lib/asn1c/s1ap/S1AP_DownlinkNASTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_DownlinkNASTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_DownlinkNASTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P34, + &asn_DEF_S1AP_ProtocolIE_Container_7847P34, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DownlinkNASTransport.h b/lib/asn1c/s1ap/S1AP_DownlinkNASTransport.h index 1e1bfef47..5e7059291 100644 --- a/lib/asn1c/s1ap/S1AP_DownlinkNASTransport.h +++ b/lib/asn1c/s1ap/S1AP_DownlinkNASTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_DownlinkNASTransport */ typedef struct S1AP_DownlinkNASTransport { - S1AP_ProtocolIE_Container_7838P34_t protocolIEs; + S1AP_ProtocolIE_Container_7847P34_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_DownlinkNonUEAssociatedLPPaTransport.c b/lib/asn1c/s1ap/S1AP_DownlinkNonUEAssociatedLPPaTransport.c index efa45bf61..5aab0f571 100644 --- a/lib/asn1c/s1ap/S1AP_DownlinkNonUEAssociatedLPPaTransport.c +++ b/lib/asn1c/s1ap/S1AP_DownlinkNonUEAssociatedLPPaTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_DownlinkNonUEAssociatedLPPaTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_DownlinkNonUEAssociatedLPPaTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P78, + &asn_DEF_S1AP_ProtocolIE_Container_7847P78, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DownlinkNonUEAssociatedLPPaTransport.h b/lib/asn1c/s1ap/S1AP_DownlinkNonUEAssociatedLPPaTransport.h index 22a762596..4d2c5343e 100644 --- a/lib/asn1c/s1ap/S1AP_DownlinkNonUEAssociatedLPPaTransport.h +++ b/lib/asn1c/s1ap/S1AP_DownlinkNonUEAssociatedLPPaTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_DownlinkNonUEAssociatedLPPaTransport */ typedef struct S1AP_DownlinkNonUEAssociatedLPPaTransport { - S1AP_ProtocolIE_Container_7838P78_t protocolIEs; + S1AP_ProtocolIE_Container_7847P78_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_DownlinkS1cdma2000tunnelling.c b/lib/asn1c/s1ap/S1AP_DownlinkS1cdma2000tunnelling.c index be5cbc831..958d7d993 100644 --- a/lib/asn1c/s1ap/S1AP_DownlinkS1cdma2000tunnelling.c +++ b/lib/asn1c/s1ap/S1AP_DownlinkS1cdma2000tunnelling.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_DownlinkS1cdma2000tunnelling_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_DownlinkS1cdma2000tunnelling, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P52, + &asn_DEF_S1AP_ProtocolIE_Container_7847P52, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DownlinkS1cdma2000tunnelling.h b/lib/asn1c/s1ap/S1AP_DownlinkS1cdma2000tunnelling.h index 40c4c0779..7a5134f96 100644 --- a/lib/asn1c/s1ap/S1AP_DownlinkS1cdma2000tunnelling.h +++ b/lib/asn1c/s1ap/S1AP_DownlinkS1cdma2000tunnelling.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_DownlinkS1cdma2000tunnelling */ typedef struct S1AP_DownlinkS1cdma2000tunnelling { - S1AP_ProtocolIE_Container_7838P52_t protocolIEs; + S1AP_ProtocolIE_Container_7847P52_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_DownlinkUEAssociatedLPPaTransport.c b/lib/asn1c/s1ap/S1AP_DownlinkUEAssociatedLPPaTransport.c index 5c2cf93e0..1e70e7d36 100644 --- a/lib/asn1c/s1ap/S1AP_DownlinkUEAssociatedLPPaTransport.c +++ b/lib/asn1c/s1ap/S1AP_DownlinkUEAssociatedLPPaTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_DownlinkUEAssociatedLPPaTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_DownlinkUEAssociatedLPPaTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P76, + &asn_DEF_S1AP_ProtocolIE_Container_7847P76, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_DownlinkUEAssociatedLPPaTransport.h b/lib/asn1c/s1ap/S1AP_DownlinkUEAssociatedLPPaTransport.h index 72e46a7e8..41cd07822 100644 --- a/lib/asn1c/s1ap/S1AP_DownlinkUEAssociatedLPPaTransport.h +++ b/lib/asn1c/s1ap/S1AP_DownlinkUEAssociatedLPPaTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_DownlinkUEAssociatedLPPaTransport */ typedef struct S1AP_DownlinkUEAssociatedLPPaTransport { - S1AP_ProtocolIE_Container_7838P76_t protocolIEs; + S1AP_ProtocolIE_Container_7847P76_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RAB-ID.c b/lib/asn1c/s1ap/S1AP_E-RAB-ID.c index 8d8755a25..f7f47e80c 100644 --- a/lib/asn1c/s1ap/S1AP_E-RAB-ID.c +++ b/lib/asn1c/s1ap/S1AP_E-RAB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RAB-ID.h b/lib/asn1c/s1ap/S1AP_E-RAB-ID.h index f47c982f8..08a4c0467 100644 --- a/lib/asn1c/s1ap/S1AP_E-RAB-ID.h +++ b/lib/asn1c/s1ap/S1AP_E-RAB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerList.c b/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerList.c index d3b744721..1694d73b5 100644 --- a/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerList.c +++ b/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -34,7 +34,7 @@ S1AP_E_RAB_IE_ContainerList_1267P0_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P0, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P0, * so here we adjust the DEF accordingly. */ int @@ -64,7 +64,7 @@ S1AP_E_RAB_IE_ContainerList_1267P1_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P1, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P1, * so here we adjust the DEF accordingly. */ int @@ -94,7 +94,7 @@ S1AP_E_RAB_IE_ContainerList_1267P2_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P2, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P2, * so here we adjust the DEF accordingly. */ int @@ -124,7 +124,7 @@ S1AP_E_RAB_IE_ContainerList_1267P3_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P3, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P3, * so here we adjust the DEF accordingly. */ int @@ -154,7 +154,7 @@ S1AP_E_RAB_IE_ContainerList_1267P4_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P4, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P4, * so here we adjust the DEF accordingly. */ int @@ -184,7 +184,7 @@ S1AP_E_RAB_IE_ContainerList_1267P5_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P5, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P5, * so here we adjust the DEF accordingly. */ int @@ -214,7 +214,7 @@ S1AP_E_RAB_IE_ContainerList_1267P6_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P6, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P6, * so here we adjust the DEF accordingly. */ int @@ -244,7 +244,7 @@ S1AP_E_RAB_IE_ContainerList_1267P7_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P7, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P7, * so here we adjust the DEF accordingly. */ int @@ -274,7 +274,7 @@ S1AP_E_RAB_IE_ContainerList_1267P8_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P8, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P8, * so here we adjust the DEF accordingly. */ int @@ -304,7 +304,7 @@ S1AP_E_RAB_IE_ContainerList_1267P9_constraint(const asn_TYPE_descriptor_t *td, c } /* - * This type is implemented using S1AP_ProtocolIE_ContainerList_7875P9, + * This type is implemented using S1AP_ProtocolIE_ContainerList_7884P9, * so here we adjust the DEF accordingly. */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) @@ -399,9 +399,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P0 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P0_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P0_1, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P0_1, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P0_specs_1 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P0_specs_1 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P1_tags_2[] = { @@ -426,9 +426,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P1 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P1_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P1_3, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P1_3, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P1_specs_3 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P1_specs_3 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P2_tags_3[] = { @@ -453,9 +453,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P2 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P2_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P2_5, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P2_5, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P2_specs_5 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P2_specs_5 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P3_tags_4[] = { @@ -480,9 +480,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P3 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P3_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P3_7, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P3_7, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P3_specs_7 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P3_specs_7 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P4_tags_5[] = { @@ -507,9 +507,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P4 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P4_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P4_9, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P4_9, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P4_specs_9 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P4_specs_9 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P5_tags_6[] = { @@ -534,9 +534,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P5 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P5_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P5_11, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P5_11, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P5_specs_11 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P5_specs_11 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P6_tags_7[] = { @@ -561,9 +561,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P6 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P6_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P6_13, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P6_13, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P6_specs_13 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P6_specs_13 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P7_tags_8[] = { @@ -588,9 +588,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P7 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P7_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P7_15, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P7_15, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P7_specs_15 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P7_specs_15 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P8_tags_9[] = { @@ -615,9 +615,9 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P8 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P8_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P8_17, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P8_17, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P8_specs_17 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P8_specs_17 /* Additional specs */ }; static const ber_tlv_tag_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P9_tags_10[] = { @@ -642,8 +642,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RAB_IE_ContainerList_1267P9 = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RAB_IE_ContainerList_1267P9_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P9_19, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P9_19, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P9_specs_19 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P9_specs_19 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerList.h b/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerList.h index aebc2b9a8..a2269bb9b 100644 --- a/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerList.h +++ b/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,16 +19,16 @@ extern "C" { #endif /* S1AP_E-RAB-IE-ContainerList */ -typedef S1AP_ProtocolIE_ContainerList_7875P0_t S1AP_E_RAB_IE_ContainerList_1267P0_t; -typedef S1AP_ProtocolIE_ContainerList_7875P1_t S1AP_E_RAB_IE_ContainerList_1267P1_t; -typedef S1AP_ProtocolIE_ContainerList_7875P2_t S1AP_E_RAB_IE_ContainerList_1267P2_t; -typedef S1AP_ProtocolIE_ContainerList_7875P3_t S1AP_E_RAB_IE_ContainerList_1267P3_t; -typedef S1AP_ProtocolIE_ContainerList_7875P4_t S1AP_E_RAB_IE_ContainerList_1267P4_t; -typedef S1AP_ProtocolIE_ContainerList_7875P5_t S1AP_E_RAB_IE_ContainerList_1267P5_t; -typedef S1AP_ProtocolIE_ContainerList_7875P6_t S1AP_E_RAB_IE_ContainerList_1267P6_t; -typedef S1AP_ProtocolIE_ContainerList_7875P7_t S1AP_E_RAB_IE_ContainerList_1267P7_t; -typedef S1AP_ProtocolIE_ContainerList_7875P8_t S1AP_E_RAB_IE_ContainerList_1267P8_t; -typedef S1AP_ProtocolIE_ContainerList_7875P9_t S1AP_E_RAB_IE_ContainerList_1267P9_t; +typedef S1AP_ProtocolIE_ContainerList_7884P0_t S1AP_E_RAB_IE_ContainerList_1267P0_t; +typedef S1AP_ProtocolIE_ContainerList_7884P1_t S1AP_E_RAB_IE_ContainerList_1267P1_t; +typedef S1AP_ProtocolIE_ContainerList_7884P2_t S1AP_E_RAB_IE_ContainerList_1267P2_t; +typedef S1AP_ProtocolIE_ContainerList_7884P3_t S1AP_E_RAB_IE_ContainerList_1267P3_t; +typedef S1AP_ProtocolIE_ContainerList_7884P4_t S1AP_E_RAB_IE_ContainerList_1267P4_t; +typedef S1AP_ProtocolIE_ContainerList_7884P5_t S1AP_E_RAB_IE_ContainerList_1267P5_t; +typedef S1AP_ProtocolIE_ContainerList_7884P6_t S1AP_E_RAB_IE_ContainerList_1267P6_t; +typedef S1AP_ProtocolIE_ContainerList_7884P7_t S1AP_E_RAB_IE_ContainerList_1267P7_t; +typedef S1AP_ProtocolIE_ContainerList_7884P8_t S1AP_E_RAB_IE_ContainerList_1267P8_t; +typedef S1AP_ProtocolIE_ContainerList_7884P9_t S1AP_E_RAB_IE_ContainerList_1267P9_t; /* Implementation */ extern asn_per_constraints_t asn_PER_type_S1AP_E_RAB_IE_ContainerList_1267P0_constr_1; diff --git a/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerPairList.h b/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerPairList.h index ee2e60b63..a1e96621a 100644 --- a/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerPairList.h +++ b/lib/asn1c/s1ap/S1AP_E-RAB-IE-ContainerPairList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABAdmittedItem.c b/lib/asn1c/s1ap/S1AP_E-RABAdmittedItem.c index 2472bec82..63af668a4 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABAdmittedItem.c +++ b/lib/asn1c/s1ap/S1AP_E-RABAdmittedItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -131,7 +131,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABAdmittedItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABAdmittedItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (7 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P2, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P2, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABAdmittedItem.h b/lib/asn1c/s1ap/S1AP_E-RABAdmittedItem.h index 67d9b46f9..f8dd94a3e 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABAdmittedItem.h +++ b/lib/asn1c/s1ap/S1AP_E-RABAdmittedItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABAdmittedList.c b/lib/asn1c/s1ap/S1AP_E-RABAdmittedList.c index c855f04ac..82fb5b9bf 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABAdmittedList.c +++ b/lib/asn1c/s1ap/S1AP_E-RABAdmittedList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABAdmittedList = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABAdmittedList_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P2_5, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P2_5, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P2_specs_5 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P2_specs_5 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABAdmittedList.h b/lib/asn1c/s1ap/S1AP_E-RABAdmittedList.h index 1d9e55682..f6fb361d4 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABAdmittedList.h +++ b/lib/asn1c/s1ap/S1AP_E-RABAdmittedList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABDataForwardingItem.c b/lib/asn1c/s1ap/S1AP_E-RABDataForwardingItem.c index c899f894e..eb69ff4cb 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABDataForwardingItem.c +++ b/lib/asn1c/s1ap/S1AP_E-RABDataForwardingItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -97,7 +97,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABDataForwardingItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABDataForwardingItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P0, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P0, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABDataForwardingItem.h b/lib/asn1c/s1ap/S1AP_E-RABDataForwardingItem.h index 2ccb44901..cdd52f93f 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABDataForwardingItem.h +++ b/lib/asn1c/s1ap/S1AP_E-RABDataForwardingItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeReq.c b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeReq.c index 6f145b2e6..6ac72bd6c 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABFailedToResumeItemResumeReq_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABFailedToResumeItemResumeReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P18, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P18, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeReq.h b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeReq.h index 8b1008063..0912dd2ff 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeRes.c b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeRes.c index 8e3d52eda..f613fb926 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeRes.c +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABFailedToResumeItemResumeRes_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABFailedToResumeItemResumeRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P19, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P19, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeRes.h b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeRes.h index 6b9a91e35..905dd24f4 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeRes.h +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeItemResumeRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeReq.c b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeReq.c index 1112c61e7..fbc7cce81 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABFailedToResumeListResumeReq = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABFailedToResumeListResumeReq_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P8_17, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P8_17, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P8_specs_17 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P8_specs_17 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeReq.h b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeReq.h index 1dbe8f229..7b37f5065 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeRes.c b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeRes.c index 588c2a146..473e05681 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeRes.c +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABFailedToResumeListResumeRes = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABFailedToResumeListResumeRes_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P9_19, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P9_19, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P9_specs_19 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P9_specs_19 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeRes.h b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeRes.h index ea71a25a1..e0bc6f77f 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeRes.h +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToResumeListResumeRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToSetupItemHOReqAck.c b/lib/asn1c/s1ap/S1AP_E-RABFailedToSetupItemHOReqAck.c index 9c3f1b44d..3ea7ed304 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToSetupItemHOReqAck.c +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToSetupItemHOReqAck.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABFailedToSetupItemHOReqAck_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABFailedToSetupItemHOReqAck, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P3, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P3, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedToSetupItemHOReqAck.h b/lib/asn1c/s1ap/S1AP_E-RABFailedToSetupItemHOReqAck.h index cf49b44ba..13e43019b 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedToSetupItemHOReqAck.h +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedToSetupItemHOReqAck.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedtoSetupListHOReqAck.c b/lib/asn1c/s1ap/S1AP_E-RABFailedtoSetupListHOReqAck.c index 044011e87..6656b5f4c 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedtoSetupListHOReqAck.c +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedtoSetupListHOReqAck.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABFailedtoSetupListHOReqAck = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABFailedtoSetupListHOReqAck_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P3_7, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P3_7, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P3_specs_7 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P3_specs_7 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABFailedtoSetupListHOReqAck.h b/lib/asn1c/s1ap/S1AP_E-RABFailedtoSetupListHOReqAck.h index 3babb3493..b5ab85971 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABFailedtoSetupListHOReqAck.h +++ b/lib/asn1c/s1ap/S1AP_E-RABFailedtoSetupListHOReqAck.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABInformationList.c b/lib/asn1c/s1ap/S1AP_E-RABInformationList.c index 9cfb58259..a8f917ed2 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABInformationList.c +++ b/lib/asn1c/s1ap/S1AP_E-RABInformationList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABInformationList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABInformationList.h b/lib/asn1c/s1ap/S1AP_E-RABInformationList.h index 6b14826fe..6b4960849 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABInformationList.h +++ b/lib/asn1c/s1ap/S1AP_E-RABInformationList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABInformationListItem.c b/lib/asn1c/s1ap/S1AP_E-RABInformationListItem.c index 58385d806..19cefd2a8 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABInformationListItem.c +++ b/lib/asn1c/s1ap/S1AP_E-RABInformationListItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABInformationListItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABInformationListItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P65, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P65, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABInformationListItem.h b/lib/asn1c/s1ap/S1AP_E-RABInformationListItem.h index 270ee8e12..ea993e5d0 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABInformationListItem.h +++ b/lib/asn1c/s1ap/S1AP_E-RABInformationListItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABItem.c b/lib/asn1c/s1ap/S1AP_E-RABItem.c index 1cebfaea0..ad74bae0b 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABItem.c +++ b/lib/asn1c/s1ap/S1AP_E-RABItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P66, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P66, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABItem.h b/lib/asn1c/s1ap/S1AP_E-RABItem.h index 77c026e09..91764ee41 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABItem.h +++ b/lib/asn1c/s1ap/S1AP_E-RABItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABLevelQoSParameters.c b/lib/asn1c/s1ap/S1AP_E-RABLevelQoSParameters.c index 8502eac98..65059ce53 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABLevelQoSParameters.c +++ b/lib/asn1c/s1ap/S1AP_E-RABLevelQoSParameters.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABLevelQoSParameters_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABLevelQoSParameters, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P67, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P67, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABLevelQoSParameters.h b/lib/asn1c/s1ap/S1AP_E-RABLevelQoSParameters.h index 2b694b768..1c97c49ec 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABLevelQoSParameters.h +++ b/lib/asn1c/s1ap/S1AP_E-RABLevelQoSParameters.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABList.c b/lib/asn1c/s1ap/S1AP_E-RABList.c index 35c8efed1..0eaba862d 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABList.c +++ b/lib/asn1c/s1ap/S1AP_E-RABList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABList.h b/lib/asn1c/s1ap/S1AP_E-RABList.h index ae9b321a1..9f83fe8e6 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABList.h +++ b/lib/asn1c/s1ap/S1AP_E-RABList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABModificationConfirm.c b/lib/asn1c/s1ap/S1AP_E-RABModificationConfirm.c index 4eb7da100..55f1eb553 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModificationConfirm.c +++ b/lib/asn1c/s1ap/S1AP_E-RABModificationConfirm.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABModificationConfirm_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABModificationConfirm, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P81, + &asn_DEF_S1AP_ProtocolIE_Container_7847P81, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABModificationConfirm.h b/lib/asn1c/s1ap/S1AP_E-RABModificationConfirm.h index eb922fadd..a172e0a4d 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModificationConfirm.h +++ b/lib/asn1c/s1ap/S1AP_E-RABModificationConfirm.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABModificationConfirm */ typedef struct S1AP_E_RABModificationConfirm { - S1AP_ProtocolIE_Container_7838P81_t protocolIEs; + S1AP_ProtocolIE_Container_7847P81_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABModificationIndication.c b/lib/asn1c/s1ap/S1AP_E-RABModificationIndication.c index 273aaf71f..15881b2c8 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModificationIndication.c +++ b/lib/asn1c/s1ap/S1AP_E-RABModificationIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABModificationIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABModificationIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P80, + &asn_DEF_S1AP_ProtocolIE_Container_7847P80, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABModificationIndication.h b/lib/asn1c/s1ap/S1AP_E-RABModificationIndication.h index fd4ca29e6..caf95a70c 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModificationIndication.h +++ b/lib/asn1c/s1ap/S1AP_E-RABModificationIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABModificationIndication */ typedef struct S1AP_E_RABModificationIndication { - S1AP_ProtocolIE_Container_7838P80_t protocolIEs; + S1AP_ProtocolIE_Container_7847P80_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModConf.c b/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModConf.c index c58e8ab3d..e9d0389b6 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModConf.c +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModConf.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABModifyItemBearerModConf_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABModifyItemBearerModConf, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P17, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P17, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModConf.h b/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModConf.h index fe94a2c04..20a0377f9 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModConf.h +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModConf.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModRes.c b/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModRes.c index 1bd302bd2..3d2ed1beb 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModRes.c +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABModifyItemBearerModRes_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABModifyItemBearerModRes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P9, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P9, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModRes.h b/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModRes.h index 74fa8226e..bf7b25d40 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModRes.h +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyItemBearerModRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModConf.c b/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModConf.c index a3cf8aae6..5c013764a 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModConf.c +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModConf.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABModifyListBearerModConf_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModConf.h b/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModConf.h index 3024f5112..aebfe57c8 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModConf.h +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModConf.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModRes.c b/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModRes.c index dccb22df6..853f8d0d3 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModRes.c +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABModifyListBearerModRes_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModRes.h b/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModRes.h index d1472fe12..2d5267d33 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModRes.h +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyListBearerModRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyRequest.c b/lib/asn1c/s1ap/S1AP_E-RABModifyRequest.c index b3b95d03b..3c907b928 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyRequest.c +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABModifyRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABModifyRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P17, + &asn_DEF_S1AP_ProtocolIE_Container_7847P17, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyRequest.h b/lib/asn1c/s1ap/S1AP_E-RABModifyRequest.h index 242dd318b..7617ed042 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyRequest.h +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABModifyRequest */ typedef struct S1AP_E_RABModifyRequest { - S1AP_ProtocolIE_Container_7838P17_t protocolIEs; + S1AP_ProtocolIE_Container_7847P17_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyResponse.c b/lib/asn1c/s1ap/S1AP_E-RABModifyResponse.c index 23889bb76..8767a8b0e 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyResponse.c +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABModifyResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABModifyResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P18, + &asn_DEF_S1AP_ProtocolIE_Container_7847P18, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABModifyResponse.h b/lib/asn1c/s1ap/S1AP_E-RABModifyResponse.h index 9b79eb488..06d7c78ba 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABModifyResponse.h +++ b/lib/asn1c/s1ap/S1AP_E-RABModifyResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABModifyResponse */ typedef struct S1AP_E_RABModifyResponse { - S1AP_ProtocolIE_Container_7838P18_t protocolIEs; + S1AP_ProtocolIE_Container_7847P18_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedItemBearerModInd.c b/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedItemBearerModInd.c index 211740210..897243887 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedItemBearerModInd.c +++ b/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedItemBearerModInd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABNotToBeModifiedItemBearerModInd_1[] = { ATF_POINTER, 1, offsetof(struct S1AP_E_RABNotToBeModifiedItemBearerModInd, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P15, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P15, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedItemBearerModInd.h b/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedItemBearerModInd.h index b73f69c77..8e6b1b47d 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedItemBearerModInd.h +++ b/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedItemBearerModInd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedListBearerModInd.c b/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedListBearerModInd.c index 4f4c903ca..5a78dd61a 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedListBearerModInd.c +++ b/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedListBearerModInd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABNotToBeModifiedListBearerModInd = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABNotToBeModifiedListBearerModInd_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P7_15, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P7_15, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P7_specs_15 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P7_specs_15 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedListBearerModInd.h b/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedListBearerModInd.h index d819f7362..977ca4f6f 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedListBearerModInd.h +++ b/lib/asn1c/s1ap/S1AP_E-RABNotToBeModifiedListBearerModInd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseCommand.c b/lib/asn1c/s1ap/S1AP_E-RABReleaseCommand.c index a3523028e..9ea9303c3 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseCommand.c +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseCommand.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABReleaseCommand_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABReleaseCommand, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P19, + &asn_DEF_S1AP_ProtocolIE_Container_7847P19, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseCommand.h b/lib/asn1c/s1ap/S1AP_E-RABReleaseCommand.h index f39646699..9a08d269d 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseCommand.h +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseCommand.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABReleaseCommand */ typedef struct S1AP_E_RABReleaseCommand { - S1AP_ProtocolIE_Container_7838P19_t protocolIEs; + S1AP_ProtocolIE_Container_7847P19_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseIndication.c b/lib/asn1c/s1ap/S1AP_E-RABReleaseIndication.c index be88506ea..f30d05ea8 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseIndication.c +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABReleaseIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABReleaseIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P21, + &asn_DEF_S1AP_ProtocolIE_Container_7847P21, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseIndication.h b/lib/asn1c/s1ap/S1AP_E-RABReleaseIndication.h index 0da8dac88..faf55b55c 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseIndication.h +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABReleaseIndication */ typedef struct S1AP_E_RABReleaseIndication { - S1AP_ProtocolIE_Container_7838P21_t protocolIEs; + S1AP_ProtocolIE_Container_7847P21_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseItemBearerRelComp.c b/lib/asn1c/s1ap/S1AP_E-RABReleaseItemBearerRelComp.c index dfa78e0a6..0d7a68f63 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseItemBearerRelComp.c +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseItemBearerRelComp.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABReleaseItemBearerRelComp_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABReleaseItemBearerRelComp, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P10, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P10, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseItemBearerRelComp.h b/lib/asn1c/s1ap/S1AP_E-RABReleaseItemBearerRelComp.h index daf3ca618..8e9b29934 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseItemBearerRelComp.h +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseItemBearerRelComp.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseListBearerRelComp.c b/lib/asn1c/s1ap/S1AP_E-RABReleaseListBearerRelComp.c index 11fe59cb7..266383eee 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseListBearerRelComp.c +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseListBearerRelComp.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABReleaseListBearerRelComp_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseListBearerRelComp.h b/lib/asn1c/s1ap/S1AP_E-RABReleaseListBearerRelComp.h index fa381b6c8..016c6c34b 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseListBearerRelComp.h +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseListBearerRelComp.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseResponse.c b/lib/asn1c/s1ap/S1AP_E-RABReleaseResponse.c index 08d4f3a5a..fb2bbd573 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseResponse.c +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABReleaseResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABReleaseResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P20, + &asn_DEF_S1AP_ProtocolIE_Container_7847P20, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABReleaseResponse.h b/lib/asn1c/s1ap/S1AP_E-RABReleaseResponse.h index 72faa0435..47bcbe82e 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABReleaseResponse.h +++ b/lib/asn1c/s1ap/S1AP_E-RABReleaseResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABReleaseResponse */ typedef struct S1AP_E_RABReleaseResponse { - S1AP_ProtocolIE_Container_7838P20_t protocolIEs; + S1AP_ProtocolIE_Container_7847P20_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupItemBearerSURes.c b/lib/asn1c/s1ap/S1AP_E-RABSetupItemBearerSURes.c index 2d2bc1a3e..b43aac1a2 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupItemBearerSURes.c +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupItemBearerSURes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABSetupItemBearerSURes_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABSetupItemBearerSURes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P7, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P7, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupItemBearerSURes.h b/lib/asn1c/s1ap/S1AP_E-RABSetupItemBearerSURes.h index 11f7706e8..39c242d66 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupItemBearerSURes.h +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupItemBearerSURes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupItemCtxtSURes.c b/lib/asn1c/s1ap/S1AP_E-RABSetupItemCtxtSURes.c index 65fcb57d3..32ac9b452 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupItemCtxtSURes.c +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupItemCtxtSURes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABSetupItemCtxtSURes_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABSetupItemCtxtSURes, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P12, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P12, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupItemCtxtSURes.h b/lib/asn1c/s1ap/S1AP_E-RABSetupItemCtxtSURes.h index 9c6c31243..ba42e2666 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupItemCtxtSURes.h +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupItemCtxtSURes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupListBearerSURes.c b/lib/asn1c/s1ap/S1AP_E-RABSetupListBearerSURes.c index c3ee130af..632910e09 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupListBearerSURes.c +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupListBearerSURes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABSetupListBearerSURes_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupListBearerSURes.h b/lib/asn1c/s1ap/S1AP_E-RABSetupListBearerSURes.h index 231666ecf..963e100c2 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupListBearerSURes.h +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupListBearerSURes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupListCtxtSURes.c b/lib/asn1c/s1ap/S1AP_E-RABSetupListCtxtSURes.c index 1ba234fd9..255baae12 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupListCtxtSURes.c +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupListCtxtSURes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABSetupListCtxtSURes_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupListCtxtSURes.h b/lib/asn1c/s1ap/S1AP_E-RABSetupListCtxtSURes.h index dd2e67f19..03efb3289 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupListCtxtSURes.h +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupListCtxtSURes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupRequest.c b/lib/asn1c/s1ap/S1AP_E-RABSetupRequest.c index 06d188c43..af99da16a 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupRequest.c +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABSetupRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABSetupRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P15, + &asn_DEF_S1AP_ProtocolIE_Container_7847P15, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupRequest.h b/lib/asn1c/s1ap/S1AP_E-RABSetupRequest.h index e5be5804f..29741f5ab 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupRequest.h +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABSetupRequest */ typedef struct S1AP_E_RABSetupRequest { - S1AP_ProtocolIE_Container_7838P15_t protocolIEs; + S1AP_ProtocolIE_Container_7847P15_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupResponse.c b/lib/asn1c/s1ap/S1AP_E-RABSetupResponse.c index 88efcd183..0626b2c14 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupResponse.c +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABSetupResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_E_RABSetupResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P16, + &asn_DEF_S1AP_ProtocolIE_Container_7847P16, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABSetupResponse.h b/lib/asn1c/s1ap/S1AP_E-RABSetupResponse.h index 92ce8abf9..edaa9bc04 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSetupResponse.h +++ b/lib/asn1c/s1ap/S1AP_E-RABSetupResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_E-RABSetupResponse */ typedef struct S1AP_E_RABSetupResponse { - S1AP_ProtocolIE_Container_7838P16_t protocolIEs; + S1AP_ProtocolIE_Container_7847P16_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_E-RABSubjecttoDataForwardingList.c b/lib/asn1c/s1ap/S1AP_E-RABSubjecttoDataForwardingList.c index 19ffcc908..bf76f9e20 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSubjecttoDataForwardingList.c +++ b/lib/asn1c/s1ap/S1AP_E-RABSubjecttoDataForwardingList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABSubjecttoDataForwardingList = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABSubjecttoDataForwardingList_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P0_1, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P0_1, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P0_specs_1 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P0_specs_1 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABSubjecttoDataForwardingList.h b/lib/asn1c/s1ap/S1AP_E-RABSubjecttoDataForwardingList.h index 1d6d6eb5e..e3334b310 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABSubjecttoDataForwardingList.h +++ b/lib/asn1c/s1ap/S1AP_E-RABSubjecttoDataForwardingList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModInd.c b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModInd.c index 781451b72..fd93c27a3 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModInd.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModInd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeModifiedItemBearerModInd_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABToBeModifiedItemBearerModInd, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P14, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P14, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModInd.h b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModInd.h index 817498fc3..6175dbc22 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModInd.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModInd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModReq.c b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModReq.c index 76dbad412..8f40965a8 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeModifiedItemBearerModReq_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABToBeModifiedItemBearerModReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P8, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P8, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModReq.h b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModReq.h index ba3d46a14..70e46f550 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedItemBearerModReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModInd.c b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModInd.c index 500696ac2..8d65cc14c 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModInd.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModInd.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABToBeModifiedListBearerModInd = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABToBeModifiedListBearerModInd_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P6_13, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P6_13, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P6_specs_13 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P6_specs_13 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModInd.h b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModInd.h index 46de84a89..91afea755 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModInd.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModInd.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModReq.c b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModReq.c index b1bc9c774..9dc9045a7 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeModifiedListBearerModReq_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModReq.h b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModReq.h index 9889e4471..a36b5cae7 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeModifiedListBearerModReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemBearerSUReq.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemBearerSUReq.c index cc1a8f3b1..0f0d5fe78 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemBearerSUReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemBearerSUReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -97,7 +97,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeSetupItemBearerSUReq_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABToBeSetupItemBearerSUReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P6, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P6, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemBearerSUReq.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemBearerSUReq.h index f50f11e0a..4859ebe81 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemBearerSUReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemBearerSUReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemCtxtSUReq.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemCtxtSUReq.c index c7dba4e81..ec359d1a6 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemCtxtSUReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemCtxtSUReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -97,7 +97,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeSetupItemCtxtSUReq_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABToBeSetupItemCtxtSUReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P11, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P11, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemCtxtSUReq.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemCtxtSUReq.h index 797c82047..616565fe8 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemCtxtSUReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemCtxtSUReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemHOReq.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemHOReq.c index 315788fc6..37aed1753 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemHOReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemHOReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeSetupItemHOReq_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABToBeSetupItemHOReq, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P1, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P1, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemHOReq.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemHOReq.h index e26835f5c..3afd2e93a 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemHOReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupItemHOReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListBearerSUReq.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListBearerSUReq.c index 14c9a1e42..54e114a5f 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListBearerSUReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListBearerSUReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeSetupListBearerSUReq_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListBearerSUReq.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListBearerSUReq.h index 1dd89b7a2..efe8dc114 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListBearerSUReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListBearerSUReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListCtxtSUReq.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListCtxtSUReq.c index 5e33b1494..8d2d0b1ee 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListCtxtSUReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListCtxtSUReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeSetupListCtxtSUReq_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListCtxtSUReq.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListCtxtSUReq.h index af4f28d35..e7c20479f 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListCtxtSUReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListCtxtSUReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListHOReq.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListHOReq.c index 9aad8eadb..996822365 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListHOReq.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListHOReq.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABToBeSetupListHOReq = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABToBeSetupListHOReq_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P1_3, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P1_3, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P1_specs_3 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P1_specs_3 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListHOReq.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListHOReq.h index 6ea425291..9e96b8742 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListHOReq.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSetupListHOReq.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLItem.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLItem.c index 6238f454a..485ff4bf4 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLItem.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeSwitchedDLItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABToBeSwitchedDLItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P4, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P4, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLItem.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLItem.h index d7921bc22..78ce011fd 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLItem.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLList.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLList.c index f9f6ba7a5..303800393 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLList.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABToBeSwitchedDLList = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABToBeSwitchedDLList_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P4_9, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P4_9, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P4_specs_9 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P4_specs_9 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLList.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLList.h index 9d35a9975..18e0145c0 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLList.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedDLList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULItem.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULItem.c index c98066783..640e8beae 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULItem.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABToBeSwitchedULItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABToBeSwitchedULItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P5, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P5, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULItem.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULItem.h index e92d18e0f..76d7edd0f 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULItem.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULList.c b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULList.c index 69e1c3144..3a096b7e9 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULList.c +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -66,8 +66,8 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_E_RABToBeSwitchedULList = { #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ S1AP_E_RABToBeSwitchedULList_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P5_11, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P5_11, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P5_specs_11 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P5_specs_11 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULList.h b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULList.h index 46ec89380..c50b58ffa 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULList.h +++ b/lib/asn1c/s1ap/S1AP_E-RABToBeSwitchedULList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABUsageReportItem.c b/lib/asn1c/s1ap/S1AP_E-RABUsageReportItem.c index 2d1f2c335..21e65ea6e 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABUsageReportItem.c +++ b/lib/asn1c/s1ap/S1AP_E-RABUsageReportItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -222,7 +222,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_E_RABUsageReportItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_E_RABUsageReportItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P68, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P68, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABUsageReportItem.h b/lib/asn1c/s1ap/S1AP_E-RABUsageReportItem.h index c984441b2..e1b84d5a0 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABUsageReportItem.h +++ b/lib/asn1c/s1ap/S1AP_E-RABUsageReportItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-RABUsageReportList.c b/lib/asn1c/s1ap/S1AP_E-RABUsageReportList.c index bad3ea8cc..bc881f6ad 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABUsageReportList.c +++ b/lib/asn1c/s1ap/S1AP_E-RABUsageReportList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ asn_TYPE_member_t asn_MBR_S1AP_E_RABUsageReportList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_E-RABUsageReportList.h b/lib/asn1c/s1ap/S1AP_E-RABUsageReportList.h index 4971d5bce..31e60845e 100644 --- a/lib/asn1c/s1ap/S1AP_E-RABUsageReportList.h +++ b/lib/asn1c/s1ap/S1AP_E-RABUsageReportList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-UTRAN-Trace-ID.c b/lib/asn1c/s1ap/S1AP_E-UTRAN-Trace-ID.c index 83ffd9e68..ac1c764b3 100644 --- a/lib/asn1c/s1ap/S1AP_E-UTRAN-Trace-ID.c +++ b/lib/asn1c/s1ap/S1AP_E-UTRAN-Trace-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_E-UTRAN-Trace-ID.h b/lib/asn1c/s1ap/S1AP_E-UTRAN-Trace-ID.h index 0a5a51ba0..d9f53ae87 100644 --- a/lib/asn1c/s1ap/S1AP_E-UTRAN-Trace-ID.h +++ b/lib/asn1c/s1ap/S1AP_E-UTRAN-Trace-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EARFCN.c b/lib/asn1c/s1ap/S1AP_EARFCN.c index cdf6cbe95..23faac610 100644 --- a/lib/asn1c/s1ap/S1AP_EARFCN.c +++ b/lib/asn1c/s1ap/S1AP_EARFCN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EARFCN.h b/lib/asn1c/s1ap/S1AP_EARFCN.h index de8f58324..17022e714 100644 --- a/lib/asn1c/s1ap/S1AP_EARFCN.h +++ b/lib/asn1c/s1ap/S1AP_EARFCN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ECGI-List.c b/lib/asn1c/s1ap/S1AP_ECGI-List.c index b4b16cd58..e59a62444 100644 --- a/lib/asn1c/s1ap/S1AP_ECGI-List.c +++ b/lib/asn1c/s1ap/S1AP_ECGI-List.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ECGI-List.h b/lib/asn1c/s1ap/S1AP_ECGI-List.h index 5956a3ded..c53fa2347 100644 --- a/lib/asn1c/s1ap/S1AP_ECGI-List.h +++ b/lib/asn1c/s1ap/S1AP_ECGI-List.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ECGIList.c b/lib/asn1c/s1ap/S1AP_ECGIList.c index 3a1327fb3..c9b2921d3 100644 --- a/lib/asn1c/s1ap/S1AP_ECGIList.c +++ b/lib/asn1c/s1ap/S1AP_ECGIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ECGIList.h b/lib/asn1c/s1ap/S1AP_ECGIList.h index cec553204..0c3604e80 100644 --- a/lib/asn1c/s1ap/S1AP_ECGIList.h +++ b/lib/asn1c/s1ap/S1AP_ECGIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ECGIListForRestart.c b/lib/asn1c/s1ap/S1AP_ECGIListForRestart.c index bf69af74a..53d6e209a 100644 --- a/lib/asn1c/s1ap/S1AP_ECGIListForRestart.c +++ b/lib/asn1c/s1ap/S1AP_ECGIListForRestart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ECGIListForRestart.h b/lib/asn1c/s1ap/S1AP_ECGIListForRestart.h index b194e0c83..18d190850 100644 --- a/lib/asn1c/s1ap/S1AP_ECGIListForRestart.h +++ b/lib/asn1c/s1ap/S1AP_ECGIListForRestart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EDT-Session.c b/lib/asn1c/s1ap/S1AP_EDT-Session.c index 3d93e8ae1..b809c498b 100644 --- a/lib/asn1c/s1ap/S1AP_EDT-Session.c +++ b/lib/asn1c/s1ap/S1AP_EDT-Session.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EDT-Session.h b/lib/asn1c/s1ap/S1AP_EDT-Session.h index 781034914..d16423db9 100644 --- a/lib/asn1c/s1ap/S1AP_EDT-Session.h +++ b/lib/asn1c/s1ap/S1AP_EDT-Session.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EN-DCSONConfigurationTransfer.c b/lib/asn1c/s1ap/S1AP_EN-DCSONConfigurationTransfer.c index 3df3a7d0b..07dcc1150 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCSONConfigurationTransfer.c +++ b/lib/asn1c/s1ap/S1AP_EN-DCSONConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_EN_DCSONConfigurationTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_EN_DCSONConfigurationTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P60, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P60, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_EN-DCSONConfigurationTransfer.h b/lib/asn1c/s1ap/S1AP_EN-DCSONConfigurationTransfer.h index 0227ed718..c4004742c 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCSONConfigurationTransfer.h +++ b/lib/asn1c/s1ap/S1AP_EN-DCSONConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EN-DCSONTransferType.c b/lib/asn1c/s1ap/S1AP_EN-DCSONTransferType.c index 5586e02f0..395988c40 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCSONTransferType.c +++ b/lib/asn1c/s1ap/S1AP_EN-DCSONTransferType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EN-DCSONTransferType.h b/lib/asn1c/s1ap/S1AP_EN-DCSONTransferType.h index 6b04c657f..510bfd8d7 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCSONTransferType.h +++ b/lib/asn1c/s1ap/S1AP_EN-DCSONTransferType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EN-DCSONeNBIdentification.c b/lib/asn1c/s1ap/S1AP_EN-DCSONeNBIdentification.c index ee7777262..266e36c52 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCSONeNBIdentification.c +++ b/lib/asn1c/s1ap/S1AP_EN-DCSONeNBIdentification.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_EN_DCSONeNBIdentification_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_EN_DCSONeNBIdentification, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P63, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P63, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_EN-DCSONeNBIdentification.h b/lib/asn1c/s1ap/S1AP_EN-DCSONeNBIdentification.h index 357a882ac..308aa5049 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCSONeNBIdentification.h +++ b/lib/asn1c/s1ap/S1AP_EN-DCSONeNBIdentification.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EN-DCSONengNBIdentification.c b/lib/asn1c/s1ap/S1AP_EN-DCSONengNBIdentification.c index f19bcd19f..1a9a57fc1 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCSONengNBIdentification.c +++ b/lib/asn1c/s1ap/S1AP_EN-DCSONengNBIdentification.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_EN_DCSONengNBIdentification_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_EN_DCSONengNBIdentification, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P64, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P64, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_EN-DCSONengNBIdentification.h b/lib/asn1c/s1ap/S1AP_EN-DCSONengNBIdentification.h index 3ddca930c..03db074e5 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCSONengNBIdentification.h +++ b/lib/asn1c/s1ap/S1AP_EN-DCSONengNBIdentification.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeReply.c b/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeReply.c index 879d7a7a3..9b1b0ed35 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeReply.c +++ b/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeReply.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_EN_DCTransferTypeReply_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_EN_DCTransferTypeReply, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P62, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P62, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeReply.h b/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeReply.h index 7e339ee96..49368078a 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeReply.h +++ b/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeReply.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeRequest.c b/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeRequest.c index 91a5e1318..edb89aa4c 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeRequest.c +++ b/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -100,7 +100,7 @@ asn_TYPE_member_t asn_MBR_S1AP_EN_DCTransferTypeRequest_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_EN_DCTransferTypeRequest, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P61, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P61, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeRequest.h b/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeRequest.h index a07939a5a..3ff0f9fbe 100644 --- a/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeRequest.h +++ b/lib/asn1c/s1ap/S1AP_EN-DCTransferTypeRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENB-EarlyStatusTransfer-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_ENB-EarlyStatusTransfer-TransparentContainer.c index 9113b87d3..97e8e1cb3 100644 --- a/lib/asn1c/s1ap/S1AP_ENB-EarlyStatusTransfer-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_ENB-EarlyStatusTransfer-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_ENB_EarlyStatusTransfer_TransparentContain { ATF_POINTER, 1, offsetof(struct S1AP_ENB_EarlyStatusTransfer_TransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P55, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P55, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENB-EarlyStatusTransfer-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_ENB-EarlyStatusTransfer-TransparentContainer.h index 673b0f31c..15147ec21 100644 --- a/lib/asn1c/s1ap/S1AP_ENB-EarlyStatusTransfer-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_ENB-EarlyStatusTransfer-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENB-ID.c b/lib/asn1c/s1ap/S1AP_ENB-ID.c index bc364ecd2..894c5df26 100644 --- a/lib/asn1c/s1ap/S1AP_ENB-ID.c +++ b/lib/asn1c/s1ap/S1AP_ENB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENB-ID.h b/lib/asn1c/s1ap/S1AP_ENB-ID.h index e2e357a09..94bed568b 100644 --- a/lib/asn1c/s1ap/S1AP_ENB-ID.h +++ b/lib/asn1c/s1ap/S1AP_ENB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENB-StatusTransfer-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_ENB-StatusTransfer-TransparentContainer.c index 4854dbbab..9c5bdc125 100644 --- a/lib/asn1c/s1ap/S1AP_ENB-StatusTransfer-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_ENB-StatusTransfer-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_ENB_StatusTransfer_TransparentContainer_1[ { ATF_POINTER, 1, offsetof(struct S1AP_ENB_StatusTransfer_TransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P59, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P59, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENB-StatusTransfer-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_ENB-StatusTransfer-TransparentContainer.h index c880f6e90..dbe1244a8 100644 --- a/lib/asn1c/s1ap/S1AP_ENB-StatusTransfer-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_ENB-StatusTransfer-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENB-UE-S1AP-ID.c b/lib/asn1c/s1ap/S1AP_ENB-UE-S1AP-ID.c index 8f5820177..ab5535a7e 100644 --- a/lib/asn1c/s1ap/S1AP_ENB-UE-S1AP-ID.c +++ b/lib/asn1c/s1ap/S1AP_ENB-UE-S1AP-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENB-UE-S1AP-ID.h b/lib/asn1c/s1ap/S1AP_ENB-UE-S1AP-ID.h index 08e08269e..2fdd3a0ad 100644 --- a/lib/asn1c/s1ap/S1AP_ENB-UE-S1AP-ID.h +++ b/lib/asn1c/s1ap/S1AP_ENB-UE-S1AP-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBCPRelocationIndication.c b/lib/asn1c/s1ap/S1AP_ENBCPRelocationIndication.c index 27243c0ca..125ba8555 100644 --- a/lib/asn1c/s1ap/S1AP_ENBCPRelocationIndication.c +++ b/lib/asn1c/s1ap/S1AP_ENBCPRelocationIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBCPRelocationIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ENBCPRelocationIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P92, + &asn_DEF_S1AP_ProtocolIE_Container_7847P92, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBCPRelocationIndication.h b/lib/asn1c/s1ap/S1AP_ENBCPRelocationIndication.h index dc2141f77..37ab8e411 100644 --- a/lib/asn1c/s1ap/S1AP_ENBCPRelocationIndication.h +++ b/lib/asn1c/s1ap/S1AP_ENBCPRelocationIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ENBCPRelocationIndication */ typedef struct S1AP_ENBCPRelocationIndication { - S1AP_ProtocolIE_Container_7838P92_t protocolIEs; + S1AP_ProtocolIE_Container_7847P92_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ENBConfigurationTransfer.c b/lib/asn1c/s1ap/S1AP_ENBConfigurationTransfer.c index 5fed21e19..13e968553 100644 --- a/lib/asn1c/s1ap/S1AP_ENBConfigurationTransfer.c +++ b/lib/asn1c/s1ap/S1AP_ENBConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBConfigurationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ENBConfigurationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P70, + &asn_DEF_S1AP_ProtocolIE_Container_7847P70, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBConfigurationTransfer.h b/lib/asn1c/s1ap/S1AP_ENBConfigurationTransfer.h index 95ea3e163..639ea3803 100644 --- a/lib/asn1c/s1ap/S1AP_ENBConfigurationTransfer.h +++ b/lib/asn1c/s1ap/S1AP_ENBConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ENBConfigurationTransfer */ typedef struct S1AP_ENBConfigurationTransfer { - S1AP_ProtocolIE_Container_7838P70_t protocolIEs; + S1AP_ProtocolIE_Container_7847P70_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdate.c b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdate.c index 327fd9ae9..ff8891764 100644 --- a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdate.c +++ b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBConfigurationUpdate_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ENBConfigurationUpdate, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P46, + &asn_DEF_S1AP_ProtocolIE_Container_7847P46, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdate.h b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdate.h index 7151a50fe..12f001902 100644 --- a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdate.h +++ b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ENBConfigurationUpdate */ typedef struct S1AP_ENBConfigurationUpdate { - S1AP_ProtocolIE_Container_7838P46_t protocolIEs; + S1AP_ProtocolIE_Container_7847P46_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateAcknowledge.c b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateAcknowledge.c index 0362a221e..b9d8ae8ac 100644 --- a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateAcknowledge.c +++ b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBConfigurationUpdateAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ENBConfigurationUpdateAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P47, + &asn_DEF_S1AP_ProtocolIE_Container_7847P47, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateAcknowledge.h b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateAcknowledge.h index 159b258ed..0f1168d71 100644 --- a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateAcknowledge.h +++ b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ENBConfigurationUpdateAcknowledge */ typedef struct S1AP_ENBConfigurationUpdateAcknowledge { - S1AP_ProtocolIE_Container_7838P47_t protocolIEs; + S1AP_ProtocolIE_Container_7847P47_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateFailure.c b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateFailure.c index 6aebeb14e..dc6f664b8 100644 --- a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateFailure.c +++ b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBConfigurationUpdateFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ENBConfigurationUpdateFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P48, + &asn_DEF_S1AP_ProtocolIE_Container_7847P48, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateFailure.h b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateFailure.h index 540cf4a8f..26f9ac67b 100644 --- a/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateFailure.h +++ b/lib/asn1c/s1ap/S1AP_ENBConfigurationUpdateFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ENBConfigurationUpdateFailure */ typedef struct S1AP_ENBConfigurationUpdateFailure { - S1AP_ProtocolIE_Container_7838P48_t protocolIEs; + S1AP_ProtocolIE_Container_7847P48_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ENBDirectInformationTransfer.c b/lib/asn1c/s1ap/S1AP_ENBDirectInformationTransfer.c index f2746b1c2..ae988db29 100644 --- a/lib/asn1c/s1ap/S1AP_ENBDirectInformationTransfer.c +++ b/lib/asn1c/s1ap/S1AP_ENBDirectInformationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBDirectInformationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ENBDirectInformationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P68, + &asn_DEF_S1AP_ProtocolIE_Container_7847P68, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBDirectInformationTransfer.h b/lib/asn1c/s1ap/S1AP_ENBDirectInformationTransfer.h index dc0a9e4d8..d96fffe3d 100644 --- a/lib/asn1c/s1ap/S1AP_ENBDirectInformationTransfer.h +++ b/lib/asn1c/s1ap/S1AP_ENBDirectInformationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ENBDirectInformationTransfer */ typedef struct S1AP_ENBDirectInformationTransfer { - S1AP_ProtocolIE_Container_7838P68_t protocolIEs; + S1AP_ProtocolIE_Container_7847P68_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ENBEarlyStatusTransfer.c b/lib/asn1c/s1ap/S1AP_ENBEarlyStatusTransfer.c index 2aff119dc..eb2266247 100644 --- a/lib/asn1c/s1ap/S1AP_ENBEarlyStatusTransfer.c +++ b/lib/asn1c/s1ap/S1AP_ENBEarlyStatusTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBEarlyStatusTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ENBEarlyStatusTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P13, + &asn_DEF_S1AP_ProtocolIE_Container_7847P13, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBEarlyStatusTransfer.h b/lib/asn1c/s1ap/S1AP_ENBEarlyStatusTransfer.h index a722a2270..b1eebca68 100644 --- a/lib/asn1c/s1ap/S1AP_ENBEarlyStatusTransfer.h +++ b/lib/asn1c/s1ap/S1AP_ENBEarlyStatusTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ENBEarlyStatusTransfer */ typedef struct S1AP_ENBEarlyStatusTransfer { - S1AP_ProtocolIE_Container_7838P13_t protocolIEs; + S1AP_ProtocolIE_Container_7847P13_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ENBIndirectX2TransportLayerAddresses.c b/lib/asn1c/s1ap/S1AP_ENBIndirectX2TransportLayerAddresses.c index edd5239b9..8ce9a87b4 100644 --- a/lib/asn1c/s1ap/S1AP_ENBIndirectX2TransportLayerAddresses.c +++ b/lib/asn1c/s1ap/S1AP_ENBIndirectX2TransportLayerAddresses.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBIndirectX2TransportLayerAddresses.h b/lib/asn1c/s1ap/S1AP_ENBIndirectX2TransportLayerAddresses.h index b2d90709a..77ab0a7fe 100644 --- a/lib/asn1c/s1ap/S1AP_ENBIndirectX2TransportLayerAddresses.h +++ b/lib/asn1c/s1ap/S1AP_ENBIndirectX2TransportLayerAddresses.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBStatusTransfer.c b/lib/asn1c/s1ap/S1AP_ENBStatusTransfer.c index ce277799e..d40abd6b4 100644 --- a/lib/asn1c/s1ap/S1AP_ENBStatusTransfer.c +++ b/lib/asn1c/s1ap/S1AP_ENBStatusTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBStatusTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ENBStatusTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P55, + &asn_DEF_S1AP_ProtocolIE_Container_7847P55, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBStatusTransfer.h b/lib/asn1c/s1ap/S1AP_ENBStatusTransfer.h index 11a7c5554..98825150d 100644 --- a/lib/asn1c/s1ap/S1AP_ENBStatusTransfer.h +++ b/lib/asn1c/s1ap/S1AP_ENBStatusTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ENBStatusTransfer */ typedef struct S1AP_ENBStatusTransfer { - S1AP_ProtocolIE_Container_7838P55_t protocolIEs; + S1AP_ProtocolIE_Container_7847P55_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ENBX2ExtTLA.c b/lib/asn1c/s1ap/S1AP_ENBX2ExtTLA.c index 15fa9d603..bcf5ae6ef 100644 --- a/lib/asn1c/s1ap/S1AP_ENBX2ExtTLA.c +++ b/lib/asn1c/s1ap/S1AP_ENBX2ExtTLA.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ENBX2ExtTLA_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ENBX2ExtTLA, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P161, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P161, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ENBX2ExtTLA.h b/lib/asn1c/s1ap/S1AP_ENBX2ExtTLA.h index bc120a042..f6d402722 100644 --- a/lib/asn1c/s1ap/S1AP_ENBX2ExtTLA.h +++ b/lib/asn1c/s1ap/S1AP_ENBX2ExtTLA.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBX2ExtTLAs.c b/lib/asn1c/s1ap/S1AP_ENBX2ExtTLAs.c index 92ceeb123..a9bf5ff14 100644 --- a/lib/asn1c/s1ap/S1AP_ENBX2ExtTLAs.c +++ b/lib/asn1c/s1ap/S1AP_ENBX2ExtTLAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBX2ExtTLAs.h b/lib/asn1c/s1ap/S1AP_ENBX2ExtTLAs.h index 8ada7599d..db8710053 100644 --- a/lib/asn1c/s1ap/S1AP_ENBX2ExtTLAs.h +++ b/lib/asn1c/s1ap/S1AP_ENBX2ExtTLAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBX2GTPTLAs.c b/lib/asn1c/s1ap/S1AP_ENBX2GTPTLAs.c index dd602f701..0615eff36 100644 --- a/lib/asn1c/s1ap/S1AP_ENBX2GTPTLAs.c +++ b/lib/asn1c/s1ap/S1AP_ENBX2GTPTLAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBX2GTPTLAs.h b/lib/asn1c/s1ap/S1AP_ENBX2GTPTLAs.h index 77bbe6526..22af8c467 100644 --- a/lib/asn1c/s1ap/S1AP_ENBX2GTPTLAs.h +++ b/lib/asn1c/s1ap/S1AP_ENBX2GTPTLAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBX2TLAs.c b/lib/asn1c/s1ap/S1AP_ENBX2TLAs.c index 0fcfeb801..95b386fa5 100644 --- a/lib/asn1c/s1ap/S1AP_ENBX2TLAs.c +++ b/lib/asn1c/s1ap/S1AP_ENBX2TLAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBX2TLAs.h b/lib/asn1c/s1ap/S1AP_ENBX2TLAs.h index 04ebea12c..76ba9820a 100644 --- a/lib/asn1c/s1ap/S1AP_ENBX2TLAs.h +++ b/lib/asn1c/s1ap/S1AP_ENBX2TLAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBname.c b/lib/asn1c/s1ap/S1AP_ENBname.c index 747410e19..00d6ebac3 100644 --- a/lib/asn1c/s1ap/S1AP_ENBname.c +++ b/lib/asn1c/s1ap/S1AP_ENBname.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ENBname.h b/lib/asn1c/s1ap/S1AP_ENBname.h index 7c6f786b6..23296a7dc 100644 --- a/lib/asn1c/s1ap/S1AP_ENBname.h +++ b/lib/asn1c/s1ap/S1AP_ENBname.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EPLMNs.c b/lib/asn1c/s1ap/S1AP_EPLMNs.c index bdb49d1b8..a344832f2 100644 --- a/lib/asn1c/s1ap/S1AP_EPLMNs.c +++ b/lib/asn1c/s1ap/S1AP_EPLMNs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EPLMNs.h b/lib/asn1c/s1ap/S1AP_EPLMNs.h index 46f193d05..1c371f7ab 100644 --- a/lib/asn1c/s1ap/S1AP_EPLMNs.h +++ b/lib/asn1c/s1ap/S1AP_EPLMNs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EUTRAN-CGI.c b/lib/asn1c/s1ap/S1AP_EUTRAN-CGI.c index 3c799ab23..9f234b84b 100644 --- a/lib/asn1c/s1ap/S1AP_EUTRAN-CGI.c +++ b/lib/asn1c/s1ap/S1AP_EUTRAN-CGI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_EUTRAN_CGI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_EUTRAN_CGI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P69, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P69, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_EUTRAN-CGI.h b/lib/asn1c/s1ap/S1AP_EUTRAN-CGI.h index b9232ed7c..974a8b0e7 100644 --- a/lib/asn1c/s1ap/S1AP_EUTRAN-CGI.h +++ b/lib/asn1c/s1ap/S1AP_EUTRAN-CGI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EUTRANRoundTripDelayEstimationInfo.c b/lib/asn1c/s1ap/S1AP_EUTRANRoundTripDelayEstimationInfo.c index c9560aea2..471c4bb59 100644 --- a/lib/asn1c/s1ap/S1AP_EUTRANRoundTripDelayEstimationInfo.c +++ b/lib/asn1c/s1ap/S1AP_EUTRANRoundTripDelayEstimationInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EUTRANRoundTripDelayEstimationInfo.h b/lib/asn1c/s1ap/S1AP_EUTRANRoundTripDelayEstimationInfo.h index 0ebe4ad29..2318fe4da 100644 --- a/lib/asn1c/s1ap/S1AP_EUTRANRoundTripDelayEstimationInfo.h +++ b/lib/asn1c/s1ap/S1AP_EUTRANRoundTripDelayEstimationInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast-Item.c b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast-Item.c index 7955afa4e..7b88648a7 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast-Item.c +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_EmergencyAreaID_Broadcast_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_EmergencyAreaID_Broadcast_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P52, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P52, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast-Item.h b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast-Item.h index 2592b5424..3e2c1d2dc 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast-Item.h +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast.c b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast.c index e59b575bb..4f5172a15 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast.c +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast.h b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast.h index 782a75669..e6ecf1e1c 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast.h +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Broadcast.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled-Item.c b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled-Item.c index 03709cc74..103e86dd1 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled-Item.c +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_EmergencyAreaID_Cancelled_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_EmergencyAreaID_Cancelled_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P53, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P53, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled-Item.h b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled-Item.h index 30690c282..0e840a14e 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled-Item.h +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled.c b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled.c index c50aac575..1023aae9e 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled.c +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled.h b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled.h index a093c1dd8..74572860d 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled.h +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID-Cancelled.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID.c b/lib/asn1c/s1ap/S1AP_EmergencyAreaID.c index 73cc6a639..bfeee024d 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID.c +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaID.h b/lib/asn1c/s1ap/S1AP_EmergencyAreaID.h index 711f50b82..fdeda6019 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaID.h +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaIDList.c b/lib/asn1c/s1ap/S1AP_EmergencyAreaIDList.c index 0c57f9bc4..189594522 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaIDList.c +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaIDList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaIDList.h b/lib/asn1c/s1ap/S1AP_EmergencyAreaIDList.h index 316800796..c20c99f32 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaIDList.h +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaIDList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaIDListForRestart.c b/lib/asn1c/s1ap/S1AP_EmergencyAreaIDListForRestart.c index 585cf6086..6b0ae2d01 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaIDListForRestart.c +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaIDListForRestart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyAreaIDListForRestart.h b/lib/asn1c/s1ap/S1AP_EmergencyAreaIDListForRestart.h index a9f7cd450..dd3e87967 100644 --- a/lib/asn1c/s1ap/S1AP_EmergencyAreaIDListForRestart.h +++ b/lib/asn1c/s1ap/S1AP_EmergencyAreaIDListForRestart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EmergencyIndicator.c b/lib/asn1c/s1ap/S1AP_EmergencyIndicator.c new file mode 100644 index 000000000..fbfd98715 --- /dev/null +++ b/lib/asn1c/s1ap/S1AP_EmergencyIndicator.c @@ -0,0 +1,63 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "S1AP-IEs" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#include "S1AP_EmergencyIndicator.h" + +/* + * This type is implemented using NativeEnumerated, + * so here we adjust the DEF accordingly. + */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) +static asn_per_constraints_t asn_PER_type_S1AP_EmergencyIndicator_constr_1 CC_NOTUSED = { + { APC_CONSTRAINED | APC_EXTENSIBLE, 0, 0, 0, 0 } /* (0..0,...) */, + { APC_UNCONSTRAINED, -1, -1, 0, 0 }, + 0, 0 /* No PER value map */ +}; +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ +static const asn_INTEGER_enum_map_t asn_MAP_S1AP_EmergencyIndicator_value2enum_1[] = { + { 0, 4, "true" } + /* This list is extensible */ +}; +static const unsigned int asn_MAP_S1AP_EmergencyIndicator_enum2value_1[] = { + 0 /* true(0) */ + /* This list is extensible */ +}; +static const asn_INTEGER_specifics_t asn_SPC_S1AP_EmergencyIndicator_specs_1 = { + asn_MAP_S1AP_EmergencyIndicator_value2enum_1, /* "tag" => N; sorted by tag */ + asn_MAP_S1AP_EmergencyIndicator_enum2value_1, /* N => "tag"; sorted by N */ + 1, /* Number of elements in the maps */ + 2, /* Extensions before this member */ + 1, /* Strict enumeration */ + 0, /* Native long size */ + 0 +}; +static const ber_tlv_tag_t asn_DEF_S1AP_EmergencyIndicator_tags_1[] = { + (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)) +}; +asn_TYPE_descriptor_t asn_DEF_S1AP_EmergencyIndicator = { + "EmergencyIndicator", + "EmergencyIndicator", + &asn_OP_NativeEnumerated, + asn_DEF_S1AP_EmergencyIndicator_tags_1, + sizeof(asn_DEF_S1AP_EmergencyIndicator_tags_1) + /sizeof(asn_DEF_S1AP_EmergencyIndicator_tags_1[0]), /* 1 */ + asn_DEF_S1AP_EmergencyIndicator_tags_1, /* Same as above */ + sizeof(asn_DEF_S1AP_EmergencyIndicator_tags_1) + /sizeof(asn_DEF_S1AP_EmergencyIndicator_tags_1[0]), /* 1 */ + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + &asn_PER_type_S1AP_EmergencyIndicator_constr_1, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + NativeEnumerated_constraint + }, + 0, 0, /* Defined elsewhere */ + &asn_SPC_S1AP_EmergencyIndicator_specs_1 /* Additional specs */ +}; + diff --git a/lib/asn1c/s1ap/S1AP_EmergencyIndicator.h b/lib/asn1c/s1ap/S1AP_EmergencyIndicator.h new file mode 100644 index 000000000..1570cb6cb --- /dev/null +++ b/lib/asn1c/s1ap/S1AP_EmergencyIndicator.h @@ -0,0 +1,45 @@ +/* + * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) + * From ASN.1 module "S1AP-IEs" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" + * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` + */ + +#ifndef _S1AP_EmergencyIndicator_H_ +#define _S1AP_EmergencyIndicator_H_ + + +#include + +/* Including external dependencies */ +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* Dependencies */ +typedef enum S1AP_EmergencyIndicator { + S1AP_EmergencyIndicator_true = 0 + /* + * Enumeration is extensible + */ +} e_S1AP_EmergencyIndicator; + +/* S1AP_EmergencyIndicator */ +typedef long S1AP_EmergencyIndicator_t; + +/* Implementation */ +extern asn_TYPE_descriptor_t asn_DEF_S1AP_EmergencyIndicator; +asn_struct_free_f S1AP_EmergencyIndicator_free; +asn_struct_print_f S1AP_EmergencyIndicator_print; +asn_constr_check_f S1AP_EmergencyIndicator_constraint; +per_type_decoder_f S1AP_EmergencyIndicator_decode_aper; +per_type_encoder_f S1AP_EmergencyIndicator_encode_aper; + +#ifdef __cplusplus +} +#endif + +#endif /* _S1AP_EmergencyIndicator_H_ */ +#include diff --git a/lib/asn1c/s1ap/S1AP_En-gNB-ID.c b/lib/asn1c/s1ap/S1AP_En-gNB-ID.c index 1b9630cae..f24b4272d 100644 --- a/lib/asn1c/s1ap/S1AP_En-gNB-ID.c +++ b/lib/asn1c/s1ap/S1AP_En-gNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_En-gNB-ID.h b/lib/asn1c/s1ap/S1AP_En-gNB-ID.h index 9b27ec4dc..51a180b81 100644 --- a/lib/asn1c/s1ap/S1AP_En-gNB-ID.h +++ b/lib/asn1c/s1ap/S1AP_En-gNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EncryptionAlgorithms.c b/lib/asn1c/s1ap/S1AP_EncryptionAlgorithms.c index 0912755f2..19ad288f8 100644 --- a/lib/asn1c/s1ap/S1AP_EncryptionAlgorithms.c +++ b/lib/asn1c/s1ap/S1AP_EncryptionAlgorithms.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EncryptionAlgorithms.h b/lib/asn1c/s1ap/S1AP_EncryptionAlgorithms.h index eebb4c6fb..4ff3cb8a6 100644 --- a/lib/asn1c/s1ap/S1AP_EncryptionAlgorithms.h +++ b/lib/asn1c/s1ap/S1AP_EncryptionAlgorithms.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EndIndication.c b/lib/asn1c/s1ap/S1AP_EndIndication.c index 226eced11..efef70e3b 100644 --- a/lib/asn1c/s1ap/S1AP_EndIndication.c +++ b/lib/asn1c/s1ap/S1AP_EndIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EndIndication.h b/lib/asn1c/s1ap/S1AP_EndIndication.h index 8504fe074..15019dbc9 100644 --- a/lib/asn1c/s1ap/S1AP_EndIndication.h +++ b/lib/asn1c/s1ap/S1AP_EndIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EnhancedCoverageRestricted.c b/lib/asn1c/s1ap/S1AP_EnhancedCoverageRestricted.c index bd2db47df..a5d35cbac 100644 --- a/lib/asn1c/s1ap/S1AP_EnhancedCoverageRestricted.c +++ b/lib/asn1c/s1ap/S1AP_EnhancedCoverageRestricted.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EnhancedCoverageRestricted.h b/lib/asn1c/s1ap/S1AP_EnhancedCoverageRestricted.h index f8f056520..191595a7a 100644 --- a/lib/asn1c/s1ap/S1AP_EnhancedCoverageRestricted.h +++ b/lib/asn1c/s1ap/S1AP_EnhancedCoverageRestricted.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ErrorIndication.c b/lib/asn1c/s1ap/S1AP_ErrorIndication.c index d8e94e7d7..227418334 100644 --- a/lib/asn1c/s1ap/S1AP_ErrorIndication.c +++ b/lib/asn1c/s1ap/S1AP_ErrorIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ErrorIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ErrorIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P42, + &asn_DEF_S1AP_ProtocolIE_Container_7847P42, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ErrorIndication.h b/lib/asn1c/s1ap/S1AP_ErrorIndication.h index f09e95ae3..55299be77 100644 --- a/lib/asn1c/s1ap/S1AP_ErrorIndication.h +++ b/lib/asn1c/s1ap/S1AP_ErrorIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ErrorIndication */ typedef struct S1AP_ErrorIndication { - S1AP_ProtocolIE_Container_7838P42_t protocolIEs; + S1AP_ProtocolIE_Container_7847P42_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_Ethernet-Type.c b/lib/asn1c/s1ap/S1AP_Ethernet-Type.c index d931bc233..681115f46 100644 --- a/lib/asn1c/s1ap/S1AP_Ethernet-Type.c +++ b/lib/asn1c/s1ap/S1AP_Ethernet-Type.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Ethernet-Type.h b/lib/asn1c/s1ap/S1AP_Ethernet-Type.h index 8850c54cb..47df7ba5d 100644 --- a/lib/asn1c/s1ap/S1AP_Ethernet-Type.h +++ b/lib/asn1c/s1ap/S1AP_Ethernet-Type.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EventType.c b/lib/asn1c/s1ap/S1AP_EventType.c index 11ec2bd4b..0c30345ca 100644 --- a/lib/asn1c/s1ap/S1AP_EventType.c +++ b/lib/asn1c/s1ap/S1AP_EventType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_EventType.h b/lib/asn1c/s1ap/S1AP_EventType.h index 53043b5e6..256c91f02 100644 --- a/lib/asn1c/s1ap/S1AP_EventType.h +++ b/lib/asn1c/s1ap/S1AP_EventType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExpectedActivityPeriod.c b/lib/asn1c/s1ap/S1AP_ExpectedActivityPeriod.c index 470626452..2f8f99c65 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedActivityPeriod.c +++ b/lib/asn1c/s1ap/S1AP_ExpectedActivityPeriod.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExpectedActivityPeriod.h b/lib/asn1c/s1ap/S1AP_ExpectedActivityPeriod.h index 4edb3b37f..dbbcdef49 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedActivityPeriod.h +++ b/lib/asn1c/s1ap/S1AP_ExpectedActivityPeriod.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExpectedHOInterval.c b/lib/asn1c/s1ap/S1AP_ExpectedHOInterval.c index 6660b790b..4137c1108 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedHOInterval.c +++ b/lib/asn1c/s1ap/S1AP_ExpectedHOInterval.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExpectedHOInterval.h b/lib/asn1c/s1ap/S1AP_ExpectedHOInterval.h index 3dc10e4db..31ebaa313 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedHOInterval.h +++ b/lib/asn1c/s1ap/S1AP_ExpectedHOInterval.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExpectedIdlePeriod.c b/lib/asn1c/s1ap/S1AP_ExpectedIdlePeriod.c index a64271d35..24db61171 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedIdlePeriod.c +++ b/lib/asn1c/s1ap/S1AP_ExpectedIdlePeriod.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExpectedIdlePeriod.h b/lib/asn1c/s1ap/S1AP_ExpectedIdlePeriod.h index 144f21c35..d89224301 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedIdlePeriod.h +++ b/lib/asn1c/s1ap/S1AP_ExpectedIdlePeriod.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExpectedUEActivityBehaviour.c b/lib/asn1c/s1ap/S1AP_ExpectedUEActivityBehaviour.c index 4faec345e..afa627d4b 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedUEActivityBehaviour.c +++ b/lib/asn1c/s1ap/S1AP_ExpectedUEActivityBehaviour.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ExpectedUEActivityBehaviour_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ExpectedUEActivityBehaviour, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P71, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P71, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ExpectedUEActivityBehaviour.h b/lib/asn1c/s1ap/S1AP_ExpectedUEActivityBehaviour.h index dab13e997..cbadfb9ca 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedUEActivityBehaviour.h +++ b/lib/asn1c/s1ap/S1AP_ExpectedUEActivityBehaviour.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExpectedUEBehaviour.c b/lib/asn1c/s1ap/S1AP_ExpectedUEBehaviour.c index 8938c8a75..5c0703c4e 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedUEBehaviour.c +++ b/lib/asn1c/s1ap/S1AP_ExpectedUEBehaviour.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_ExpectedUEBehaviour_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ExpectedUEBehaviour, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P70, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P70, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ExpectedUEBehaviour.h b/lib/asn1c/s1ap/S1AP_ExpectedUEBehaviour.h index 2fe469d37..fd8520bf2 100644 --- a/lib/asn1c/s1ap/S1AP_ExpectedUEBehaviour.h +++ b/lib/asn1c/s1ap/S1AP_ExpectedUEBehaviour.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Extended-UEIdentityIndexValue.c b/lib/asn1c/s1ap/S1AP_Extended-UEIdentityIndexValue.c index 3c2e8b955..2e3d7710c 100644 --- a/lib/asn1c/s1ap/S1AP_Extended-UEIdentityIndexValue.c +++ b/lib/asn1c/s1ap/S1AP_Extended-UEIdentityIndexValue.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Extended-UEIdentityIndexValue.h b/lib/asn1c/s1ap/S1AP_Extended-UEIdentityIndexValue.h index 6572fafe0..b077e7a7d 100644 --- a/lib/asn1c/s1ap/S1AP_Extended-UEIdentityIndexValue.h +++ b/lib/asn1c/s1ap/S1AP_Extended-UEIdentityIndexValue.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExtendedBitRate.c b/lib/asn1c/s1ap/S1AP_ExtendedBitRate.c index 010cc6756..e179bb5b7 100644 --- a/lib/asn1c/s1ap/S1AP_ExtendedBitRate.c +++ b/lib/asn1c/s1ap/S1AP_ExtendedBitRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExtendedBitRate.h b/lib/asn1c/s1ap/S1AP_ExtendedBitRate.h index 4c251d6c5..6ff533239 100644 --- a/lib/asn1c/s1ap/S1AP_ExtendedBitRate.h +++ b/lib/asn1c/s1ap/S1AP_ExtendedBitRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExtendedRNC-ID.c b/lib/asn1c/s1ap/S1AP_ExtendedRNC-ID.c index 85ecdd047..de36f50ef 100644 --- a/lib/asn1c/s1ap/S1AP_ExtendedRNC-ID.c +++ b/lib/asn1c/s1ap/S1AP_ExtendedRNC-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExtendedRNC-ID.h b/lib/asn1c/s1ap/S1AP_ExtendedRNC-ID.h index c5af6a64c..5559b857e 100644 --- a/lib/asn1c/s1ap/S1AP_ExtendedRNC-ID.h +++ b/lib/asn1c/s1ap/S1AP_ExtendedRNC-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExtendedRepetitionPeriod.c b/lib/asn1c/s1ap/S1AP_ExtendedRepetitionPeriod.c index 4375131cf..0d25e1e13 100644 --- a/lib/asn1c/s1ap/S1AP_ExtendedRepetitionPeriod.c +++ b/lib/asn1c/s1ap/S1AP_ExtendedRepetitionPeriod.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ExtendedRepetitionPeriod.h b/lib/asn1c/s1ap/S1AP_ExtendedRepetitionPeriod.h index 7cd31cc2b..ac94ab984 100644 --- a/lib/asn1c/s1ap/S1AP_ExtendedRepetitionPeriod.h +++ b/lib/asn1c/s1ap/S1AP_ExtendedRepetitionPeriod.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_FiveGSTAC.c b/lib/asn1c/s1ap/S1AP_FiveGSTAC.c index 979f90557..8a1982a32 100644 --- a/lib/asn1c/s1ap/S1AP_FiveGSTAC.c +++ b/lib/asn1c/s1ap/S1AP_FiveGSTAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_FiveGSTAC.h b/lib/asn1c/s1ap/S1AP_FiveGSTAC.h index 356985814..81a3c9cf2 100644 --- a/lib/asn1c/s1ap/S1AP_FiveGSTAC.h +++ b/lib/asn1c/s1ap/S1AP_FiveGSTAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_FiveGSTAI.c b/lib/asn1c/s1ap/S1AP_FiveGSTAI.c index 26c27c186..9a6716de3 100644 --- a/lib/asn1c/s1ap/S1AP_FiveGSTAI.c +++ b/lib/asn1c/s1ap/S1AP_FiveGSTAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_FiveGSTAI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_FiveGSTAI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P72, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P72, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_FiveGSTAI.h b/lib/asn1c/s1ap/S1AP_FiveGSTAI.h index 3eabae91b..a8bab42ba 100644 --- a/lib/asn1c/s1ap/S1AP_FiveGSTAI.h +++ b/lib/asn1c/s1ap/S1AP_FiveGSTAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_FiveQI.c b/lib/asn1c/s1ap/S1AP_FiveQI.c index ff74db80e..34c9f6a2e 100644 --- a/lib/asn1c/s1ap/S1AP_FiveQI.c +++ b/lib/asn1c/s1ap/S1AP_FiveQI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_FiveQI.h b/lib/asn1c/s1ap/S1AP_FiveQI.h index b91dbb5b9..606276135 100644 --- a/lib/asn1c/s1ap/S1AP_FiveQI.h +++ b/lib/asn1c/s1ap/S1AP_FiveQI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenInterRATs.c b/lib/asn1c/s1ap/S1AP_ForbiddenInterRATs.c index c4fbcf3e8..01ebcdbcf 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenInterRATs.c +++ b/lib/asn1c/s1ap/S1AP_ForbiddenInterRATs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenInterRATs.h b/lib/asn1c/s1ap/S1AP_ForbiddenInterRATs.h index f0bae8182..aa690c540 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenInterRATs.h +++ b/lib/asn1c/s1ap/S1AP_ForbiddenInterRATs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenLACs.c b/lib/asn1c/s1ap/S1AP_ForbiddenLACs.c index 212525f42..adc50dd44 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenLACs.c +++ b/lib/asn1c/s1ap/S1AP_ForbiddenLACs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenLACs.h b/lib/asn1c/s1ap/S1AP_ForbiddenLACs.h index abb93e5ce..408c3baec 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenLACs.h +++ b/lib/asn1c/s1ap/S1AP_ForbiddenLACs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenLAs-Item.c b/lib/asn1c/s1ap/S1AP_ForbiddenLAs-Item.c index 794149bcf..6c0441cb6 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenLAs-Item.c +++ b/lib/asn1c/s1ap/S1AP_ForbiddenLAs-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ForbiddenLAs_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ForbiddenLAs_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P74, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P74, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenLAs-Item.h b/lib/asn1c/s1ap/S1AP_ForbiddenLAs-Item.h index 03f440119..bcff0e932 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenLAs-Item.h +++ b/lib/asn1c/s1ap/S1AP_ForbiddenLAs-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenLAs.c b/lib/asn1c/s1ap/S1AP_ForbiddenLAs.c index 9b2b3733a..146fb9702 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenLAs.c +++ b/lib/asn1c/s1ap/S1AP_ForbiddenLAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenLAs.h b/lib/asn1c/s1ap/S1AP_ForbiddenLAs.h index d4ae52305..2a3a278bf 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenLAs.h +++ b/lib/asn1c/s1ap/S1AP_ForbiddenLAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenTACs.c b/lib/asn1c/s1ap/S1AP_ForbiddenTACs.c index 5ec90b70c..133c3e130 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenTACs.c +++ b/lib/asn1c/s1ap/S1AP_ForbiddenTACs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenTACs.h b/lib/asn1c/s1ap/S1AP_ForbiddenTACs.h index e3affc1cb..e773a35f0 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenTACs.h +++ b/lib/asn1c/s1ap/S1AP_ForbiddenTACs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenTAs-Item.c b/lib/asn1c/s1ap/S1AP_ForbiddenTAs-Item.c index 58a979c08..9fea4f4a1 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenTAs-Item.c +++ b/lib/asn1c/s1ap/S1AP_ForbiddenTAs-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ForbiddenTAs_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ForbiddenTAs_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P73, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P73, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenTAs-Item.h b/lib/asn1c/s1ap/S1AP_ForbiddenTAs-Item.h index 913840cb3..e97f45531 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenTAs-Item.h +++ b/lib/asn1c/s1ap/S1AP_ForbiddenTAs-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenTAs.c b/lib/asn1c/s1ap/S1AP_ForbiddenTAs.c index 453cefa6b..5fe5dc3cd 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenTAs.c +++ b/lib/asn1c/s1ap/S1AP_ForbiddenTAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ForbiddenTAs.h b/lib/asn1c/s1ap/S1AP_ForbiddenTAs.h index 821faab45..1ced67250 100644 --- a/lib/asn1c/s1ap/S1AP_ForbiddenTAs.h +++ b/lib/asn1c/s1ap/S1AP_ForbiddenTAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GBR-QosInformation.c b/lib/asn1c/s1ap/S1AP_GBR-QosInformation.c index a233b8545..e7f0fc7aa 100644 --- a/lib/asn1c/s1ap/S1AP_GBR-QosInformation.c +++ b/lib/asn1c/s1ap/S1AP_GBR-QosInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ asn_TYPE_member_t asn_MBR_S1AP_GBR_QosInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_GBR_QosInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P75, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P75, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_GBR-QosInformation.h b/lib/asn1c/s1ap/S1AP_GBR-QosInformation.h index 5cf1f0958..abc4a11c7 100644 --- a/lib/asn1c/s1ap/S1AP_GBR-QosInformation.h +++ b/lib/asn1c/s1ap/S1AP_GBR-QosInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GERAN-Cell-ID.c b/lib/asn1c/s1ap/S1AP_GERAN-Cell-ID.c index e04900511..5260ef874 100644 --- a/lib/asn1c/s1ap/S1AP_GERAN-Cell-ID.c +++ b/lib/asn1c/s1ap/S1AP_GERAN-Cell-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_S1AP_GERAN_Cell_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_GERAN_Cell_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P56, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P56, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_GERAN-Cell-ID.h b/lib/asn1c/s1ap/S1AP_GERAN-Cell-ID.h index fe6200434..2acbc6546 100644 --- a/lib/asn1c/s1ap/S1AP_GERAN-Cell-ID.h +++ b/lib/asn1c/s1ap/S1AP_GERAN-Cell-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GNB-ID.c b/lib/asn1c/s1ap/S1AP_GNB-ID.c index 5c030d3a0..e50cb304e 100644 --- a/lib/asn1c/s1ap/S1AP_GNB-ID.c +++ b/lib/asn1c/s1ap/S1AP_GNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GNB-ID.h b/lib/asn1c/s1ap/S1AP_GNB-ID.h index 5721e2fb8..0e79db222 100644 --- a/lib/asn1c/s1ap/S1AP_GNB-ID.h +++ b/lib/asn1c/s1ap/S1AP_GNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GNB-Identity.c b/lib/asn1c/s1ap/S1AP_GNB-Identity.c index d6ad83247..025a34d97 100644 --- a/lib/asn1c/s1ap/S1AP_GNB-Identity.c +++ b/lib/asn1c/s1ap/S1AP_GNB-Identity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GNB-Identity.h b/lib/asn1c/s1ap/S1AP_GNB-Identity.h index 07b4835be..712462b91 100644 --- a/lib/asn1c/s1ap/S1AP_GNB-Identity.h +++ b/lib/asn1c/s1ap/S1AP_GNB-Identity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GNB.c b/lib/asn1c/s1ap/S1AP_GNB.c index 980d0cd3e..b77d545e0 100644 --- a/lib/asn1c/s1ap/S1AP_GNB.c +++ b/lib/asn1c/s1ap/S1AP_GNB.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_GNB_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_GNB, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P142, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P142, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_GNB.h b/lib/asn1c/s1ap/S1AP_GNB.h index 053a3d5d0..68bdc5604 100644 --- a/lib/asn1c/s1ap/S1AP_GNB.h +++ b/lib/asn1c/s1ap/S1AP_GNB.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GTP-TEID.c b/lib/asn1c/s1ap/S1AP_GTP-TEID.c index 6224ca020..68bf737a0 100644 --- a/lib/asn1c/s1ap/S1AP_GTP-TEID.c +++ b/lib/asn1c/s1ap/S1AP_GTP-TEID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GTP-TEID.h b/lib/asn1c/s1ap/S1AP_GTP-TEID.h index 4185327da..7ec139185 100644 --- a/lib/asn1c/s1ap/S1AP_GTP-TEID.h +++ b/lib/asn1c/s1ap/S1AP_GTP-TEID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GUMMEI.c b/lib/asn1c/s1ap/S1AP_GUMMEI.c index eb699ec19..a0826f1eb 100644 --- a/lib/asn1c/s1ap/S1AP_GUMMEI.c +++ b/lib/asn1c/s1ap/S1AP_GUMMEI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_S1AP_GUMMEI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_GUMMEI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P76, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P76, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_GUMMEI.h b/lib/asn1c/s1ap/S1AP_GUMMEI.h index ded9099da..6ad2802e1 100644 --- a/lib/asn1c/s1ap/S1AP_GUMMEI.h +++ b/lib/asn1c/s1ap/S1AP_GUMMEI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GUMMEIList.c b/lib/asn1c/s1ap/S1AP_GUMMEIList.c index ccd8e701f..6113f1936 100644 --- a/lib/asn1c/s1ap/S1AP_GUMMEIList.c +++ b/lib/asn1c/s1ap/S1AP_GUMMEIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GUMMEIList.h b/lib/asn1c/s1ap/S1AP_GUMMEIList.h index 4e73e57aa..e524ae07e 100644 --- a/lib/asn1c/s1ap/S1AP_GUMMEIList.h +++ b/lib/asn1c/s1ap/S1AP_GUMMEIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GUMMEIType.c b/lib/asn1c/s1ap/S1AP_GUMMEIType.c index 5fa046ad5..117c63b53 100644 --- a/lib/asn1c/s1ap/S1AP_GUMMEIType.c +++ b/lib/asn1c/s1ap/S1AP_GUMMEIType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GUMMEIType.h b/lib/asn1c/s1ap/S1AP_GUMMEIType.h index 22c673b29..8d13da189 100644 --- a/lib/asn1c/s1ap/S1AP_GUMMEIType.h +++ b/lib/asn1c/s1ap/S1AP_GUMMEIType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GWContextReleaseIndication.c b/lib/asn1c/s1ap/S1AP_GWContextReleaseIndication.c index ce7ddae1b..e4505a177 100644 --- a/lib/asn1c/s1ap/S1AP_GWContextReleaseIndication.c +++ b/lib/asn1c/s1ap/S1AP_GWContextReleaseIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_GWContextReleaseIndication.h b/lib/asn1c/s1ap/S1AP_GWContextReleaseIndication.h index 7a77bd617..d8c261139 100644 --- a/lib/asn1c/s1ap/S1AP_GWContextReleaseIndication.h +++ b/lib/asn1c/s1ap/S1AP_GWContextReleaseIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Global-ENB-ID.c b/lib/asn1c/s1ap/S1AP_Global-ENB-ID.c index 44beb2f47..a6f2e85d3 100644 --- a/lib/asn1c/s1ap/S1AP_Global-ENB-ID.c +++ b/lib/asn1c/s1ap/S1AP_Global-ENB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_Global_ENB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_Global_ENB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P57, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P57, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Global-ENB-ID.h b/lib/asn1c/s1ap/S1AP_Global-ENB-ID.h index c7722f0a8..ff97cfd60 100644 --- a/lib/asn1c/s1ap/S1AP_Global-ENB-ID.h +++ b/lib/asn1c/s1ap/S1AP_Global-ENB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Global-GNB-ID.c b/lib/asn1c/s1ap/S1AP_Global-GNB-ID.c index 82ca6cf98..18cac3cbb 100644 --- a/lib/asn1c/s1ap/S1AP_Global-GNB-ID.c +++ b/lib/asn1c/s1ap/S1AP_Global-GNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_Global_GNB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_Global_GNB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P143, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P143, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Global-GNB-ID.h b/lib/asn1c/s1ap/S1AP_Global-GNB-ID.h index 17a8e212d..0afe98129 100644 --- a/lib/asn1c/s1ap/S1AP_Global-GNB-ID.h +++ b/lib/asn1c/s1ap/S1AP_Global-GNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Global-RAN-NODE-ID.c b/lib/asn1c/s1ap/S1AP_Global-RAN-NODE-ID.c index 477873c83..0892f0b20 100644 --- a/lib/asn1c/s1ap/S1AP_Global-RAN-NODE-ID.c +++ b/lib/asn1c/s1ap/S1AP_Global-RAN-NODE-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Global-RAN-NODE-ID.h b/lib/asn1c/s1ap/S1AP_Global-RAN-NODE-ID.h index 1625e505c..853b00c87 100644 --- a/lib/asn1c/s1ap/S1AP_Global-RAN-NODE-ID.h +++ b/lib/asn1c/s1ap/S1AP_Global-RAN-NODE-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Global-en-gNB-ID.c b/lib/asn1c/s1ap/S1AP_Global-en-gNB-ID.c index 1f1afd136..82551097c 100644 --- a/lib/asn1c/s1ap/S1AP_Global-en-gNB-ID.c +++ b/lib/asn1c/s1ap/S1AP_Global-en-gNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_Global_en_gNB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_Global_en_gNB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P58, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P58, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Global-en-gNB-ID.h b/lib/asn1c/s1ap/S1AP_Global-en-gNB-ID.h index ab3812f28..19ec8cbb7 100644 --- a/lib/asn1c/s1ap/S1AP_Global-en-gNB-ID.h +++ b/lib/asn1c/s1ap/S1AP_Global-en-gNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HFN.c b/lib/asn1c/s1ap/S1AP_HFN.c index f0993c93c..ac977617e 100644 --- a/lib/asn1c/s1ap/S1AP_HFN.c +++ b/lib/asn1c/s1ap/S1AP_HFN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HFN.h b/lib/asn1c/s1ap/S1AP_HFN.h index 33f6a9146..51a0d5ebe 100644 --- a/lib/asn1c/s1ap/S1AP_HFN.h +++ b/lib/asn1c/s1ap/S1AP_HFN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HFNModified.c b/lib/asn1c/s1ap/S1AP_HFNModified.c index d71e40118..18af9b32b 100644 --- a/lib/asn1c/s1ap/S1AP_HFNModified.c +++ b/lib/asn1c/s1ap/S1AP_HFNModified.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HFNModified.h b/lib/asn1c/s1ap/S1AP_HFNModified.h index 8fd48c4a1..eeffa82fd 100644 --- a/lib/asn1c/s1ap/S1AP_HFNModified.h +++ b/lib/asn1c/s1ap/S1AP_HFNModified.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HFNforPDCP-SNlength18.c b/lib/asn1c/s1ap/S1AP_HFNforPDCP-SNlength18.c index b1d81ad2d..ff655aef7 100644 --- a/lib/asn1c/s1ap/S1AP_HFNforPDCP-SNlength18.c +++ b/lib/asn1c/s1ap/S1AP_HFNforPDCP-SNlength18.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HFNforPDCP-SNlength18.h b/lib/asn1c/s1ap/S1AP_HFNforPDCP-SNlength18.h index 8e21d79cd..d30a660d8 100644 --- a/lib/asn1c/s1ap/S1AP_HFNforPDCP-SNlength18.h +++ b/lib/asn1c/s1ap/S1AP_HFNforPDCP-SNlength18.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HandoverCancel.c b/lib/asn1c/s1ap/S1AP_HandoverCancel.c index b4d031b5b..704fe24e8 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverCancel.c +++ b/lib/asn1c/s1ap/S1AP_HandoverCancel.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverCancel_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverCancel, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P10, + &asn_DEF_S1AP_ProtocolIE_Container_7847P10, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverCancel.h b/lib/asn1c/s1ap/S1AP_HandoverCancel.h index 2ba316108..6475e1a43 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverCancel.h +++ b/lib/asn1c/s1ap/S1AP_HandoverCancel.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverCancel */ typedef struct S1AP_HandoverCancel { - S1AP_ProtocolIE_Container_7838P10_t protocolIEs; + S1AP_ProtocolIE_Container_7847P10_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverCancelAcknowledge.c b/lib/asn1c/s1ap/S1AP_HandoverCancelAcknowledge.c index 1d0bf1c4c..7c9efbabf 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverCancelAcknowledge.c +++ b/lib/asn1c/s1ap/S1AP_HandoverCancelAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverCancelAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverCancelAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P11, + &asn_DEF_S1AP_ProtocolIE_Container_7847P11, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverCancelAcknowledge.h b/lib/asn1c/s1ap/S1AP_HandoverCancelAcknowledge.h index a4663427f..7bfa3b4e0 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverCancelAcknowledge.h +++ b/lib/asn1c/s1ap/S1AP_HandoverCancelAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverCancelAcknowledge */ typedef struct S1AP_HandoverCancelAcknowledge { - S1AP_ProtocolIE_Container_7838P11_t protocolIEs; + S1AP_ProtocolIE_Container_7847P11_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverCommand.c b/lib/asn1c/s1ap/S1AP_HandoverCommand.c index d526ed4ee..da42b5409 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverCommand.c +++ b/lib/asn1c/s1ap/S1AP_HandoverCommand.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverCommand_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverCommand, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P1, + &asn_DEF_S1AP_ProtocolIE_Container_7847P1, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverCommand.h b/lib/asn1c/s1ap/S1AP_HandoverCommand.h index 9c1e9a3ec..7091e0c29 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverCommand.h +++ b/lib/asn1c/s1ap/S1AP_HandoverCommand.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverCommand */ typedef struct S1AP_HandoverCommand { - S1AP_ProtocolIE_Container_7838P1_t protocolIEs; + S1AP_ProtocolIE_Container_7847P1_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverFailure.c b/lib/asn1c/s1ap/S1AP_HandoverFailure.c index 05b50dd64..6b631a464 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverFailure.c +++ b/lib/asn1c/s1ap/S1AP_HandoverFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P5, + &asn_DEF_S1AP_ProtocolIE_Container_7847P5, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverFailure.h b/lib/asn1c/s1ap/S1AP_HandoverFailure.h index 41f826147..de4fab1ea 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverFailure.h +++ b/lib/asn1c/s1ap/S1AP_HandoverFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverFailure */ typedef struct S1AP_HandoverFailure { - S1AP_ProtocolIE_Container_7838P5_t protocolIEs; + S1AP_ProtocolIE_Container_7847P5_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverFlag.c b/lib/asn1c/s1ap/S1AP_HandoverFlag.c index 5b0a257c3..b60b04dbf 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverFlag.c +++ b/lib/asn1c/s1ap/S1AP_HandoverFlag.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HandoverFlag.h b/lib/asn1c/s1ap/S1AP_HandoverFlag.h index 468adc252..d84c02c14 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverFlag.h +++ b/lib/asn1c/s1ap/S1AP_HandoverFlag.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HandoverNotify.c b/lib/asn1c/s1ap/S1AP_HandoverNotify.c index d29511f77..6087662ab 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverNotify.c +++ b/lib/asn1c/s1ap/S1AP_HandoverNotify.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverNotify_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverNotify, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P6, + &asn_DEF_S1AP_ProtocolIE_Container_7847P6, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverNotify.h b/lib/asn1c/s1ap/S1AP_HandoverNotify.h index aeb98b944..62d725f5a 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverNotify.h +++ b/lib/asn1c/s1ap/S1AP_HandoverNotify.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverNotify */ typedef struct S1AP_HandoverNotify { - S1AP_ProtocolIE_Container_7838P6_t protocolIEs; + S1AP_ProtocolIE_Container_7847P6_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverPreparationFailure.c b/lib/asn1c/s1ap/S1AP_HandoverPreparationFailure.c index a956c54bf..f2262413b 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverPreparationFailure.c +++ b/lib/asn1c/s1ap/S1AP_HandoverPreparationFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverPreparationFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverPreparationFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P2, + &asn_DEF_S1AP_ProtocolIE_Container_7847P2, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverPreparationFailure.h b/lib/asn1c/s1ap/S1AP_HandoverPreparationFailure.h index efcef4df6..539af7d42 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverPreparationFailure.h +++ b/lib/asn1c/s1ap/S1AP_HandoverPreparationFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverPreparationFailure */ typedef struct S1AP_HandoverPreparationFailure { - S1AP_ProtocolIE_Container_7838P2_t protocolIEs; + S1AP_ProtocolIE_Container_7847P2_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverRequest.c b/lib/asn1c/s1ap/S1AP_HandoverRequest.c index 783018616..b85e01d74 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverRequest.c +++ b/lib/asn1c/s1ap/S1AP_HandoverRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P3, + &asn_DEF_S1AP_ProtocolIE_Container_7847P3, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverRequest.h b/lib/asn1c/s1ap/S1AP_HandoverRequest.h index 9779f8202..d468073cd 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverRequest.h +++ b/lib/asn1c/s1ap/S1AP_HandoverRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverRequest */ typedef struct S1AP_HandoverRequest { - S1AP_ProtocolIE_Container_7838P3_t protocolIEs; + S1AP_ProtocolIE_Container_7847P3_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverRequestAcknowledge.c b/lib/asn1c/s1ap/S1AP_HandoverRequestAcknowledge.c index b424fbd7e..6b0a0ec32 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverRequestAcknowledge.c +++ b/lib/asn1c/s1ap/S1AP_HandoverRequestAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverRequestAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverRequestAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P4, + &asn_DEF_S1AP_ProtocolIE_Container_7847P4, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverRequestAcknowledge.h b/lib/asn1c/s1ap/S1AP_HandoverRequestAcknowledge.h index c7d974cbf..2f18709c0 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverRequestAcknowledge.h +++ b/lib/asn1c/s1ap/S1AP_HandoverRequestAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverRequestAcknowledge */ typedef struct S1AP_HandoverRequestAcknowledge { - S1AP_ProtocolIE_Container_7838P4_t protocolIEs; + S1AP_ProtocolIE_Container_7847P4_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverRequired.c b/lib/asn1c/s1ap/S1AP_HandoverRequired.c index a74dfdd37..1b79b8754 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverRequired.c +++ b/lib/asn1c/s1ap/S1AP_HandoverRequired.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverRequired_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverRequired, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P0, + &asn_DEF_S1AP_ProtocolIE_Container_7847P0, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverRequired.h b/lib/asn1c/s1ap/S1AP_HandoverRequired.h index 5fa5a0276..65f7a445b 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverRequired.h +++ b/lib/asn1c/s1ap/S1AP_HandoverRequired.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverRequired */ typedef struct S1AP_HandoverRequired { - S1AP_ProtocolIE_Container_7838P0_t protocolIEs; + S1AP_ProtocolIE_Container_7847P0_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverRestrictionList.c b/lib/asn1c/s1ap/S1AP_HandoverRestrictionList.c index f000f866e..13466f8ed 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverRestrictionList.c +++ b/lib/asn1c/s1ap/S1AP_HandoverRestrictionList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -100,7 +100,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_HandoverRestrictionList_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_HandoverRestrictionList, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P77, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P77, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverRestrictionList.h b/lib/asn1c/s1ap/S1AP_HandoverRestrictionList.h index f13c1f698..a8bc2c194 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverRestrictionList.h +++ b/lib/asn1c/s1ap/S1AP_HandoverRestrictionList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HandoverSuccess.c b/lib/asn1c/s1ap/S1AP_HandoverSuccess.c index f9e5bbf2b..37b2a5834 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverSuccess.c +++ b/lib/asn1c/s1ap/S1AP_HandoverSuccess.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_HandoverSuccess_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_HandoverSuccess, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P12, + &asn_DEF_S1AP_ProtocolIE_Container_7847P12, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_HandoverSuccess.h b/lib/asn1c/s1ap/S1AP_HandoverSuccess.h index a0dc932fe..46ce4788d 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverSuccess.h +++ b/lib/asn1c/s1ap/S1AP_HandoverSuccess.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_HandoverSuccess */ typedef struct S1AP_HandoverSuccess { - S1AP_ProtocolIE_Container_7838P12_t protocolIEs; + S1AP_ProtocolIE_Container_7847P12_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_HandoverType.c b/lib/asn1c/s1ap/S1AP_HandoverType.c index 5aa0ae44e..b304cf599 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverType.c +++ b/lib/asn1c/s1ap/S1AP_HandoverType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_HandoverType.h b/lib/asn1c/s1ap/S1AP_HandoverType.h index 94ef38cf5..00e5a72e8 100644 --- a/lib/asn1c/s1ap/S1AP_HandoverType.h +++ b/lib/asn1c/s1ap/S1AP_HandoverType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IAB-Authorized.c b/lib/asn1c/s1ap/S1AP_IAB-Authorized.c index b99c33a0a..1ab358bc7 100644 --- a/lib/asn1c/s1ap/S1AP_IAB-Authorized.c +++ b/lib/asn1c/s1ap/S1AP_IAB-Authorized.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IAB-Authorized.h b/lib/asn1c/s1ap/S1AP_IAB-Authorized.h index 882617467..72af3ed13 100644 --- a/lib/asn1c/s1ap/S1AP_IAB-Authorized.h +++ b/lib/asn1c/s1ap/S1AP_IAB-Authorized.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IAB-Node-Indication.c b/lib/asn1c/s1ap/S1AP_IAB-Node-Indication.c index b0397c167..37dbe2918 100644 --- a/lib/asn1c/s1ap/S1AP_IAB-Node-Indication.c +++ b/lib/asn1c/s1ap/S1AP_IAB-Node-Indication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IAB-Node-Indication.h b/lib/asn1c/s1ap/S1AP_IAB-Node-Indication.h index 9c676c37c..10570fc57 100644 --- a/lib/asn1c/s1ap/S1AP_IAB-Node-Indication.h +++ b/lib/asn1c/s1ap/S1AP_IAB-Node-Indication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IAB-Supported.c b/lib/asn1c/s1ap/S1AP_IAB-Supported.c index 0efec6903..e3f61519a 100644 --- a/lib/asn1c/s1ap/S1AP_IAB-Supported.c +++ b/lib/asn1c/s1ap/S1AP_IAB-Supported.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IAB-Supported.h b/lib/asn1c/s1ap/S1AP_IAB-Supported.h index b7cec205e..6b85b6210 100644 --- a/lib/asn1c/s1ap/S1AP_IAB-Supported.h +++ b/lib/asn1c/s1ap/S1AP_IAB-Supported.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IMSI.c b/lib/asn1c/s1ap/S1AP_IMSI.c index 1a40a74f7..fde019e28 100644 --- a/lib/asn1c/s1ap/S1AP_IMSI.c +++ b/lib/asn1c/s1ap/S1AP_IMSI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IMSI.h b/lib/asn1c/s1ap/S1AP_IMSI.h index 994eb0479..32ac96c52 100644 --- a/lib/asn1c/s1ap/S1AP_IMSI.h +++ b/lib/asn1c/s1ap/S1AP_IMSI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IMSvoiceEPSfallbackfrom5G.c b/lib/asn1c/s1ap/S1AP_IMSvoiceEPSfallbackfrom5G.c index d065ac719..0a0878fdf 100644 --- a/lib/asn1c/s1ap/S1AP_IMSvoiceEPSfallbackfrom5G.c +++ b/lib/asn1c/s1ap/S1AP_IMSvoiceEPSfallbackfrom5G.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IMSvoiceEPSfallbackfrom5G.h b/lib/asn1c/s1ap/S1AP_IMSvoiceEPSfallbackfrom5G.h index 84f303899..ec2052948 100644 --- a/lib/asn1c/s1ap/S1AP_IMSvoiceEPSfallbackfrom5G.h +++ b/lib/asn1c/s1ap/S1AP_IMSvoiceEPSfallbackfrom5G.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ImmediateMDT.c b/lib/asn1c/s1ap/S1AP_ImmediateMDT.c index 6441cf885..79e68786e 100644 --- a/lib/asn1c/s1ap/S1AP_ImmediateMDT.c +++ b/lib/asn1c/s1ap/S1AP_ImmediateMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -82,7 +82,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ImmediateMDT_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ImmediateMDT, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P78, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P78, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ImmediateMDT.h b/lib/asn1c/s1ap/S1AP_ImmediateMDT.h index d0b834af2..4aa827aae 100644 --- a/lib/asn1c/s1ap/S1AP_ImmediateMDT.h +++ b/lib/asn1c/s1ap/S1AP_ImmediateMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InformationOnRecommendedCellsAndENBsForPaging.c b/lib/asn1c/s1ap/S1AP_InformationOnRecommendedCellsAndENBsForPaging.c index 29b3eb546..7c7706c21 100644 --- a/lib/asn1c/s1ap/S1AP_InformationOnRecommendedCellsAndENBsForPaging.c +++ b/lib/asn1c/s1ap/S1AP_InformationOnRecommendedCellsAndENBsForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_InformationOnRecommendedCellsAndENBsForPag { ATF_POINTER, 1, offsetof(struct S1AP_InformationOnRecommendedCellsAndENBsForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P79, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P79, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_InformationOnRecommendedCellsAndENBsForPaging.h b/lib/asn1c/s1ap/S1AP_InformationOnRecommendedCellsAndENBsForPaging.h index 450ad22d8..b0ec2f040 100644 --- a/lib/asn1c/s1ap/S1AP_InformationOnRecommendedCellsAndENBsForPaging.h +++ b/lib/asn1c/s1ap/S1AP_InformationOnRecommendedCellsAndENBsForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InitialContextSetupFailure.c b/lib/asn1c/s1ap/S1AP_InitialContextSetupFailure.c index 4696378a1..b5843b381 100644 --- a/lib/asn1c/s1ap/S1AP_InitialContextSetupFailure.c +++ b/lib/asn1c/s1ap/S1AP_InitialContextSetupFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_InitialContextSetupFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_InitialContextSetupFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P24, + &asn_DEF_S1AP_ProtocolIE_Container_7847P24, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_InitialContextSetupFailure.h b/lib/asn1c/s1ap/S1AP_InitialContextSetupFailure.h index d0e9ac40b..614171997 100644 --- a/lib/asn1c/s1ap/S1AP_InitialContextSetupFailure.h +++ b/lib/asn1c/s1ap/S1AP_InitialContextSetupFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_InitialContextSetupFailure */ typedef struct S1AP_InitialContextSetupFailure { - S1AP_ProtocolIE_Container_7838P24_t protocolIEs; + S1AP_ProtocolIE_Container_7847P24_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_InitialContextSetupRequest.c b/lib/asn1c/s1ap/S1AP_InitialContextSetupRequest.c index 8177ba039..c5ca9e418 100644 --- a/lib/asn1c/s1ap/S1AP_InitialContextSetupRequest.c +++ b/lib/asn1c/s1ap/S1AP_InitialContextSetupRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_InitialContextSetupRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_InitialContextSetupRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P22, + &asn_DEF_S1AP_ProtocolIE_Container_7847P22, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_InitialContextSetupRequest.h b/lib/asn1c/s1ap/S1AP_InitialContextSetupRequest.h index 2f152c301..976e6cde7 100644 --- a/lib/asn1c/s1ap/S1AP_InitialContextSetupRequest.h +++ b/lib/asn1c/s1ap/S1AP_InitialContextSetupRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_InitialContextSetupRequest */ typedef struct S1AP_InitialContextSetupRequest { - S1AP_ProtocolIE_Container_7838P22_t protocolIEs; + S1AP_ProtocolIE_Container_7847P22_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_InitialContextSetupResponse.c b/lib/asn1c/s1ap/S1AP_InitialContextSetupResponse.c index d10cc7ecd..4d1874294 100644 --- a/lib/asn1c/s1ap/S1AP_InitialContextSetupResponse.c +++ b/lib/asn1c/s1ap/S1AP_InitialContextSetupResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_InitialContextSetupResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_InitialContextSetupResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P23, + &asn_DEF_S1AP_ProtocolIE_Container_7847P23, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_InitialContextSetupResponse.h b/lib/asn1c/s1ap/S1AP_InitialContextSetupResponse.h index a8d676d63..c93958c49 100644 --- a/lib/asn1c/s1ap/S1AP_InitialContextSetupResponse.h +++ b/lib/asn1c/s1ap/S1AP_InitialContextSetupResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_InitialContextSetupResponse */ typedef struct S1AP_InitialContextSetupResponse { - S1AP_ProtocolIE_Container_7838P23_t protocolIEs; + S1AP_ProtocolIE_Container_7847P23_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_InitialUEMessage.c b/lib/asn1c/s1ap/S1AP_InitialUEMessage.c index 2d3fd2e1b..9ff2a8bed 100644 --- a/lib/asn1c/s1ap/S1AP_InitialUEMessage.c +++ b/lib/asn1c/s1ap/S1AP_InitialUEMessage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_InitialUEMessage_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_InitialUEMessage, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P35, + &asn_DEF_S1AP_ProtocolIE_Container_7847P35, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_InitialUEMessage.h b/lib/asn1c/s1ap/S1AP_InitialUEMessage.h index 00de5b319..148116a46 100644 --- a/lib/asn1c/s1ap/S1AP_InitialUEMessage.h +++ b/lib/asn1c/s1ap/S1AP_InitialUEMessage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_InitialUEMessage */ typedef struct S1AP_InitialUEMessage { - S1AP_ProtocolIE_Container_7838P35_t protocolIEs; + S1AP_ProtocolIE_Container_7847P35_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_InitiatingMessage.c b/lib/asn1c/s1ap/S1AP_InitiatingMessage.c index 4cd769915..c99b9c769 100644 --- a/lib/asn1c/s1ap/S1AP_InitiatingMessage.c +++ b/lib/asn1c/s1ap/S1AP_InitiatingMessage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Descriptions" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InitiatingMessage.h b/lib/asn1c/s1ap/S1AP_InitiatingMessage.h index 701b49473..d8a9be107 100644 --- a/lib/asn1c/s1ap/S1AP_InitiatingMessage.h +++ b/lib/asn1c/s1ap/S1AP_InitiatingMessage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Descriptions" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IntegrityProtectionAlgorithms.c b/lib/asn1c/s1ap/S1AP_IntegrityProtectionAlgorithms.c index 687bba465..3d6933796 100644 --- a/lib/asn1c/s1ap/S1AP_IntegrityProtectionAlgorithms.c +++ b/lib/asn1c/s1ap/S1AP_IntegrityProtectionAlgorithms.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IntegrityProtectionAlgorithms.h b/lib/asn1c/s1ap/S1AP_IntegrityProtectionAlgorithms.h index 630bef18a..6c3121b38 100644 --- a/lib/asn1c/s1ap/S1AP_IntegrityProtectionAlgorithms.h +++ b/lib/asn1c/s1ap/S1AP_IntegrityProtectionAlgorithms.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IntendedNumberOfPagingAttempts.c b/lib/asn1c/s1ap/S1AP_IntendedNumberOfPagingAttempts.c index b53235f03..76c7157d0 100644 --- a/lib/asn1c/s1ap/S1AP_IntendedNumberOfPagingAttempts.c +++ b/lib/asn1c/s1ap/S1AP_IntendedNumberOfPagingAttempts.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IntendedNumberOfPagingAttempts.h b/lib/asn1c/s1ap/S1AP_IntendedNumberOfPagingAttempts.h index f64d1fa3c..bcd98c0e2 100644 --- a/lib/asn1c/s1ap/S1AP_IntendedNumberOfPagingAttempts.h +++ b/lib/asn1c/s1ap/S1AP_IntendedNumberOfPagingAttempts.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Inter-SystemInformationTransferType.c b/lib/asn1c/s1ap/S1AP_Inter-SystemInformationTransferType.c index 303a67336..a5ff0b4e8 100644 --- a/lib/asn1c/s1ap/S1AP_Inter-SystemInformationTransferType.c +++ b/lib/asn1c/s1ap/S1AP_Inter-SystemInformationTransferType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Inter-SystemInformationTransferType.h b/lib/asn1c/s1ap/S1AP_Inter-SystemInformationTransferType.h index 583015c3d..19cc29b3c 100644 --- a/lib/asn1c/s1ap/S1AP_Inter-SystemInformationTransferType.h +++ b/lib/asn1c/s1ap/S1AP_Inter-SystemInformationTransferType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementItem.c b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementItem.c index 9eef036c0..7fa43e39d 100644 --- a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementItem.c +++ b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -342,7 +342,7 @@ asn_TYPE_member_t asn_MBR_S1AP_InterSystemMeasurementItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_InterSystemMeasurementItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (10 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P82, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P82, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementItem.h b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementItem.h index 33ab54120..c189cc4cb 100644 --- a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementItem.h +++ b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementList.c b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementList.c index 62fb873bd..ea867e5ea 100644 --- a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementList.c +++ b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementList.h b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementList.h index 01d6d3540..b56cbbb3b 100644 --- a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementList.h +++ b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementParameters.c b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementParameters.c index e9e3df91a..2d25081d7 100644 --- a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementParameters.c +++ b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementParameters.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -79,7 +79,7 @@ asn_TYPE_member_t asn_MBR_S1AP_InterSystemMeasurementParameters_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_InterSystemMeasurementParameters, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P81, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P81, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementParameters.h b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementParameters.h index 342af8c08..f781b05ba 100644 --- a/lib/asn1c/s1ap/S1AP_InterSystemMeasurementParameters.h +++ b/lib/asn1c/s1ap/S1AP_InterSystemMeasurementParameters.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InterfacesToTrace.c b/lib/asn1c/s1ap/S1AP_InterfacesToTrace.c index b1e9fcc28..a8339d647 100644 --- a/lib/asn1c/s1ap/S1AP_InterfacesToTrace.c +++ b/lib/asn1c/s1ap/S1AP_InterfacesToTrace.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_InterfacesToTrace.h b/lib/asn1c/s1ap/S1AP_InterfacesToTrace.h index 0efe6c8a5..63ea42753 100644 --- a/lib/asn1c/s1ap/S1AP_InterfacesToTrace.h +++ b/lib/asn1c/s1ap/S1AP_InterfacesToTrace.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IntersystemMeasurementConfiguration.c b/lib/asn1c/s1ap/S1AP_IntersystemMeasurementConfiguration.c index a7a454502..7587ff38d 100644 --- a/lib/asn1c/s1ap/S1AP_IntersystemMeasurementConfiguration.c +++ b/lib/asn1c/s1ap/S1AP_IntersystemMeasurementConfiguration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -176,7 +176,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_IntersystemMeasurementConfiguration_1[] = { ATF_POINTER, 1, offsetof(struct S1AP_IntersystemMeasurementConfiguration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P80, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P80, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_IntersystemMeasurementConfiguration.h b/lib/asn1c/s1ap/S1AP_IntersystemMeasurementConfiguration.h index 5cded4643..4357fe9b3 100644 --- a/lib/asn1c/s1ap/S1AP_IntersystemMeasurementConfiguration.h +++ b/lib/asn1c/s1ap/S1AP_IntersystemMeasurementConfiguration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IntersystemSONConfigurationTransfer.c b/lib/asn1c/s1ap/S1AP_IntersystemSONConfigurationTransfer.c index 52d5f357e..1a8924279 100644 --- a/lib/asn1c/s1ap/S1AP_IntersystemSONConfigurationTransfer.c +++ b/lib/asn1c/s1ap/S1AP_IntersystemSONConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_IntersystemSONConfigurationTransfer.h b/lib/asn1c/s1ap/S1AP_IntersystemSONConfigurationTransfer.h index 5271c8f2a..b69ebcc34 100644 --- a/lib/asn1c/s1ap/S1AP_IntersystemSONConfigurationTransfer.h +++ b/lib/asn1c/s1ap/S1AP_IntersystemSONConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_KillAllWarningMessages.c b/lib/asn1c/s1ap/S1AP_KillAllWarningMessages.c index 147be203c..c29be8df9 100644 --- a/lib/asn1c/s1ap/S1AP_KillAllWarningMessages.c +++ b/lib/asn1c/s1ap/S1AP_KillAllWarningMessages.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_KillAllWarningMessages.h b/lib/asn1c/s1ap/S1AP_KillAllWarningMessages.h index adc1a4714..d3b5d28b2 100644 --- a/lib/asn1c/s1ap/S1AP_KillAllWarningMessages.h +++ b/lib/asn1c/s1ap/S1AP_KillAllWarningMessages.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_KillRequest.c b/lib/asn1c/s1ap/S1AP_KillRequest.c index 961ef89f2..de636c6f3 100644 --- a/lib/asn1c/s1ap/S1AP_KillRequest.c +++ b/lib/asn1c/s1ap/S1AP_KillRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_KillRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_KillRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P72, + &asn_DEF_S1AP_ProtocolIE_Container_7847P72, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_KillRequest.h b/lib/asn1c/s1ap/S1AP_KillRequest.h index d236b9983..41e83b753 100644 --- a/lib/asn1c/s1ap/S1AP_KillRequest.h +++ b/lib/asn1c/s1ap/S1AP_KillRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_KillRequest */ typedef struct S1AP_KillRequest { - S1AP_ProtocolIE_Container_7838P72_t protocolIEs; + S1AP_ProtocolIE_Container_7847P72_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_KillResponse.c b/lib/asn1c/s1ap/S1AP_KillResponse.c index e3fb9d4df..fb8a30e51 100644 --- a/lib/asn1c/s1ap/S1AP_KillResponse.c +++ b/lib/asn1c/s1ap/S1AP_KillResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_KillResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_KillResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P73, + &asn_DEF_S1AP_ProtocolIE_Container_7847P73, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_KillResponse.h b/lib/asn1c/s1ap/S1AP_KillResponse.h index 1077ca625..a5565bae3 100644 --- a/lib/asn1c/s1ap/S1AP_KillResponse.h +++ b/lib/asn1c/s1ap/S1AP_KillResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_KillResponse */ typedef struct S1AP_KillResponse { - S1AP_ProtocolIE_Container_7838P73_t protocolIEs; + S1AP_ProtocolIE_Container_7847P73_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_L3-Information.c b/lib/asn1c/s1ap/S1AP_L3-Information.c index da6d58980..6e0251e71 100644 --- a/lib/asn1c/s1ap/S1AP_L3-Information.c +++ b/lib/asn1c/s1ap/S1AP_L3-Information.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_L3-Information.h b/lib/asn1c/s1ap/S1AP_L3-Information.h index 9d4e786cb..ce9a9f0ea 100644 --- a/lib/asn1c/s1ap/S1AP_L3-Information.h +++ b/lib/asn1c/s1ap/S1AP_L3-Information.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LAC.c b/lib/asn1c/s1ap/S1AP_LAC.c index 6c5ee956d..6b194818c 100644 --- a/lib/asn1c/s1ap/S1AP_LAC.c +++ b/lib/asn1c/s1ap/S1AP_LAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LAC.h b/lib/asn1c/s1ap/S1AP_LAC.h index ce285f99a..db4c83e48 100644 --- a/lib/asn1c/s1ap/S1AP_LAC.h +++ b/lib/asn1c/s1ap/S1AP_LAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LAI.c b/lib/asn1c/s1ap/S1AP_LAI.c index 1d729c235..c5aecdb70 100644 --- a/lib/asn1c/s1ap/S1AP_LAI.c +++ b/lib/asn1c/s1ap/S1AP_LAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_LAI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_LAI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P83, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P83, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_LAI.h b/lib/asn1c/s1ap/S1AP_LAI.h index 66a7e304c..024ce84e3 100644 --- a/lib/asn1c/s1ap/S1AP_LAI.h +++ b/lib/asn1c/s1ap/S1AP_LAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LHN-ID.c b/lib/asn1c/s1ap/S1AP_LHN-ID.c index ed81f5ad7..539b82a8a 100644 --- a/lib/asn1c/s1ap/S1AP_LHN-ID.c +++ b/lib/asn1c/s1ap/S1AP_LHN-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LHN-ID.h b/lib/asn1c/s1ap/S1AP_LHN-ID.h index bd2fae036..6c98b1e8f 100644 --- a/lib/asn1c/s1ap/S1AP_LHN-ID.h +++ b/lib/asn1c/s1ap/S1AP_LHN-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LPPa-PDU.c b/lib/asn1c/s1ap/S1AP_LPPa-PDU.c index 7c5e0d142..bdd05a0ac 100644 --- a/lib/asn1c/s1ap/S1AP_LPPa-PDU.c +++ b/lib/asn1c/s1ap/S1AP_LPPa-PDU.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LPPa-PDU.h b/lib/asn1c/s1ap/S1AP_LPPa-PDU.h index b90355fcb..d654cfc58 100644 --- a/lib/asn1c/s1ap/S1AP_LPPa-PDU.h +++ b/lib/asn1c/s1ap/S1AP_LPPa-PDU.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LTE-M-Indication.c b/lib/asn1c/s1ap/S1AP_LTE-M-Indication.c index 8c00de5e4..68e4c67fb 100644 --- a/lib/asn1c/s1ap/S1AP_LTE-M-Indication.c +++ b/lib/asn1c/s1ap/S1AP_LTE-M-Indication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LTE-M-Indication.h b/lib/asn1c/s1ap/S1AP_LTE-M-Indication.h index 0c677bf91..a04374a09 100644 --- a/lib/asn1c/s1ap/S1AP_LTE-M-Indication.h +++ b/lib/asn1c/s1ap/S1AP_LTE-M-Indication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedCell-Item.c b/lib/asn1c/s1ap/S1AP_LastVisitedCell-Item.c index c2da2670c..7b86965db 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedCell-Item.c +++ b/lib/asn1c/s1ap/S1AP_LastVisitedCell-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedCell-Item.h b/lib/asn1c/s1ap/S1AP_LastVisitedCell-Item.h index 718b2bffe..0ec08145a 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedCell-Item.h +++ b/lib/asn1c/s1ap/S1AP_LastVisitedCell-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedEUTRANCellInformation.c b/lib/asn1c/s1ap/S1AP_LastVisitedEUTRANCellInformation.c index 737aaef40..097e0e07b 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedEUTRANCellInformation.c +++ b/lib/asn1c/s1ap/S1AP_LastVisitedEUTRANCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_S1AP_LastVisitedEUTRANCellInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_LastVisitedEUTRANCellInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P84, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P84, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedEUTRANCellInformation.h b/lib/asn1c/s1ap/S1AP_LastVisitedEUTRANCellInformation.h index ec87780ac..ff04b5d16 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedEUTRANCellInformation.h +++ b/lib/asn1c/s1ap/S1AP_LastVisitedEUTRANCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedGERANCellInformation.c b/lib/asn1c/s1ap/S1AP_LastVisitedGERANCellInformation.c index a51a33794..cda95b5c8 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedGERANCellInformation.c +++ b/lib/asn1c/s1ap/S1AP_LastVisitedGERANCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedGERANCellInformation.h b/lib/asn1c/s1ap/S1AP_LastVisitedGERANCellInformation.h index ee010dc7b..7e6b62c76 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedGERANCellInformation.h +++ b/lib/asn1c/s1ap/S1AP_LastVisitedGERANCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedNGRANCellInformation.c b/lib/asn1c/s1ap/S1AP_LastVisitedNGRANCellInformation.c index bcb8254fc..235f2444a 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedNGRANCellInformation.c +++ b/lib/asn1c/s1ap/S1AP_LastVisitedNGRANCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedNGRANCellInformation.h b/lib/asn1c/s1ap/S1AP_LastVisitedNGRANCellInformation.h index cb9f7822e..b87afc199 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedNGRANCellInformation.h +++ b/lib/asn1c/s1ap/S1AP_LastVisitedNGRANCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedUTRANCellInformation.c b/lib/asn1c/s1ap/S1AP_LastVisitedUTRANCellInformation.c index edfc8def1..1af2e4ab0 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedUTRANCellInformation.c +++ b/lib/asn1c/s1ap/S1AP_LastVisitedUTRANCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LastVisitedUTRANCellInformation.h b/lib/asn1c/s1ap/S1AP_LastVisitedUTRANCellInformation.h index 0ac5a0f2c..bd35c7df8 100644 --- a/lib/asn1c/s1ap/S1AP_LastVisitedUTRANCellInformation.h +++ b/lib/asn1c/s1ap/S1AP_LastVisitedUTRANCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Links-to-log.c b/lib/asn1c/s1ap/S1AP_Links-to-log.c index 265a11d03..be39bf8fb 100644 --- a/lib/asn1c/s1ap/S1AP_Links-to-log.c +++ b/lib/asn1c/s1ap/S1AP_Links-to-log.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Links-to-log.h b/lib/asn1c/s1ap/S1AP_Links-to-log.h index bb9c6ae63..e4729e37f 100644 --- a/lib/asn1c/s1ap/S1AP_Links-to-log.h +++ b/lib/asn1c/s1ap/S1AP_Links-to-log.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ListeningSubframePattern.c b/lib/asn1c/s1ap/S1AP_ListeningSubframePattern.c index 5b7c911d6..bcf04f119 100644 --- a/lib/asn1c/s1ap/S1AP_ListeningSubframePattern.c +++ b/lib/asn1c/s1ap/S1AP_ListeningSubframePattern.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -140,7 +140,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ListeningSubframePattern_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ListeningSubframePattern, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P85, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P85, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ListeningSubframePattern.h b/lib/asn1c/s1ap/S1AP_ListeningSubframePattern.h index e4d0d3a89..63b2fd5d8 100644 --- a/lib/asn1c/s1ap/S1AP_ListeningSubframePattern.h +++ b/lib/asn1c/s1ap/S1AP_ListeningSubframePattern.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LocationReport.c b/lib/asn1c/s1ap/S1AP_LocationReport.c index edcc6377e..0d0ef1007 100644 --- a/lib/asn1c/s1ap/S1AP_LocationReport.c +++ b/lib/asn1c/s1ap/S1AP_LocationReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_LocationReport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_LocationReport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P63, + &asn_DEF_S1AP_ProtocolIE_Container_7847P63, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_LocationReport.h b/lib/asn1c/s1ap/S1AP_LocationReport.h index de831e963..c7147cfab 100644 --- a/lib/asn1c/s1ap/S1AP_LocationReport.h +++ b/lib/asn1c/s1ap/S1AP_LocationReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_LocationReport */ typedef struct S1AP_LocationReport { - S1AP_ProtocolIE_Container_7838P63_t protocolIEs; + S1AP_ProtocolIE_Container_7847P63_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_LocationReportingControl.c b/lib/asn1c/s1ap/S1AP_LocationReportingControl.c index aaf2ef2d2..ce7ef7e6f 100644 --- a/lib/asn1c/s1ap/S1AP_LocationReportingControl.c +++ b/lib/asn1c/s1ap/S1AP_LocationReportingControl.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_LocationReportingControl_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_LocationReportingControl, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P61, + &asn_DEF_S1AP_ProtocolIE_Container_7847P61, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_LocationReportingControl.h b/lib/asn1c/s1ap/S1AP_LocationReportingControl.h index 8d98d9a5a..f87231731 100644 --- a/lib/asn1c/s1ap/S1AP_LocationReportingControl.h +++ b/lib/asn1c/s1ap/S1AP_LocationReportingControl.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_LocationReportingControl */ typedef struct S1AP_LocationReportingControl { - S1AP_ProtocolIE_Container_7838P61_t protocolIEs; + S1AP_ProtocolIE_Container_7847P61_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_LocationReportingFailureIndication.c b/lib/asn1c/s1ap/S1AP_LocationReportingFailureIndication.c index aee566053..d0b8fe8b2 100644 --- a/lib/asn1c/s1ap/S1AP_LocationReportingFailureIndication.c +++ b/lib/asn1c/s1ap/S1AP_LocationReportingFailureIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_LocationReportingFailureIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_LocationReportingFailureIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P62, + &asn_DEF_S1AP_ProtocolIE_Container_7847P62, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_LocationReportingFailureIndication.h b/lib/asn1c/s1ap/S1AP_LocationReportingFailureIndication.h index 559f6c6e0..87c28faed 100644 --- a/lib/asn1c/s1ap/S1AP_LocationReportingFailureIndication.h +++ b/lib/asn1c/s1ap/S1AP_LocationReportingFailureIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_LocationReportingFailureIndication */ typedef struct S1AP_LocationReportingFailureIndication { - S1AP_ProtocolIE_Container_7838P62_t protocolIEs; + S1AP_ProtocolIE_Container_7847P62_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_LoggedMBSFNMDT.c b/lib/asn1c/s1ap/S1AP_LoggedMBSFNMDT.c index 806000637..fc554e7d9 100644 --- a/lib/asn1c/s1ap/S1AP_LoggedMBSFNMDT.c +++ b/lib/asn1c/s1ap/S1AP_LoggedMBSFNMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_LoggedMBSFNMDT_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_LoggedMBSFNMDT, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P87, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P87, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_LoggedMBSFNMDT.h b/lib/asn1c/s1ap/S1AP_LoggedMBSFNMDT.h index 405b0b431..72dc6fde6 100644 --- a/lib/asn1c/s1ap/S1AP_LoggedMBSFNMDT.h +++ b/lib/asn1c/s1ap/S1AP_LoggedMBSFNMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LoggedMDT.c b/lib/asn1c/s1ap/S1AP_LoggedMDT.c index 829d0e354..b12b5db5a 100644 --- a/lib/asn1c/s1ap/S1AP_LoggedMDT.c +++ b/lib/asn1c/s1ap/S1AP_LoggedMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_LoggedMDT_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_LoggedMDT, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P86, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P86, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_LoggedMDT.h b/lib/asn1c/s1ap/S1AP_LoggedMDT.h index ce8c012bb..7cce8e562 100644 --- a/lib/asn1c/s1ap/S1AP_LoggedMDT.h +++ b/lib/asn1c/s1ap/S1AP_LoggedMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LoggingDuration.c b/lib/asn1c/s1ap/S1AP_LoggingDuration.c index 27ae9d4a1..f2b7e2781 100644 --- a/lib/asn1c/s1ap/S1AP_LoggingDuration.c +++ b/lib/asn1c/s1ap/S1AP_LoggingDuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LoggingDuration.h b/lib/asn1c/s1ap/S1AP_LoggingDuration.h index 100c1024e..bacea80fb 100644 --- a/lib/asn1c/s1ap/S1AP_LoggingDuration.h +++ b/lib/asn1c/s1ap/S1AP_LoggingDuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LoggingInterval.c b/lib/asn1c/s1ap/S1AP_LoggingInterval.c index 01c640cca..6b01e9beb 100644 --- a/lib/asn1c/s1ap/S1AP_LoggingInterval.c +++ b/lib/asn1c/s1ap/S1AP_LoggingInterval.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_LoggingInterval.h b/lib/asn1c/s1ap/S1AP_LoggingInterval.h index 2e20540cc..3e7561c12 100644 --- a/lib/asn1c/s1ap/S1AP_LoggingInterval.h +++ b/lib/asn1c/s1ap/S1AP_LoggingInterval.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M-TMSI.c b/lib/asn1c/s1ap/S1AP_M-TMSI.c index 96f4d05aa..8d8977207 100644 --- a/lib/asn1c/s1ap/S1AP_M-TMSI.c +++ b/lib/asn1c/s1ap/S1AP_M-TMSI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M-TMSI.h b/lib/asn1c/s1ap/S1AP_M-TMSI.h index 4545286b1..9b290fc69 100644 --- a/lib/asn1c/s1ap/S1AP_M-TMSI.h +++ b/lib/asn1c/s1ap/S1AP_M-TMSI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M1PeriodicReporting.c b/lib/asn1c/s1ap/S1AP_M1PeriodicReporting.c index bf3c609d6..8b4d84943 100644 --- a/lib/asn1c/s1ap/S1AP_M1PeriodicReporting.c +++ b/lib/asn1c/s1ap/S1AP_M1PeriodicReporting.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_M1PeriodicReporting_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_M1PeriodicReporting, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P106, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P106, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_M1PeriodicReporting.h b/lib/asn1c/s1ap/S1AP_M1PeriodicReporting.h index 657425fdb..efef4acf0 100644 --- a/lib/asn1c/s1ap/S1AP_M1PeriodicReporting.h +++ b/lib/asn1c/s1ap/S1AP_M1PeriodicReporting.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M1ReportingTrigger.c b/lib/asn1c/s1ap/S1AP_M1ReportingTrigger.c index cffb8ca1c..ce1bdb64a 100644 --- a/lib/asn1c/s1ap/S1AP_M1ReportingTrigger.c +++ b/lib/asn1c/s1ap/S1AP_M1ReportingTrigger.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M1ReportingTrigger.h b/lib/asn1c/s1ap/S1AP_M1ReportingTrigger.h index d779a8e6e..17acb9750 100644 --- a/lib/asn1c/s1ap/S1AP_M1ReportingTrigger.h +++ b/lib/asn1c/s1ap/S1AP_M1ReportingTrigger.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M1ThresholdEventA2.c b/lib/asn1c/s1ap/S1AP_M1ThresholdEventA2.c index 0eeee2957..6cf1f6246 100644 --- a/lib/asn1c/s1ap/S1AP_M1ThresholdEventA2.c +++ b/lib/asn1c/s1ap/S1AP_M1ThresholdEventA2.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_M1ThresholdEventA2_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_M1ThresholdEventA2, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P146, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P146, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_M1ThresholdEventA2.h b/lib/asn1c/s1ap/S1AP_M1ThresholdEventA2.h index 8db4b0b49..c2490f6d6 100644 --- a/lib/asn1c/s1ap/S1AP_M1ThresholdEventA2.h +++ b/lib/asn1c/s1ap/S1AP_M1ThresholdEventA2.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M3Configuration.c b/lib/asn1c/s1ap/S1AP_M3Configuration.c index c6b5b5891..4dc1507cc 100644 --- a/lib/asn1c/s1ap/S1AP_M3Configuration.c +++ b/lib/asn1c/s1ap/S1AP_M3Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_M3Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_M3Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P88, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P88, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_M3Configuration.h b/lib/asn1c/s1ap/S1AP_M3Configuration.h index f23d60d19..e6a64ac8a 100644 --- a/lib/asn1c/s1ap/S1AP_M3Configuration.h +++ b/lib/asn1c/s1ap/S1AP_M3Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M3period.c b/lib/asn1c/s1ap/S1AP_M3period.c index cfcbb4f54..b09267245 100644 --- a/lib/asn1c/s1ap/S1AP_M3period.c +++ b/lib/asn1c/s1ap/S1AP_M3period.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M3period.h b/lib/asn1c/s1ap/S1AP_M3period.h index 6441e3654..2e96a684f 100644 --- a/lib/asn1c/s1ap/S1AP_M3period.h +++ b/lib/asn1c/s1ap/S1AP_M3period.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M4Configuration.c b/lib/asn1c/s1ap/S1AP_M4Configuration.c index 20299497e..091020820 100644 --- a/lib/asn1c/s1ap/S1AP_M4Configuration.c +++ b/lib/asn1c/s1ap/S1AP_M4Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_M4Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_M4Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P89, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P89, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_M4Configuration.h b/lib/asn1c/s1ap/S1AP_M4Configuration.h index 69b1624ce..7fd7ec977 100644 --- a/lib/asn1c/s1ap/S1AP_M4Configuration.h +++ b/lib/asn1c/s1ap/S1AP_M4Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M4period.c b/lib/asn1c/s1ap/S1AP_M4period.c index 0eb83bcd0..89aa52f6d 100644 --- a/lib/asn1c/s1ap/S1AP_M4period.c +++ b/lib/asn1c/s1ap/S1AP_M4period.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M4period.h b/lib/asn1c/s1ap/S1AP_M4period.h index f7fe2084b..097f6ec09 100644 --- a/lib/asn1c/s1ap/S1AP_M4period.h +++ b/lib/asn1c/s1ap/S1AP_M4period.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M5Configuration.c b/lib/asn1c/s1ap/S1AP_M5Configuration.c index 505632d7e..976dd3e6a 100644 --- a/lib/asn1c/s1ap/S1AP_M5Configuration.c +++ b/lib/asn1c/s1ap/S1AP_M5Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_M5Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_M5Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P90, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P90, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_M5Configuration.h b/lib/asn1c/s1ap/S1AP_M5Configuration.h index 34595951d..ca9ff8d1a 100644 --- a/lib/asn1c/s1ap/S1AP_M5Configuration.h +++ b/lib/asn1c/s1ap/S1AP_M5Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M5period.c b/lib/asn1c/s1ap/S1AP_M5period.c index 75995a11f..7b4238dce 100644 --- a/lib/asn1c/s1ap/S1AP_M5period.c +++ b/lib/asn1c/s1ap/S1AP_M5period.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M5period.h b/lib/asn1c/s1ap/S1AP_M5period.h index c434d7c87..d3aca2d71 100644 --- a/lib/asn1c/s1ap/S1AP_M5period.h +++ b/lib/asn1c/s1ap/S1AP_M5period.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M6Configuration.c b/lib/asn1c/s1ap/S1AP_M6Configuration.c index 3c2ecb250..240096289 100644 --- a/lib/asn1c/s1ap/S1AP_M6Configuration.c +++ b/lib/asn1c/s1ap/S1AP_M6Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_M6Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_M6Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P91, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P91, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_M6Configuration.h b/lib/asn1c/s1ap/S1AP_M6Configuration.h index f5fdcc915..29d6bd215 100644 --- a/lib/asn1c/s1ap/S1AP_M6Configuration.h +++ b/lib/asn1c/s1ap/S1AP_M6Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M6delay-threshold.c b/lib/asn1c/s1ap/S1AP_M6delay-threshold.c index 819ce009f..2cd73307d 100644 --- a/lib/asn1c/s1ap/S1AP_M6delay-threshold.c +++ b/lib/asn1c/s1ap/S1AP_M6delay-threshold.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M6delay-threshold.h b/lib/asn1c/s1ap/S1AP_M6delay-threshold.h index c160e60df..531a21b0f 100644 --- a/lib/asn1c/s1ap/S1AP_M6delay-threshold.h +++ b/lib/asn1c/s1ap/S1AP_M6delay-threshold.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M6report-Interval.c b/lib/asn1c/s1ap/S1AP_M6report-Interval.c index 7fdb9eab8..37c22e41d 100644 --- a/lib/asn1c/s1ap/S1AP_M6report-Interval.c +++ b/lib/asn1c/s1ap/S1AP_M6report-Interval.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M6report-Interval.h b/lib/asn1c/s1ap/S1AP_M6report-Interval.h index 337e469e3..85cc9d8e9 100644 --- a/lib/asn1c/s1ap/S1AP_M6report-Interval.h +++ b/lib/asn1c/s1ap/S1AP_M6report-Interval.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M7Configuration.c b/lib/asn1c/s1ap/S1AP_M7Configuration.c index 3c9906231..382243d3c 100644 --- a/lib/asn1c/s1ap/S1AP_M7Configuration.c +++ b/lib/asn1c/s1ap/S1AP_M7Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_M7Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_M7Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P92, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P92, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_M7Configuration.h b/lib/asn1c/s1ap/S1AP_M7Configuration.h index c0b818b7b..182023ec9 100644 --- a/lib/asn1c/s1ap/S1AP_M7Configuration.h +++ b/lib/asn1c/s1ap/S1AP_M7Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M7period.c b/lib/asn1c/s1ap/S1AP_M7period.c index 42712cddf..e38870143 100644 --- a/lib/asn1c/s1ap/S1AP_M7period.c +++ b/lib/asn1c/s1ap/S1AP_M7period.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_M7period.h b/lib/asn1c/s1ap/S1AP_M7period.h index f17790aa6..d7dc619ab 100644 --- a/lib/asn1c/s1ap/S1AP_M7period.h +++ b/lib/asn1c/s1ap/S1AP_M7period.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLog.c b/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLog.c index f01d6902f..ec05c0348 100644 --- a/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLog.c +++ b/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLog.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLog.h b/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLog.h index a9e49809a..952e018c7 100644 --- a/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLog.h +++ b/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLog.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLogInfo.c b/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLogInfo.c index 88c2ff2be..37e2db52c 100644 --- a/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLogInfo.c +++ b/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLogInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -78,7 +78,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MBSFN_ResultToLogInfo_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_MBSFN_ResultToLogInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P94, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P94, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLogInfo.h b/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLogInfo.h index 6a02086f9..f01c76910 100644 --- a/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLogInfo.h +++ b/lib/asn1c/s1ap/S1AP_MBSFN-ResultToLogInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDT-Activation.c b/lib/asn1c/s1ap/S1AP_MDT-Activation.c index 3f122254d..f9345dc7a 100644 --- a/lib/asn1c/s1ap/S1AP_MDT-Activation.c +++ b/lib/asn1c/s1ap/S1AP_MDT-Activation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDT-Activation.h b/lib/asn1c/s1ap/S1AP_MDT-Activation.h index 0076419e4..28a50c5c6 100644 --- a/lib/asn1c/s1ap/S1AP_MDT-Activation.h +++ b/lib/asn1c/s1ap/S1AP_MDT-Activation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDT-Configuration.c b/lib/asn1c/s1ap/S1AP_MDT-Configuration.c index 15c5956ac..715dd1dcb 100644 --- a/lib/asn1c/s1ap/S1AP_MDT-Configuration.c +++ b/lib/asn1c/s1ap/S1AP_MDT-Configuration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_MDT_Configuration_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_MDT_Configuration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P93, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P93, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MDT-Configuration.h b/lib/asn1c/s1ap/S1AP_MDT-Configuration.h index 14f046a5b..1094ac675 100644 --- a/lib/asn1c/s1ap/S1AP_MDT-Configuration.h +++ b/lib/asn1c/s1ap/S1AP_MDT-Configuration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDT-ConfigurationNR.c b/lib/asn1c/s1ap/S1AP_MDT-ConfigurationNR.c index 3d35993e0..46bb099da 100644 --- a/lib/asn1c/s1ap/S1AP_MDT-ConfigurationNR.c +++ b/lib/asn1c/s1ap/S1AP_MDT-ConfigurationNR.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDT-ConfigurationNR.h b/lib/asn1c/s1ap/S1AP_MDT-ConfigurationNR.h index 759821203..63405e659 100644 --- a/lib/asn1c/s1ap/S1AP_MDT-ConfigurationNR.h +++ b/lib/asn1c/s1ap/S1AP_MDT-ConfigurationNR.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDT-Location-Info.c b/lib/asn1c/s1ap/S1AP_MDT-Location-Info.c index 0778f5548..cc4962997 100644 --- a/lib/asn1c/s1ap/S1AP_MDT-Location-Info.c +++ b/lib/asn1c/s1ap/S1AP_MDT-Location-Info.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDT-Location-Info.h b/lib/asn1c/s1ap/S1AP_MDT-Location-Info.h index 027a18c8d..b89bc1e4d 100644 --- a/lib/asn1c/s1ap/S1AP_MDT-Location-Info.h +++ b/lib/asn1c/s1ap/S1AP_MDT-Location-Info.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDTMode-Extension.c b/lib/asn1c/s1ap/S1AP_MDTMode-Extension.c index 6d62fa950..07c857413 100644 --- a/lib/asn1c/s1ap/S1AP_MDTMode-Extension.c +++ b/lib/asn1c/s1ap/S1AP_MDTMode-Extension.c @@ -1,14 +1,14 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ #include "S1AP_MDTMode-Extension.h" /* - * This type is implemented using S1AP_ProtocolIE_SingleContainer_7841P17, + * This type is implemented using S1AP_ProtocolIE_SingleContainer_7850P17, * so here we adjust the DEF accordingly. */ static const ber_tlv_tag_t asn_DEF_S1AP_MDTMode_Extension_tags_1[] = { diff --git a/lib/asn1c/s1ap/S1AP_MDTMode-Extension.h b/lib/asn1c/s1ap/S1AP_MDTMode-Extension.h index a037c6898..6b9771a7e 100644 --- a/lib/asn1c/s1ap/S1AP_MDTMode-Extension.h +++ b/lib/asn1c/s1ap/S1AP_MDTMode-Extension.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ extern "C" { #endif /* S1AP_MDTMode-Extension */ -typedef S1AP_ProtocolIE_SingleContainer_7841P17_t S1AP_MDTMode_Extension_t; +typedef S1AP_ProtocolIE_SingleContainer_7850P17_t S1AP_MDTMode_Extension_t; /* Implementation */ extern asn_TYPE_descriptor_t asn_DEF_S1AP_MDTMode_Extension; diff --git a/lib/asn1c/s1ap/S1AP_MDTMode.c b/lib/asn1c/s1ap/S1AP_MDTMode.c index 755947e81..6cd9bc20f 100644 --- a/lib/asn1c/s1ap/S1AP_MDTMode.c +++ b/lib/asn1c/s1ap/S1AP_MDTMode.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDTMode.h b/lib/asn1c/s1ap/S1AP_MDTMode.h index bc38886e0..db881875a 100644 --- a/lib/asn1c/s1ap/S1AP_MDTMode.h +++ b/lib/asn1c/s1ap/S1AP_MDTMode.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDTPLMNList.c b/lib/asn1c/s1ap/S1AP_MDTPLMNList.c index e533180e2..f27d8b534 100644 --- a/lib/asn1c/s1ap/S1AP_MDTPLMNList.c +++ b/lib/asn1c/s1ap/S1AP_MDTPLMNList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MDTPLMNList.h b/lib/asn1c/s1ap/S1AP_MDTPLMNList.h index 46fe51bdd..7a02bdb69 100644 --- a/lib/asn1c/s1ap/S1AP_MDTPLMNList.h +++ b/lib/asn1c/s1ap/S1AP_MDTPLMNList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MME-Code.c b/lib/asn1c/s1ap/S1AP_MME-Code.c index e4443f901..451605d53 100644 --- a/lib/asn1c/s1ap/S1AP_MME-Code.c +++ b/lib/asn1c/s1ap/S1AP_MME-Code.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MME-Code.h b/lib/asn1c/s1ap/S1AP_MME-Code.h index f0eca81eb..cbcb77f11 100644 --- a/lib/asn1c/s1ap/S1AP_MME-Code.h +++ b/lib/asn1c/s1ap/S1AP_MME-Code.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MME-Group-ID.c b/lib/asn1c/s1ap/S1AP_MME-Group-ID.c index 2ae7e9d99..b996fbc7f 100644 --- a/lib/asn1c/s1ap/S1AP_MME-Group-ID.c +++ b/lib/asn1c/s1ap/S1AP_MME-Group-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MME-Group-ID.h b/lib/asn1c/s1ap/S1AP_MME-Group-ID.h index 9acb8d6f2..b1d4b501b 100644 --- a/lib/asn1c/s1ap/S1AP_MME-Group-ID.h +++ b/lib/asn1c/s1ap/S1AP_MME-Group-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MME-UE-S1AP-ID.c b/lib/asn1c/s1ap/S1AP_MME-UE-S1AP-ID.c index 9817f91eb..2ae4598cb 100644 --- a/lib/asn1c/s1ap/S1AP_MME-UE-S1AP-ID.c +++ b/lib/asn1c/s1ap/S1AP_MME-UE-S1AP-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MME-UE-S1AP-ID.h b/lib/asn1c/s1ap/S1AP_MME-UE-S1AP-ID.h index 0daf5f0fe..c8d56af17 100644 --- a/lib/asn1c/s1ap/S1AP_MME-UE-S1AP-ID.h +++ b/lib/asn1c/s1ap/S1AP_MME-UE-S1AP-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MMECPRelocationIndication.c b/lib/asn1c/s1ap/S1AP_MMECPRelocationIndication.c index c491a6298..9df0d3af9 100644 --- a/lib/asn1c/s1ap/S1AP_MMECPRelocationIndication.c +++ b/lib/asn1c/s1ap/S1AP_MMECPRelocationIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MMECPRelocationIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_MMECPRelocationIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P93, + &asn_DEF_S1AP_ProtocolIE_Container_7847P93, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MMECPRelocationIndication.h b/lib/asn1c/s1ap/S1AP_MMECPRelocationIndication.h index 5e9131c20..84875c18b 100644 --- a/lib/asn1c/s1ap/S1AP_MMECPRelocationIndication.h +++ b/lib/asn1c/s1ap/S1AP_MMECPRelocationIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_MMECPRelocationIndication */ typedef struct S1AP_MMECPRelocationIndication { - S1AP_ProtocolIE_Container_7838P93_t protocolIEs; + S1AP_ProtocolIE_Container_7847P93_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_MMEConfigurationTransfer.c b/lib/asn1c/s1ap/S1AP_MMEConfigurationTransfer.c index f08e8a889..572f5a28c 100644 --- a/lib/asn1c/s1ap/S1AP_MMEConfigurationTransfer.c +++ b/lib/asn1c/s1ap/S1AP_MMEConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MMEConfigurationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_MMEConfigurationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P71, + &asn_DEF_S1AP_ProtocolIE_Container_7847P71, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MMEConfigurationTransfer.h b/lib/asn1c/s1ap/S1AP_MMEConfigurationTransfer.h index f81322d4f..f7ddef10e 100644 --- a/lib/asn1c/s1ap/S1AP_MMEConfigurationTransfer.h +++ b/lib/asn1c/s1ap/S1AP_MMEConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_MMEConfigurationTransfer */ typedef struct S1AP_MMEConfigurationTransfer { - S1AP_ProtocolIE_Container_7838P71_t protocolIEs; + S1AP_ProtocolIE_Container_7847P71_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdate.c b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdate.c index 1c6e1b9dd..e9fb88b3b 100644 --- a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdate.c +++ b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MMEConfigurationUpdate_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_MMEConfigurationUpdate, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P49, + &asn_DEF_S1AP_ProtocolIE_Container_7847P49, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdate.h b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdate.h index 289ea66a7..3d13fecc5 100644 --- a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdate.h +++ b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_MMEConfigurationUpdate */ typedef struct S1AP_MMEConfigurationUpdate { - S1AP_ProtocolIE_Container_7838P49_t protocolIEs; + S1AP_ProtocolIE_Container_7847P49_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateAcknowledge.c b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateAcknowledge.c index 53ca30bc0..abeda393c 100644 --- a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateAcknowledge.c +++ b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MMEConfigurationUpdateAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_MMEConfigurationUpdateAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P50, + &asn_DEF_S1AP_ProtocolIE_Container_7847P50, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateAcknowledge.h b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateAcknowledge.h index 1dac8f34e..649473b55 100644 --- a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateAcknowledge.h +++ b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_MMEConfigurationUpdateAcknowledge */ typedef struct S1AP_MMEConfigurationUpdateAcknowledge { - S1AP_ProtocolIE_Container_7838P50_t protocolIEs; + S1AP_ProtocolIE_Container_7847P50_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateFailure.c b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateFailure.c index 94cc2fa0c..b6806f228 100644 --- a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateFailure.c +++ b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MMEConfigurationUpdateFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_MMEConfigurationUpdateFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P51, + &asn_DEF_S1AP_ProtocolIE_Container_7847P51, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateFailure.h b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateFailure.h index f41e91d5b..762fef561 100644 --- a/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateFailure.h +++ b/lib/asn1c/s1ap/S1AP_MMEConfigurationUpdateFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_MMEConfigurationUpdateFailure */ typedef struct S1AP_MMEConfigurationUpdateFailure { - S1AP_ProtocolIE_Container_7838P51_t protocolIEs; + S1AP_ProtocolIE_Container_7847P51_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_MMEDirectInformationTransfer.c b/lib/asn1c/s1ap/S1AP_MMEDirectInformationTransfer.c index 88011121d..b85c6d8c8 100644 --- a/lib/asn1c/s1ap/S1AP_MMEDirectInformationTransfer.c +++ b/lib/asn1c/s1ap/S1AP_MMEDirectInformationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MMEDirectInformationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_MMEDirectInformationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P69, + &asn_DEF_S1AP_ProtocolIE_Container_7847P69, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MMEDirectInformationTransfer.h b/lib/asn1c/s1ap/S1AP_MMEDirectInformationTransfer.h index a3dc41880..83a3befcc 100644 --- a/lib/asn1c/s1ap/S1AP_MMEDirectInformationTransfer.h +++ b/lib/asn1c/s1ap/S1AP_MMEDirectInformationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_MMEDirectInformationTransfer */ typedef struct S1AP_MMEDirectInformationTransfer { - S1AP_ProtocolIE_Container_7838P69_t protocolIEs; + S1AP_ProtocolIE_Container_7847P69_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_MMEEarlyStatusTransfer.c b/lib/asn1c/s1ap/S1AP_MMEEarlyStatusTransfer.c index d3fbbc2a4..df5a7d5e1 100644 --- a/lib/asn1c/s1ap/S1AP_MMEEarlyStatusTransfer.c +++ b/lib/asn1c/s1ap/S1AP_MMEEarlyStatusTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MMEEarlyStatusTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_MMEEarlyStatusTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P14, + &asn_DEF_S1AP_ProtocolIE_Container_7847P14, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MMEEarlyStatusTransfer.h b/lib/asn1c/s1ap/S1AP_MMEEarlyStatusTransfer.h index c77b3b859..b9279962c 100644 --- a/lib/asn1c/s1ap/S1AP_MMEEarlyStatusTransfer.h +++ b/lib/asn1c/s1ap/S1AP_MMEEarlyStatusTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_MMEEarlyStatusTransfer */ typedef struct S1AP_MMEEarlyStatusTransfer { - S1AP_ProtocolIE_Container_7838P14_t protocolIEs; + S1AP_ProtocolIE_Container_7847P14_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_MMEPagingTarget.c b/lib/asn1c/s1ap/S1AP_MMEPagingTarget.c index e9577811f..2bbbcc494 100644 --- a/lib/asn1c/s1ap/S1AP_MMEPagingTarget.c +++ b/lib/asn1c/s1ap/S1AP_MMEPagingTarget.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MMEPagingTarget.h b/lib/asn1c/s1ap/S1AP_MMEPagingTarget.h index 4150117cd..583e5c539 100644 --- a/lib/asn1c/s1ap/S1AP_MMEPagingTarget.h +++ b/lib/asn1c/s1ap/S1AP_MMEPagingTarget.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MMERelaySupportIndicator.c b/lib/asn1c/s1ap/S1AP_MMERelaySupportIndicator.c index 499c086e5..860eee5a6 100644 --- a/lib/asn1c/s1ap/S1AP_MMERelaySupportIndicator.c +++ b/lib/asn1c/s1ap/S1AP_MMERelaySupportIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MMERelaySupportIndicator.h b/lib/asn1c/s1ap/S1AP_MMERelaySupportIndicator.h index d5786482d..a482f25d2 100644 --- a/lib/asn1c/s1ap/S1AP_MMERelaySupportIndicator.h +++ b/lib/asn1c/s1ap/S1AP_MMERelaySupportIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MMEStatusTransfer.c b/lib/asn1c/s1ap/S1AP_MMEStatusTransfer.c index 41c669e46..6615658b3 100644 --- a/lib/asn1c/s1ap/S1AP_MMEStatusTransfer.c +++ b/lib/asn1c/s1ap/S1AP_MMEStatusTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_MMEStatusTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_MMEStatusTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P56, + &asn_DEF_S1AP_ProtocolIE_Container_7847P56, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MMEStatusTransfer.h b/lib/asn1c/s1ap/S1AP_MMEStatusTransfer.h index 334bf5848..8adfe027f 100644 --- a/lib/asn1c/s1ap/S1AP_MMEStatusTransfer.h +++ b/lib/asn1c/s1ap/S1AP_MMEStatusTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_MMEStatusTransfer */ typedef struct S1AP_MMEStatusTransfer { - S1AP_ProtocolIE_Container_7838P56_t protocolIEs; + S1AP_ProtocolIE_Container_7847P56_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_MMEname.c b/lib/asn1c/s1ap/S1AP_MMEname.c index f837fec4e..edec26c25 100644 --- a/lib/asn1c/s1ap/S1AP_MMEname.c +++ b/lib/asn1c/s1ap/S1AP_MMEname.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MMEname.h b/lib/asn1c/s1ap/S1AP_MMEname.h index 6fef99a9d..7fdb39c5c 100644 --- a/lib/asn1c/s1ap/S1AP_MMEname.h +++ b/lib/asn1c/s1ap/S1AP_MMEname.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MSClassmark2.c b/lib/asn1c/s1ap/S1AP_MSClassmark2.c index 8c1ab8ced..ab1f66786 100644 --- a/lib/asn1c/s1ap/S1AP_MSClassmark2.c +++ b/lib/asn1c/s1ap/S1AP_MSClassmark2.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MSClassmark2.h b/lib/asn1c/s1ap/S1AP_MSClassmark2.h index 947fb77e4..bdcb39bf7 100644 --- a/lib/asn1c/s1ap/S1AP_MSClassmark2.h +++ b/lib/asn1c/s1ap/S1AP_MSClassmark2.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MSClassmark3.c b/lib/asn1c/s1ap/S1AP_MSClassmark3.c index bb7bc2824..81c5b86ca 100644 --- a/lib/asn1c/s1ap/S1AP_MSClassmark3.c +++ b/lib/asn1c/s1ap/S1AP_MSClassmark3.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MSClassmark3.h b/lib/asn1c/s1ap/S1AP_MSClassmark3.h index 49cc309d6..8b04e5378 100644 --- a/lib/asn1c/s1ap/S1AP_MSClassmark3.h +++ b/lib/asn1c/s1ap/S1AP_MSClassmark3.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ManagementBasedMDTAllowed.c b/lib/asn1c/s1ap/S1AP_ManagementBasedMDTAllowed.c index 032aeda05..d8734869a 100644 --- a/lib/asn1c/s1ap/S1AP_ManagementBasedMDTAllowed.c +++ b/lib/asn1c/s1ap/S1AP_ManagementBasedMDTAllowed.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ManagementBasedMDTAllowed.h b/lib/asn1c/s1ap/S1AP_ManagementBasedMDTAllowed.h index 7df200729..01986504d 100644 --- a/lib/asn1c/s1ap/S1AP_ManagementBasedMDTAllowed.h +++ b/lib/asn1c/s1ap/S1AP_ManagementBasedMDTAllowed.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Masked-IMEISV.c b/lib/asn1c/s1ap/S1AP_Masked-IMEISV.c index 00531a05b..56c1d23d3 100644 --- a/lib/asn1c/s1ap/S1AP_Masked-IMEISV.c +++ b/lib/asn1c/s1ap/S1AP_Masked-IMEISV.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Masked-IMEISV.h b/lib/asn1c/s1ap/S1AP_Masked-IMEISV.h index 17bfdd65a..ddea85b2f 100644 --- a/lib/asn1c/s1ap/S1AP_Masked-IMEISV.h +++ b/lib/asn1c/s1ap/S1AP_Masked-IMEISV.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MeasurementThresholdA2.c b/lib/asn1c/s1ap/S1AP_MeasurementThresholdA2.c index 0140d256e..ec7be0c1d 100644 --- a/lib/asn1c/s1ap/S1AP_MeasurementThresholdA2.c +++ b/lib/asn1c/s1ap/S1AP_MeasurementThresholdA2.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MeasurementThresholdA2.h b/lib/asn1c/s1ap/S1AP_MeasurementThresholdA2.h index 831d5af48..62abd8cad 100644 --- a/lib/asn1c/s1ap/S1AP_MeasurementThresholdA2.h +++ b/lib/asn1c/s1ap/S1AP_MeasurementThresholdA2.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MeasurementsToActivate.c b/lib/asn1c/s1ap/S1AP_MeasurementsToActivate.c index 4f1c598fc..0628e30c6 100644 --- a/lib/asn1c/s1ap/S1AP_MeasurementsToActivate.c +++ b/lib/asn1c/s1ap/S1AP_MeasurementsToActivate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MeasurementsToActivate.h b/lib/asn1c/s1ap/S1AP_MeasurementsToActivate.h index 831dd4beb..02d38ba59 100644 --- a/lib/asn1c/s1ap/S1AP_MeasurementsToActivate.h +++ b/lib/asn1c/s1ap/S1AP_MeasurementsToActivate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MessageIdentifier.c b/lib/asn1c/s1ap/S1AP_MessageIdentifier.c index 4e74201c9..53bcc93ff 100644 --- a/lib/asn1c/s1ap/S1AP_MessageIdentifier.c +++ b/lib/asn1c/s1ap/S1AP_MessageIdentifier.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MessageIdentifier.h b/lib/asn1c/s1ap/S1AP_MessageIdentifier.h index c36487aa2..0efdba7b4 100644 --- a/lib/asn1c/s1ap/S1AP_MessageIdentifier.h +++ b/lib/asn1c/s1ap/S1AP_MessageIdentifier.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MobilityInformation.c b/lib/asn1c/s1ap/S1AP_MobilityInformation.c index 42f65a79e..12b1bea4b 100644 --- a/lib/asn1c/s1ap/S1AP_MobilityInformation.c +++ b/lib/asn1c/s1ap/S1AP_MobilityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MobilityInformation.h b/lib/asn1c/s1ap/S1AP_MobilityInformation.h index 1a1ed9e14..abdaac1fa 100644 --- a/lib/asn1c/s1ap/S1AP_MobilityInformation.h +++ b/lib/asn1c/s1ap/S1AP_MobilityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MutingAvailabilityIndication.c b/lib/asn1c/s1ap/S1AP_MutingAvailabilityIndication.c index 654cbfe36..c1f549856 100644 --- a/lib/asn1c/s1ap/S1AP_MutingAvailabilityIndication.c +++ b/lib/asn1c/s1ap/S1AP_MutingAvailabilityIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MutingAvailabilityIndication.h b/lib/asn1c/s1ap/S1AP_MutingAvailabilityIndication.h index 52a670d0f..be6ee1505 100644 --- a/lib/asn1c/s1ap/S1AP_MutingAvailabilityIndication.h +++ b/lib/asn1c/s1ap/S1AP_MutingAvailabilityIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_MutingPatternInformation.c b/lib/asn1c/s1ap/S1AP_MutingPatternInformation.c index caba47979..87e4b26b6 100644 --- a/lib/asn1c/s1ap/S1AP_MutingPatternInformation.c +++ b/lib/asn1c/s1ap/S1AP_MutingPatternInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -142,7 +142,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_MutingPatternInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_MutingPatternInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P95, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P95, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_MutingPatternInformation.h b/lib/asn1c/s1ap/S1AP_MutingPatternInformation.h index 0e70cdf1b..dc2236a67 100644 --- a/lib/asn1c/s1ap/S1AP_MutingPatternInformation.h +++ b/lib/asn1c/s1ap/S1AP_MutingPatternInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NAS-PDU.c b/lib/asn1c/s1ap/S1AP_NAS-PDU.c index 0620fadac..43410aa59 100644 --- a/lib/asn1c/s1ap/S1AP_NAS-PDU.c +++ b/lib/asn1c/s1ap/S1AP_NAS-PDU.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NAS-PDU.h b/lib/asn1c/s1ap/S1AP_NAS-PDU.h index 7fc58bb21..fc24d87bd 100644 --- a/lib/asn1c/s1ap/S1AP_NAS-PDU.h +++ b/lib/asn1c/s1ap/S1AP_NAS-PDU.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NASDeliveryIndication.c b/lib/asn1c/s1ap/S1AP_NASDeliveryIndication.c index 59328ed6d..492242dd7 100644 --- a/lib/asn1c/s1ap/S1AP_NASDeliveryIndication.c +++ b/lib/asn1c/s1ap/S1AP_NASDeliveryIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_NASDeliveryIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_NASDeliveryIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P39, + &asn_DEF_S1AP_ProtocolIE_Container_7847P39, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_NASDeliveryIndication.h b/lib/asn1c/s1ap/S1AP_NASDeliveryIndication.h index 86306f200..ce16cc520 100644 --- a/lib/asn1c/s1ap/S1AP_NASDeliveryIndication.h +++ b/lib/asn1c/s1ap/S1AP_NASDeliveryIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_NASDeliveryIndication */ typedef struct S1AP_NASDeliveryIndication { - S1AP_ProtocolIE_Container_7838P39_t protocolIEs; + S1AP_ProtocolIE_Container_7847P39_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_NASNonDeliveryIndication.c b/lib/asn1c/s1ap/S1AP_NASNonDeliveryIndication.c index 6185420ae..94289fb85 100644 --- a/lib/asn1c/s1ap/S1AP_NASNonDeliveryIndication.c +++ b/lib/asn1c/s1ap/S1AP_NASNonDeliveryIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_NASNonDeliveryIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_NASNonDeliveryIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P37, + &asn_DEF_S1AP_ProtocolIE_Container_7847P37, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_NASNonDeliveryIndication.h b/lib/asn1c/s1ap/S1AP_NASNonDeliveryIndication.h index c0df8957d..61a22deeb 100644 --- a/lib/asn1c/s1ap/S1AP_NASNonDeliveryIndication.h +++ b/lib/asn1c/s1ap/S1AP_NASNonDeliveryIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_NASNonDeliveryIndication */ typedef struct S1AP_NASNonDeliveryIndication { - S1AP_ProtocolIE_Container_7838P37_t protocolIEs; + S1AP_ProtocolIE_Container_7847P37_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_NASSecurityParametersfromE-UTRAN.c b/lib/asn1c/s1ap/S1AP_NASSecurityParametersfromE-UTRAN.c index b72ffb9ee..e0c646d37 100644 --- a/lib/asn1c/s1ap/S1AP_NASSecurityParametersfromE-UTRAN.c +++ b/lib/asn1c/s1ap/S1AP_NASSecurityParametersfromE-UTRAN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NASSecurityParametersfromE-UTRAN.h b/lib/asn1c/s1ap/S1AP_NASSecurityParametersfromE-UTRAN.h index c924dcc30..cdf7c9eaf 100644 --- a/lib/asn1c/s1ap/S1AP_NASSecurityParametersfromE-UTRAN.h +++ b/lib/asn1c/s1ap/S1AP_NASSecurityParametersfromE-UTRAN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NASSecurityParameterstoE-UTRAN.c b/lib/asn1c/s1ap/S1AP_NASSecurityParameterstoE-UTRAN.c index b152dccc5..d14c30e28 100644 --- a/lib/asn1c/s1ap/S1AP_NASSecurityParameterstoE-UTRAN.c +++ b/lib/asn1c/s1ap/S1AP_NASSecurityParameterstoE-UTRAN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NASSecurityParameterstoE-UTRAN.h b/lib/asn1c/s1ap/S1AP_NASSecurityParameterstoE-UTRAN.h index 36406d641..e7d2938c9 100644 --- a/lib/asn1c/s1ap/S1AP_NASSecurityParameterstoE-UTRAN.h +++ b/lib/asn1c/s1ap/S1AP_NASSecurityParameterstoE-UTRAN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-DefaultPagingDRX.c b/lib/asn1c/s1ap/S1AP_NB-IoT-DefaultPagingDRX.c index 83ff6cbfd..e2ca5ffb0 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-DefaultPagingDRX.c +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-DefaultPagingDRX.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-DefaultPagingDRX.h b/lib/asn1c/s1ap/S1AP_NB-IoT-DefaultPagingDRX.h index 4b0e9217f..5a77115c5 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-DefaultPagingDRX.h +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-DefaultPagingDRX.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRX-Cycle.c b/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRX-Cycle.c index 574132346..f2a204813 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRX-Cycle.c +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRX-Cycle.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRX-Cycle.h b/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRX-Cycle.h index 69c42e4a0..c147310d3 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRX-Cycle.h +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRX-Cycle.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRXInformation.c b/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRXInformation.c index 032a80fd3..0265bc62d 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRXInformation.c +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRXInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_NB_IoT_Paging_eDRXInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_NB_IoT_Paging_eDRXInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P96, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P96, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRXInformation.h b/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRXInformation.h index 5c9545785..4e3f64762 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRXInformation.h +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-Paging-eDRXInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-PagingDRX.c b/lib/asn1c/s1ap/S1AP_NB-IoT-PagingDRX.c index 7ab4fb174..d365b9891 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-PagingDRX.c +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-PagingDRX.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-PagingDRX.h b/lib/asn1c/s1ap/S1AP_NB-IoT-PagingDRX.h index 95ef6bdf2..d43121b46 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-PagingDRX.h +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-PagingDRX.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-PagingTimeWindow.c b/lib/asn1c/s1ap/S1AP_NB-IoT-PagingTimeWindow.c index e140db51e..6351e45ae 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-PagingTimeWindow.c +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-PagingTimeWindow.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-PagingTimeWindow.h b/lib/asn1c/s1ap/S1AP_NB-IoT-PagingTimeWindow.h index 8ca9b99ee..64a23fd9b 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-PagingTimeWindow.h +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-PagingTimeWindow.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-RLF-Report-Container.c b/lib/asn1c/s1ap/S1AP_NB-IoT-RLF-Report-Container.c index e931b29bb..3ba8bf032 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-RLF-Report-Container.c +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-RLF-Report-Container.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-RLF-Report-Container.h b/lib/asn1c/s1ap/S1AP_NB-IoT-RLF-Report-Container.h index ad6bbd4ae..1fdbd46f8 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-RLF-Report-Container.h +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-RLF-Report-Container.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-UEIdentityIndexValue.c b/lib/asn1c/s1ap/S1AP_NB-IoT-UEIdentityIndexValue.c index cd9fc5d97..e2291bded 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-UEIdentityIndexValue.c +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-UEIdentityIndexValue.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NB-IoT-UEIdentityIndexValue.h b/lib/asn1c/s1ap/S1AP_NB-IoT-UEIdentityIndexValue.h index b46e8a939..38bf19924 100644 --- a/lib/asn1c/s1ap/S1AP_NB-IoT-UEIdentityIndexValue.h +++ b/lib/asn1c/s1ap/S1AP_NB-IoT-UEIdentityIndexValue.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NG-eNB.c b/lib/asn1c/s1ap/S1AP_NG-eNB.c index d0a08018e..601bc84b1 100644 --- a/lib/asn1c/s1ap/S1AP_NG-eNB.c +++ b/lib/asn1c/s1ap/S1AP_NG-eNB.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_NG_eNB_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_NG_eNB, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P144, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P144, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_NG-eNB.h b/lib/asn1c/s1ap/S1AP_NG-eNB.h index f12fcc48f..525ad345f 100644 --- a/lib/asn1c/s1ap/S1AP_NG-eNB.h +++ b/lib/asn1c/s1ap/S1AP_NG-eNB.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NR-CGI.c b/lib/asn1c/s1ap/S1AP_NR-CGI.c index b2a0e6e3e..09e083add 100644 --- a/lib/asn1c/s1ap/S1AP_NR-CGI.c +++ b/lib/asn1c/s1ap/S1AP_NR-CGI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_NR_CGI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_NR_CGI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P97, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P97, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_NR-CGI.h b/lib/asn1c/s1ap/S1AP_NR-CGI.h index 00eca1c69..0d32bdf12 100644 --- a/lib/asn1c/s1ap/S1AP_NR-CGI.h +++ b/lib/asn1c/s1ap/S1AP_NR-CGI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRCellIdentity.c b/lib/asn1c/s1ap/S1AP_NRCellIdentity.c index 193f3a3f3..9e9831fa2 100644 --- a/lib/asn1c/s1ap/S1AP_NRCellIdentity.c +++ b/lib/asn1c/s1ap/S1AP_NRCellIdentity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRCellIdentity.h b/lib/asn1c/s1ap/S1AP_NRCellIdentity.h index 995357ea2..8d73da9ca 100644 --- a/lib/asn1c/s1ap/S1AP_NRCellIdentity.h +++ b/lib/asn1c/s1ap/S1AP_NRCellIdentity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRUESecurityCapabilities.c b/lib/asn1c/s1ap/S1AP_NRUESecurityCapabilities.c index e28f38e10..28005c9c3 100644 --- a/lib/asn1c/s1ap/S1AP_NRUESecurityCapabilities.c +++ b/lib/asn1c/s1ap/S1AP_NRUESecurityCapabilities.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_NRUESecurityCapabilities_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_NRUESecurityCapabilities, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P98, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P98, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_NRUESecurityCapabilities.h b/lib/asn1c/s1ap/S1AP_NRUESecurityCapabilities.h index d84e7a94d..af11aaca1 100644 --- a/lib/asn1c/s1ap/S1AP_NRUESecurityCapabilities.h +++ b/lib/asn1c/s1ap/S1AP_NRUESecurityCapabilities.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRUESidelinkAggregateMaximumBitrate.c b/lib/asn1c/s1ap/S1AP_NRUESidelinkAggregateMaximumBitrate.c index 722ae7d42..db50cbded 100644 --- a/lib/asn1c/s1ap/S1AP_NRUESidelinkAggregateMaximumBitrate.c +++ b/lib/asn1c/s1ap/S1AP_NRUESidelinkAggregateMaximumBitrate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_NRUESidelinkAggregateMaximumBitrate_1[] = { ATF_POINTER, 1, offsetof(struct S1AP_NRUESidelinkAggregateMaximumBitrate, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P100, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P100, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_NRUESidelinkAggregateMaximumBitrate.h b/lib/asn1c/s1ap/S1AP_NRUESidelinkAggregateMaximumBitrate.h index 6d63c8f1b..de9758d70 100644 --- a/lib/asn1c/s1ap/S1AP_NRUESidelinkAggregateMaximumBitrate.h +++ b/lib/asn1c/s1ap/S1AP_NRUESidelinkAggregateMaximumBitrate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRV2XServicesAuthorized.c b/lib/asn1c/s1ap/S1AP_NRV2XServicesAuthorized.c index ab2ca9668..24648124e 100644 --- a/lib/asn1c/s1ap/S1AP_NRV2XServicesAuthorized.c +++ b/lib/asn1c/s1ap/S1AP_NRV2XServicesAuthorized.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_NRV2XServicesAuthorized_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_NRV2XServicesAuthorized, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P99, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P99, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_NRV2XServicesAuthorized.h b/lib/asn1c/s1ap/S1AP_NRV2XServicesAuthorized.h index a6c229d6c..8e59219ae 100644 --- a/lib/asn1c/s1ap/S1AP_NRV2XServicesAuthorized.h +++ b/lib/asn1c/s1ap/S1AP_NRV2XServicesAuthorized.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRencryptionAlgorithms.c b/lib/asn1c/s1ap/S1AP_NRencryptionAlgorithms.c index 5d242b8bb..ee9355e05 100644 --- a/lib/asn1c/s1ap/S1AP_NRencryptionAlgorithms.c +++ b/lib/asn1c/s1ap/S1AP_NRencryptionAlgorithms.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRencryptionAlgorithms.h b/lib/asn1c/s1ap/S1AP_NRencryptionAlgorithms.h index a67d75f2a..54699c1e7 100644 --- a/lib/asn1c/s1ap/S1AP_NRencryptionAlgorithms.h +++ b/lib/asn1c/s1ap/S1AP_NRencryptionAlgorithms.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRintegrityProtectionAlgorithms.c b/lib/asn1c/s1ap/S1AP_NRintegrityProtectionAlgorithms.c index 0d7e7ea40..eb2680bed 100644 --- a/lib/asn1c/s1ap/S1AP_NRintegrityProtectionAlgorithms.c +++ b/lib/asn1c/s1ap/S1AP_NRintegrityProtectionAlgorithms.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRintegrityProtectionAlgorithms.h b/lib/asn1c/s1ap/S1AP_NRintegrityProtectionAlgorithms.h index 8fdee2bdd..75d9aa5ac 100644 --- a/lib/asn1c/s1ap/S1AP_NRintegrityProtectionAlgorithms.h +++ b/lib/asn1c/s1ap/S1AP_NRintegrityProtectionAlgorithms.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRrestrictionin5GS.c b/lib/asn1c/s1ap/S1AP_NRrestrictionin5GS.c index 3c4b0f3a8..ca0ebfc31 100644 --- a/lib/asn1c/s1ap/S1AP_NRrestrictionin5GS.c +++ b/lib/asn1c/s1ap/S1AP_NRrestrictionin5GS.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRrestrictionin5GS.h b/lib/asn1c/s1ap/S1AP_NRrestrictionin5GS.h index c8899a7ef..fe1cd1000 100644 --- a/lib/asn1c/s1ap/S1AP_NRrestrictionin5GS.h +++ b/lib/asn1c/s1ap/S1AP_NRrestrictionin5GS.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRrestrictioninEPSasSecondaryRAT.c b/lib/asn1c/s1ap/S1AP_NRrestrictioninEPSasSecondaryRAT.c index a540aff15..27d99f1e0 100644 --- a/lib/asn1c/s1ap/S1AP_NRrestrictioninEPSasSecondaryRAT.c +++ b/lib/asn1c/s1ap/S1AP_NRrestrictioninEPSasSecondaryRAT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NRrestrictioninEPSasSecondaryRAT.h b/lib/asn1c/s1ap/S1AP_NRrestrictioninEPSasSecondaryRAT.h index a73dfb6c3..c5e8f9dbb 100644 --- a/lib/asn1c/s1ap/S1AP_NRrestrictioninEPSasSecondaryRAT.h +++ b/lib/asn1c/s1ap/S1AP_NRrestrictioninEPSasSecondaryRAT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NextPagingAreaScope.c b/lib/asn1c/s1ap/S1AP_NextPagingAreaScope.c index 05df1f784..003a114db 100644 --- a/lib/asn1c/s1ap/S1AP_NextPagingAreaScope.c +++ b/lib/asn1c/s1ap/S1AP_NextPagingAreaScope.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NextPagingAreaScope.h b/lib/asn1c/s1ap/S1AP_NextPagingAreaScope.h index 672ce531a..2c3604f07 100644 --- a/lib/asn1c/s1ap/S1AP_NextPagingAreaScope.h +++ b/lib/asn1c/s1ap/S1AP_NextPagingAreaScope.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NotifySourceeNB.c b/lib/asn1c/s1ap/S1AP_NotifySourceeNB.c index 189a88132..57eed1ea7 100644 --- a/lib/asn1c/s1ap/S1AP_NotifySourceeNB.c +++ b/lib/asn1c/s1ap/S1AP_NotifySourceeNB.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NotifySourceeNB.h b/lib/asn1c/s1ap/S1AP_NotifySourceeNB.h index e2f375c89..6a3714309 100644 --- a/lib/asn1c/s1ap/S1AP_NotifySourceeNB.h +++ b/lib/asn1c/s1ap/S1AP_NotifySourceeNB.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NumberOfBroadcasts.c b/lib/asn1c/s1ap/S1AP_NumberOfBroadcasts.c index 3fbb42ec9..6efc20f15 100644 --- a/lib/asn1c/s1ap/S1AP_NumberOfBroadcasts.c +++ b/lib/asn1c/s1ap/S1AP_NumberOfBroadcasts.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NumberOfBroadcasts.h b/lib/asn1c/s1ap/S1AP_NumberOfBroadcasts.h index 1fb8f7463..f70deda33 100644 --- a/lib/asn1c/s1ap/S1AP_NumberOfBroadcasts.h +++ b/lib/asn1c/s1ap/S1AP_NumberOfBroadcasts.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NumberofBroadcastRequest.c b/lib/asn1c/s1ap/S1AP_NumberofBroadcastRequest.c index 997ae2694..d6ad5222b 100644 --- a/lib/asn1c/s1ap/S1AP_NumberofBroadcastRequest.c +++ b/lib/asn1c/s1ap/S1AP_NumberofBroadcastRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_NumberofBroadcastRequest.h b/lib/asn1c/s1ap/S1AP_NumberofBroadcastRequest.h index d9cb0c58b..6e9da52da 100644 --- a/lib/asn1c/s1ap/S1AP_NumberofBroadcastRequest.h +++ b/lib/asn1c/s1ap/S1AP_NumberofBroadcastRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_OldBSS-ToNewBSS-Information.c b/lib/asn1c/s1ap/S1AP_OldBSS-ToNewBSS-Information.c index cbae10a20..70a08c005 100644 --- a/lib/asn1c/s1ap/S1AP_OldBSS-ToNewBSS-Information.c +++ b/lib/asn1c/s1ap/S1AP_OldBSS-ToNewBSS-Information.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_OldBSS-ToNewBSS-Information.h b/lib/asn1c/s1ap/S1AP_OldBSS-ToNewBSS-Information.h index b91ba9d34..3d52341fc 100644 --- a/lib/asn1c/s1ap/S1AP_OldBSS-ToNewBSS-Information.h +++ b/lib/asn1c/s1ap/S1AP_OldBSS-ToNewBSS-Information.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_OverloadAction.c b/lib/asn1c/s1ap/S1AP_OverloadAction.c index 9099f3b95..72e4f39fe 100644 --- a/lib/asn1c/s1ap/S1AP_OverloadAction.c +++ b/lib/asn1c/s1ap/S1AP_OverloadAction.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_OverloadAction.h b/lib/asn1c/s1ap/S1AP_OverloadAction.h index 3c81263e0..fb2fbaaa3 100644 --- a/lib/asn1c/s1ap/S1AP_OverloadAction.h +++ b/lib/asn1c/s1ap/S1AP_OverloadAction.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_OverloadResponse.c b/lib/asn1c/s1ap/S1AP_OverloadResponse.c index 70bcb9449..1715a3fdc 100644 --- a/lib/asn1c/s1ap/S1AP_OverloadResponse.c +++ b/lib/asn1c/s1ap/S1AP_OverloadResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_OverloadResponse.h b/lib/asn1c/s1ap/S1AP_OverloadResponse.h index e383c5c7b..e04e0b12b 100644 --- a/lib/asn1c/s1ap/S1AP_OverloadResponse.h +++ b/lib/asn1c/s1ap/S1AP_OverloadResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_OverloadStart.c b/lib/asn1c/s1ap/S1AP_OverloadStart.c index ff55a51e1..108818ce0 100644 --- a/lib/asn1c/s1ap/S1AP_OverloadStart.c +++ b/lib/asn1c/s1ap/S1AP_OverloadStart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_OverloadStart_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_OverloadStart, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P64, + &asn_DEF_S1AP_ProtocolIE_Container_7847P64, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_OverloadStart.h b/lib/asn1c/s1ap/S1AP_OverloadStart.h index d00f8f172..ce8aa0256 100644 --- a/lib/asn1c/s1ap/S1AP_OverloadStart.h +++ b/lib/asn1c/s1ap/S1AP_OverloadStart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_OverloadStart */ typedef struct S1AP_OverloadStart { - S1AP_ProtocolIE_Container_7838P64_t protocolIEs; + S1AP_ProtocolIE_Container_7847P64_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_OverloadStop.c b/lib/asn1c/s1ap/S1AP_OverloadStop.c index ef718edaf..38a9dd961 100644 --- a/lib/asn1c/s1ap/S1AP_OverloadStop.c +++ b/lib/asn1c/s1ap/S1AP_OverloadStop.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_OverloadStop_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_OverloadStop, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P65, + &asn_DEF_S1AP_ProtocolIE_Container_7847P65, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_OverloadStop.h b/lib/asn1c/s1ap/S1AP_OverloadStop.h index 7d0f1b775..245a10c99 100644 --- a/lib/asn1c/s1ap/S1AP_OverloadStop.h +++ b/lib/asn1c/s1ap/S1AP_OverloadStop.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_OverloadStop */ typedef struct S1AP_OverloadStop { - S1AP_ProtocolIE_Container_7838P65_t protocolIEs; + S1AP_ProtocolIE_Container_7847P65_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_PC5FlowBitRates.c b/lib/asn1c/s1ap/S1AP_PC5FlowBitRates.c index 37430672c..b4820ca70 100644 --- a/lib/asn1c/s1ap/S1AP_PC5FlowBitRates.c +++ b/lib/asn1c/s1ap/S1AP_PC5FlowBitRates.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PC5FlowBitRates_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_PC5FlowBitRates, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P105, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P105, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PC5FlowBitRates.h b/lib/asn1c/s1ap/S1AP_PC5FlowBitRates.h index 77fceffc3..0942ee805 100644 --- a/lib/asn1c/s1ap/S1AP_PC5FlowBitRates.h +++ b/lib/asn1c/s1ap/S1AP_PC5FlowBitRates.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PC5QoSFlowItem.c b/lib/asn1c/s1ap/S1AP_PC5QoSFlowItem.c index 02574acd9..64e1c5860 100644 --- a/lib/asn1c/s1ap/S1AP_PC5QoSFlowItem.c +++ b/lib/asn1c/s1ap/S1AP_PC5QoSFlowItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -64,7 +64,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PC5QoSFlowItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_PC5QoSFlowItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P104, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P104, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PC5QoSFlowItem.h b/lib/asn1c/s1ap/S1AP_PC5QoSFlowItem.h index 125a999d8..70b421d7b 100644 --- a/lib/asn1c/s1ap/S1AP_PC5QoSFlowItem.h +++ b/lib/asn1c/s1ap/S1AP_PC5QoSFlowItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PC5QoSFlowList.c b/lib/asn1c/s1ap/S1AP_PC5QoSFlowList.c index a942da130..ae384bece 100644 --- a/lib/asn1c/s1ap/S1AP_PC5QoSFlowList.c +++ b/lib/asn1c/s1ap/S1AP_PC5QoSFlowList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PC5QoSFlowList.h b/lib/asn1c/s1ap/S1AP_PC5QoSFlowList.h index 0f0434bbd..9f2c1b4fa 100644 --- a/lib/asn1c/s1ap/S1AP_PC5QoSFlowList.h +++ b/lib/asn1c/s1ap/S1AP_PC5QoSFlowList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PC5QoSParameters.c b/lib/asn1c/s1ap/S1AP_PC5QoSParameters.c index 27f2e77e1..9359cee79 100644 --- a/lib/asn1c/s1ap/S1AP_PC5QoSParameters.c +++ b/lib/asn1c/s1ap/S1AP_PC5QoSParameters.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_PC5QoSParameters_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_PC5QoSParameters, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P103, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P103, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PC5QoSParameters.h b/lib/asn1c/s1ap/S1AP_PC5QoSParameters.h index b8c3a3149..86f115940 100644 --- a/lib/asn1c/s1ap/S1AP_PC5QoSParameters.h +++ b/lib/asn1c/s1ap/S1AP_PC5QoSParameters.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PDCP-SN.c b/lib/asn1c/s1ap/S1AP_PDCP-SN.c index 10b949db7..9469734b6 100644 --- a/lib/asn1c/s1ap/S1AP_PDCP-SN.c +++ b/lib/asn1c/s1ap/S1AP_PDCP-SN.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PDCP-SN.h b/lib/asn1c/s1ap/S1AP_PDCP-SN.h index 648e8b10c..a54caf4a3 100644 --- a/lib/asn1c/s1ap/S1AP_PDCP-SN.h +++ b/lib/asn1c/s1ap/S1AP_PDCP-SN.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PDCP-SNExtended.c b/lib/asn1c/s1ap/S1AP_PDCP-SNExtended.c index 314684593..995d4d8ee 100644 --- a/lib/asn1c/s1ap/S1AP_PDCP-SNExtended.c +++ b/lib/asn1c/s1ap/S1AP_PDCP-SNExtended.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PDCP-SNExtended.h b/lib/asn1c/s1ap/S1AP_PDCP-SNExtended.h index 453d7f8ec..68283e64f 100644 --- a/lib/asn1c/s1ap/S1AP_PDCP-SNExtended.h +++ b/lib/asn1c/s1ap/S1AP_PDCP-SNExtended.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PDCP-SNlength18.c b/lib/asn1c/s1ap/S1AP_PDCP-SNlength18.c index 6d433dcc9..65a166b9b 100644 --- a/lib/asn1c/s1ap/S1AP_PDCP-SNlength18.c +++ b/lib/asn1c/s1ap/S1AP_PDCP-SNlength18.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PDCP-SNlength18.h b/lib/asn1c/s1ap/S1AP_PDCP-SNlength18.h index 847adaf75..095b6fb0f 100644 --- a/lib/asn1c/s1ap/S1AP_PDCP-SNlength18.h +++ b/lib/asn1c/s1ap/S1AP_PDCP-SNlength18.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PLMNAreaBasedQMC.c b/lib/asn1c/s1ap/S1AP_PLMNAreaBasedQMC.c index edfa14004..c463bf771 100644 --- a/lib/asn1c/s1ap/S1AP_PLMNAreaBasedQMC.c +++ b/lib/asn1c/s1ap/S1AP_PLMNAreaBasedQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PLMNAreaBasedQMC_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_PLMNAreaBasedQMC, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P107, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P107, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PLMNAreaBasedQMC.h b/lib/asn1c/s1ap/S1AP_PLMNAreaBasedQMC.h index da4310e32..a71fd3775 100644 --- a/lib/asn1c/s1ap/S1AP_PLMNAreaBasedQMC.h +++ b/lib/asn1c/s1ap/S1AP_PLMNAreaBasedQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PLMNListforQMC.c b/lib/asn1c/s1ap/S1AP_PLMNListforQMC.c index 13c03b867..43525e74d 100644 --- a/lib/asn1c/s1ap/S1AP_PLMNListforQMC.c +++ b/lib/asn1c/s1ap/S1AP_PLMNListforQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PLMNListforQMC.h b/lib/asn1c/s1ap/S1AP_PLMNListforQMC.h index e61e4b0a9..03a51776f 100644 --- a/lib/asn1c/s1ap/S1AP_PLMNListforQMC.h +++ b/lib/asn1c/s1ap/S1AP_PLMNListforQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PLMNidentity.c b/lib/asn1c/s1ap/S1AP_PLMNidentity.c index 2ea4dfc33..34bcc82ce 100644 --- a/lib/asn1c/s1ap/S1AP_PLMNidentity.c +++ b/lib/asn1c/s1ap/S1AP_PLMNidentity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PLMNidentity.h b/lib/asn1c/s1ap/S1AP_PLMNidentity.h index 86c19208b..2d2c9c7e2 100644 --- a/lib/asn1c/s1ap/S1AP_PLMNidentity.h +++ b/lib/asn1c/s1ap/S1AP_PLMNidentity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PS-ServiceNotAvailable.c b/lib/asn1c/s1ap/S1AP_PS-ServiceNotAvailable.c index c97ddc2a0..84209383b 100644 --- a/lib/asn1c/s1ap/S1AP_PS-ServiceNotAvailable.c +++ b/lib/asn1c/s1ap/S1AP_PS-ServiceNotAvailable.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PS-ServiceNotAvailable.h b/lib/asn1c/s1ap/S1AP_PS-ServiceNotAvailable.h index ce4e12774..bcea92d83 100644 --- a/lib/asn1c/s1ap/S1AP_PS-ServiceNotAvailable.h +++ b/lib/asn1c/s1ap/S1AP_PS-ServiceNotAvailable.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PSCellInformation.c b/lib/asn1c/s1ap/S1AP_PSCellInformation.c index cc3aef42f..7b0c47eec 100644 --- a/lib/asn1c/s1ap/S1AP_PSCellInformation.c +++ b/lib/asn1c/s1ap/S1AP_PSCellInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_PSCellInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_PSCellInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P109, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P109, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PSCellInformation.h b/lib/asn1c/s1ap/S1AP_PSCellInformation.h index 77f6ebff1..31c425610 100644 --- a/lib/asn1c/s1ap/S1AP_PSCellInformation.h +++ b/lib/asn1c/s1ap/S1AP_PSCellInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PWSFailureIndication.c b/lib/asn1c/s1ap/S1AP_PWSFailureIndication.c index 89eb8aafb..1e6e86540 100644 --- a/lib/asn1c/s1ap/S1AP_PWSFailureIndication.c +++ b/lib/asn1c/s1ap/S1AP_PWSFailureIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PWSFailureIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_PWSFailureIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P75, + &asn_DEF_S1AP_ProtocolIE_Container_7847P75, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PWSFailureIndication.h b/lib/asn1c/s1ap/S1AP_PWSFailureIndication.h index 16a30e713..f574cfad3 100644 --- a/lib/asn1c/s1ap/S1AP_PWSFailureIndication.h +++ b/lib/asn1c/s1ap/S1AP_PWSFailureIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_PWSFailureIndication */ typedef struct S1AP_PWSFailureIndication { - S1AP_ProtocolIE_Container_7838P75_t protocolIEs; + S1AP_ProtocolIE_Container_7847P75_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_PWSRestartIndication.c b/lib/asn1c/s1ap/S1AP_PWSRestartIndication.c index 6937c3626..f4c2e678e 100644 --- a/lib/asn1c/s1ap/S1AP_PWSRestartIndication.c +++ b/lib/asn1c/s1ap/S1AP_PWSRestartIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PWSRestartIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_PWSRestartIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P74, + &asn_DEF_S1AP_ProtocolIE_Container_7847P74, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PWSRestartIndication.h b/lib/asn1c/s1ap/S1AP_PWSRestartIndication.h index 29a9cdc8b..0bdeeaaf8 100644 --- a/lib/asn1c/s1ap/S1AP_PWSRestartIndication.h +++ b/lib/asn1c/s1ap/S1AP_PWSRestartIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_PWSRestartIndication */ typedef struct S1AP_PWSRestartIndication { - S1AP_ProtocolIE_Container_7838P74_t protocolIEs; + S1AP_ProtocolIE_Container_7847P74_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_PWSfailedECGIList.c b/lib/asn1c/s1ap/S1AP_PWSfailedECGIList.c index c267dab5b..9c42631ad 100644 --- a/lib/asn1c/s1ap/S1AP_PWSfailedECGIList.c +++ b/lib/asn1c/s1ap/S1AP_PWSfailedECGIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PWSfailedECGIList.h b/lib/asn1c/s1ap/S1AP_PWSfailedECGIList.h index 36148dfd5..3cfe39227 100644 --- a/lib/asn1c/s1ap/S1AP_PWSfailedECGIList.h +++ b/lib/asn1c/s1ap/S1AP_PWSfailedECGIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Packet-LossRate.c b/lib/asn1c/s1ap/S1AP_Packet-LossRate.c index 306ae6326..e605e8970 100644 --- a/lib/asn1c/s1ap/S1AP_Packet-LossRate.c +++ b/lib/asn1c/s1ap/S1AP_Packet-LossRate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Packet-LossRate.h b/lib/asn1c/s1ap/S1AP_Packet-LossRate.h index 1a318e1eb..4d77206c1 100644 --- a/lib/asn1c/s1ap/S1AP_Packet-LossRate.h +++ b/lib/asn1c/s1ap/S1AP_Packet-LossRate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Paging-eDRX-Cycle.c b/lib/asn1c/s1ap/S1AP_Paging-eDRX-Cycle.c index a215fa9f4..bf9396fcf 100644 --- a/lib/asn1c/s1ap/S1AP_Paging-eDRX-Cycle.c +++ b/lib/asn1c/s1ap/S1AP_Paging-eDRX-Cycle.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Paging-eDRX-Cycle.h b/lib/asn1c/s1ap/S1AP_Paging-eDRX-Cycle.h index b6884c32d..c50acce79 100644 --- a/lib/asn1c/s1ap/S1AP_Paging-eDRX-Cycle.h +++ b/lib/asn1c/s1ap/S1AP_Paging-eDRX-Cycle.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Paging-eDRXInformation.c b/lib/asn1c/s1ap/S1AP_Paging-eDRXInformation.c index f65ddcb29..9d2c0dce1 100644 --- a/lib/asn1c/s1ap/S1AP_Paging-eDRXInformation.c +++ b/lib/asn1c/s1ap/S1AP_Paging-eDRXInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_Paging_eDRXInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_Paging_eDRXInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P102, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P102, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Paging-eDRXInformation.h b/lib/asn1c/s1ap/S1AP_Paging-eDRXInformation.h index d2c652015..045df4f16 100644 --- a/lib/asn1c/s1ap/S1AP_Paging-eDRXInformation.h +++ b/lib/asn1c/s1ap/S1AP_Paging-eDRXInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Paging.c b/lib/asn1c/s1ap/S1AP_Paging.c index df0a655b0..64a38f23c 100644 --- a/lib/asn1c/s1ap/S1AP_Paging.c +++ b/lib/asn1c/s1ap/S1AP_Paging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_Paging_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_Paging, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P25, + &asn_DEF_S1AP_ProtocolIE_Container_7847P25, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Paging.h b/lib/asn1c/s1ap/S1AP_Paging.h index d835a5113..42ee09bbb 100644 --- a/lib/asn1c/s1ap/S1AP_Paging.h +++ b/lib/asn1c/s1ap/S1AP_Paging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_Paging */ typedef struct S1AP_Paging { - S1AP_ProtocolIE_Container_7838P25_t protocolIEs; + S1AP_ProtocolIE_Container_7847P25_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_PagingAttemptCount.c b/lib/asn1c/s1ap/S1AP_PagingAttemptCount.c index 63f80f855..1f9cf3de2 100644 --- a/lib/asn1c/s1ap/S1AP_PagingAttemptCount.c +++ b/lib/asn1c/s1ap/S1AP_PagingAttemptCount.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingAttemptCount.h b/lib/asn1c/s1ap/S1AP_PagingAttemptCount.h index 7afe58f56..e850ef243 100644 --- a/lib/asn1c/s1ap/S1AP_PagingAttemptCount.h +++ b/lib/asn1c/s1ap/S1AP_PagingAttemptCount.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingAttemptInformation.c b/lib/asn1c/s1ap/S1AP_PagingAttemptInformation.c index 1515745fb..9c7fa1339 100644 --- a/lib/asn1c/s1ap/S1AP_PagingAttemptInformation.c +++ b/lib/asn1c/s1ap/S1AP_PagingAttemptInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PagingAttemptInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_PagingAttemptInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P101, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P101, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PagingAttemptInformation.h b/lib/asn1c/s1ap/S1AP_PagingAttemptInformation.h index ab306cebe..5cc01463d 100644 --- a/lib/asn1c/s1ap/S1AP_PagingAttemptInformation.h +++ b/lib/asn1c/s1ap/S1AP_PagingAttemptInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingDRX.c b/lib/asn1c/s1ap/S1AP_PagingDRX.c index 1a027cb15..6d19478b5 100644 --- a/lib/asn1c/s1ap/S1AP_PagingDRX.c +++ b/lib/asn1c/s1ap/S1AP_PagingDRX.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingDRX.h b/lib/asn1c/s1ap/S1AP_PagingDRX.h index 75af563cf..1d91e8b7d 100644 --- a/lib/asn1c/s1ap/S1AP_PagingDRX.h +++ b/lib/asn1c/s1ap/S1AP_PagingDRX.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingPriority.c b/lib/asn1c/s1ap/S1AP_PagingPriority.c index b3796bb00..62e374071 100644 --- a/lib/asn1c/s1ap/S1AP_PagingPriority.c +++ b/lib/asn1c/s1ap/S1AP_PagingPriority.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingPriority.h b/lib/asn1c/s1ap/S1AP_PagingPriority.h index acb7a3522..35e2fb10e 100644 --- a/lib/asn1c/s1ap/S1AP_PagingPriority.h +++ b/lib/asn1c/s1ap/S1AP_PagingPriority.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingProbabilityInformation.c b/lib/asn1c/s1ap/S1AP_PagingProbabilityInformation.c index cfffac54d..14b0e08eb 100644 --- a/lib/asn1c/s1ap/S1AP_PagingProbabilityInformation.c +++ b/lib/asn1c/s1ap/S1AP_PagingProbabilityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingProbabilityInformation.h b/lib/asn1c/s1ap/S1AP_PagingProbabilityInformation.h index 42d9e77f6..7ab43bc72 100644 --- a/lib/asn1c/s1ap/S1AP_PagingProbabilityInformation.h +++ b/lib/asn1c/s1ap/S1AP_PagingProbabilityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingTimeWindow.c b/lib/asn1c/s1ap/S1AP_PagingTimeWindow.c index 3ef3d5a3e..d95b1dd7e 100644 --- a/lib/asn1c/s1ap/S1AP_PagingTimeWindow.c +++ b/lib/asn1c/s1ap/S1AP_PagingTimeWindow.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PagingTimeWindow.h b/lib/asn1c/s1ap/S1AP_PagingTimeWindow.h index 0bb5bf48f..c6d3bd95e 100644 --- a/lib/asn1c/s1ap/S1AP_PagingTimeWindow.h +++ b/lib/asn1c/s1ap/S1AP_PagingTimeWindow.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PathSwitchRequest.c b/lib/asn1c/s1ap/S1AP_PathSwitchRequest.c index 2b2ecfd8d..bbf60ad72 100644 --- a/lib/asn1c/s1ap/S1AP_PathSwitchRequest.c +++ b/lib/asn1c/s1ap/S1AP_PathSwitchRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PathSwitchRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_PathSwitchRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P7, + &asn_DEF_S1AP_ProtocolIE_Container_7847P7, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PathSwitchRequest.h b/lib/asn1c/s1ap/S1AP_PathSwitchRequest.h index 7a06a3760..c01c2e267 100644 --- a/lib/asn1c/s1ap/S1AP_PathSwitchRequest.h +++ b/lib/asn1c/s1ap/S1AP_PathSwitchRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_PathSwitchRequest */ typedef struct S1AP_PathSwitchRequest { - S1AP_ProtocolIE_Container_7838P7_t protocolIEs; + S1AP_ProtocolIE_Container_7847P7_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_PathSwitchRequestAcknowledge.c b/lib/asn1c/s1ap/S1AP_PathSwitchRequestAcknowledge.c index 4377be524..0f03f6947 100644 --- a/lib/asn1c/s1ap/S1AP_PathSwitchRequestAcknowledge.c +++ b/lib/asn1c/s1ap/S1AP_PathSwitchRequestAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PathSwitchRequestAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_PathSwitchRequestAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P8, + &asn_DEF_S1AP_ProtocolIE_Container_7847P8, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PathSwitchRequestAcknowledge.h b/lib/asn1c/s1ap/S1AP_PathSwitchRequestAcknowledge.h index 970beeff4..63f21004f 100644 --- a/lib/asn1c/s1ap/S1AP_PathSwitchRequestAcknowledge.h +++ b/lib/asn1c/s1ap/S1AP_PathSwitchRequestAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_PathSwitchRequestAcknowledge */ typedef struct S1AP_PathSwitchRequestAcknowledge { - S1AP_ProtocolIE_Container_7838P8_t protocolIEs; + S1AP_ProtocolIE_Container_7847P8_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_PathSwitchRequestFailure.c b/lib/asn1c/s1ap/S1AP_PathSwitchRequestFailure.c index 51684b334..a23d81573 100644 --- a/lib/asn1c/s1ap/S1AP_PathSwitchRequestFailure.c +++ b/lib/asn1c/s1ap/S1AP_PathSwitchRequestFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PathSwitchRequestFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_PathSwitchRequestFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P9, + &asn_DEF_S1AP_ProtocolIE_Container_7847P9, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PathSwitchRequestFailure.h b/lib/asn1c/s1ap/S1AP_PathSwitchRequestFailure.h index 7899904b7..410f3391d 100644 --- a/lib/asn1c/s1ap/S1AP_PathSwitchRequestFailure.h +++ b/lib/asn1c/s1ap/S1AP_PathSwitchRequestFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_PathSwitchRequestFailure */ typedef struct S1AP_PathSwitchRequestFailure { - S1AP_ProtocolIE_Container_7838P9_t protocolIEs; + S1AP_ProtocolIE_Container_7847P9_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_PedestrianUE.c b/lib/asn1c/s1ap/S1AP_PedestrianUE.c index f966443de..23efae461 100644 --- a/lib/asn1c/s1ap/S1AP_PedestrianUE.c +++ b/lib/asn1c/s1ap/S1AP_PedestrianUE.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PedestrianUE.h b/lib/asn1c/s1ap/S1AP_PedestrianUE.h index fef8e35f0..eca4d69df 100644 --- a/lib/asn1c/s1ap/S1AP_PedestrianUE.h +++ b/lib/asn1c/s1ap/S1AP_PedestrianUE.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PendingDataIndication.c b/lib/asn1c/s1ap/S1AP_PendingDataIndication.c index b205b82bb..e9fdbac31 100644 --- a/lib/asn1c/s1ap/S1AP_PendingDataIndication.c +++ b/lib/asn1c/s1ap/S1AP_PendingDataIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PendingDataIndication.h b/lib/asn1c/s1ap/S1AP_PendingDataIndication.h index af42150e6..dce3b1bc9 100644 --- a/lib/asn1c/s1ap/S1AP_PendingDataIndication.h +++ b/lib/asn1c/s1ap/S1AP_PendingDataIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Port-Number.c b/lib/asn1c/s1ap/S1AP_Port-Number.c index c2e3c7e69..b3bc8fdbf 100644 --- a/lib/asn1c/s1ap/S1AP_Port-Number.c +++ b/lib/asn1c/s1ap/S1AP_Port-Number.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Port-Number.h b/lib/asn1c/s1ap/S1AP_Port-Number.h index 66777045e..4e2261ec7 100644 --- a/lib/asn1c/s1ap/S1AP_Port-Number.h +++ b/lib/asn1c/s1ap/S1AP_Port-Number.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Pre-emptionCapability.c b/lib/asn1c/s1ap/S1AP_Pre-emptionCapability.c index 9f544db89..49cb6ed49 100644 --- a/lib/asn1c/s1ap/S1AP_Pre-emptionCapability.c +++ b/lib/asn1c/s1ap/S1AP_Pre-emptionCapability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Pre-emptionCapability.h b/lib/asn1c/s1ap/S1AP_Pre-emptionCapability.h index 58f63ba54..785cf7311 100644 --- a/lib/asn1c/s1ap/S1AP_Pre-emptionCapability.h +++ b/lib/asn1c/s1ap/S1AP_Pre-emptionCapability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Pre-emptionVulnerability.c b/lib/asn1c/s1ap/S1AP_Pre-emptionVulnerability.c index 4c85b5843..a5762900e 100644 --- a/lib/asn1c/s1ap/S1AP_Pre-emptionVulnerability.c +++ b/lib/asn1c/s1ap/S1AP_Pre-emptionVulnerability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Pre-emptionVulnerability.h b/lib/asn1c/s1ap/S1AP_Pre-emptionVulnerability.h index 3cfec8b44..92e7d9d05 100644 --- a/lib/asn1c/s1ap/S1AP_Pre-emptionVulnerability.h +++ b/lib/asn1c/s1ap/S1AP_Pre-emptionVulnerability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Presence.c b/lib/asn1c/s1ap/S1AP_Presence.c index c1b0317f0..659e24d50 100644 --- a/lib/asn1c/s1ap/S1AP_Presence.c +++ b/lib/asn1c/s1ap/S1AP_Presence.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Presence.h b/lib/asn1c/s1ap/S1AP_Presence.h index 2eb8689a2..a97f86e9e 100644 --- a/lib/asn1c/s1ap/S1AP_Presence.h +++ b/lib/asn1c/s1ap/S1AP_Presence.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PriorityLevel.c b/lib/asn1c/s1ap/S1AP_PriorityLevel.c index b35940f77..d21681384 100644 --- a/lib/asn1c/s1ap/S1AP_PriorityLevel.c +++ b/lib/asn1c/s1ap/S1AP_PriorityLevel.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PriorityLevel.h b/lib/asn1c/s1ap/S1AP_PriorityLevel.h index 1211df288..99e947544 100644 --- a/lib/asn1c/s1ap/S1AP_PriorityLevel.h +++ b/lib/asn1c/s1ap/S1AP_PriorityLevel.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PrivacyIndicator.c b/lib/asn1c/s1ap/S1AP_PrivacyIndicator.c index f6b7ee0a5..0321183a9 100644 --- a/lib/asn1c/s1ap/S1AP_PrivacyIndicator.c +++ b/lib/asn1c/s1ap/S1AP_PrivacyIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PrivacyIndicator.h b/lib/asn1c/s1ap/S1AP_PrivacyIndicator.h index 8e0044e06..84d913b83 100644 --- a/lib/asn1c/s1ap/S1AP_PrivacyIndicator.h +++ b/lib/asn1c/s1ap/S1AP_PrivacyIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PrivateIE-Container.c b/lib/asn1c/s1ap/S1AP_PrivateIE-Container.c index b8c977daa..268b59333 100644 --- a/lib/asn1c/s1ap/S1AP_PrivateIE-Container.c +++ b/lib/asn1c/s1ap/S1AP_PrivateIE-Container.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -9,13 +9,13 @@ #include "S1AP_PrivateIE-Field.h" #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_PrivateIE_Container_7905P0_constr_1 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_PrivateIE_Container_7914P0_constr_1 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ -asn_TYPE_member_t asn_MBR_S1AP_PrivateIE_Container_7905P0_1[] = { +asn_TYPE_member_t asn_MBR_S1AP_PrivateIE_Container_7914P0_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -34,35 +34,35 @@ asn_TYPE_member_t asn_MBR_S1AP_PrivateIE_Container_7905P0_1[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_PrivateIE_Container_7905P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_PrivateIE_Container_7914P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_PrivateIE_Container_7905P0_specs_1 = { - sizeof(struct S1AP_PrivateIE_Container_7905P0), - offsetof(struct S1AP_PrivateIE_Container_7905P0, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_PrivateIE_Container_7914P0_specs_1 = { + sizeof(struct S1AP_PrivateIE_Container_7914P0), + offsetof(struct S1AP_PrivateIE_Container_7914P0, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_PrivateIE_Container_7905P0 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_PrivateIE_Container_7914P0 = { "PrivateIE-Container", "PrivateIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_PrivateIE_Container_7905P0_tags_1, - sizeof(asn_DEF_S1AP_PrivateIE_Container_7905P0_tags_1) - /sizeof(asn_DEF_S1AP_PrivateIE_Container_7905P0_tags_1[0]), /* 1 */ - asn_DEF_S1AP_PrivateIE_Container_7905P0_tags_1, /* Same as above */ - sizeof(asn_DEF_S1AP_PrivateIE_Container_7905P0_tags_1) - /sizeof(asn_DEF_S1AP_PrivateIE_Container_7905P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_PrivateIE_Container_7914P0_tags_1, + sizeof(asn_DEF_S1AP_PrivateIE_Container_7914P0_tags_1) + /sizeof(asn_DEF_S1AP_PrivateIE_Container_7914P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_PrivateIE_Container_7914P0_tags_1, /* Same as above */ + sizeof(asn_DEF_S1AP_PrivateIE_Container_7914P0_tags_1) + /sizeof(asn_DEF_S1AP_PrivateIE_Container_7914P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_PrivateIE_Container_7905P0_constr_1, + &asn_PER_type_S1AP_PrivateIE_Container_7914P0_constr_1, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_PrivateIE_Container_7905P0_1, + asn_MBR_S1AP_PrivateIE_Container_7914P0_1, 1, /* Single element */ - &asn_SPC_S1AP_PrivateIE_Container_7905P0_specs_1 /* Additional specs */ + &asn_SPC_S1AP_PrivateIE_Container_7914P0_specs_1 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_PrivateIE-Container.h b/lib/asn1c/s1ap/S1AP_PrivateIE-Container.h index cfddc2811..94d7a7a47 100644 --- a/lib/asn1c/s1ap/S1AP_PrivateIE-Container.h +++ b/lib/asn1c/s1ap/S1AP_PrivateIE-Container.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -23,18 +23,18 @@ extern "C" { struct S1AP_PrivateMessageIEs; /* S1AP_PrivateIE-Container */ -typedef struct S1AP_PrivateIE_Container_7905P0 { +typedef struct S1AP_PrivateIE_Container_7914P0 { A_SEQUENCE_OF(struct S1AP_PrivateMessageIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_PrivateIE_Container_7905P0_t; +} S1AP_PrivateIE_Container_7914P0_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_S1AP_PrivateIE_Container_7905P0; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_PrivateIE_Container_7905P0_specs_1; -extern asn_TYPE_member_t asn_MBR_S1AP_PrivateIE_Container_7905P0_1[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_PrivateIE_Container_7905P0_constr_1; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_PrivateIE_Container_7914P0; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_PrivateIE_Container_7914P0_specs_1; +extern asn_TYPE_member_t asn_MBR_S1AP_PrivateIE_Container_7914P0_1[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_PrivateIE_Container_7914P0_constr_1; #ifdef __cplusplus } diff --git a/lib/asn1c/s1ap/S1AP_PrivateIE-Field.c b/lib/asn1c/s1ap/S1AP_PrivateIE-Field.c index d2c3f9636..1eaa5d1d4 100644 --- a/lib/asn1c/s1ap/S1AP_PrivateIE-Field.c +++ b/lib/asn1c/s1ap/S1AP_PrivateIE-Field.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PrivateIE-Field.h b/lib/asn1c/s1ap/S1AP_PrivateIE-Field.h index 46e151af0..c9207f130 100644 --- a/lib/asn1c/s1ap/S1AP_PrivateIE-Field.h +++ b/lib/asn1c/s1ap/S1AP_PrivateIE-Field.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PrivateIE-ID.c b/lib/asn1c/s1ap/S1AP_PrivateIE-ID.c index f83dab76b..f904e2eb3 100644 --- a/lib/asn1c/s1ap/S1AP_PrivateIE-ID.c +++ b/lib/asn1c/s1ap/S1AP_PrivateIE-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PrivateIE-ID.h b/lib/asn1c/s1ap/S1AP_PrivateIE-ID.h index 4d7f08ca9..7bdf6be7c 100644 --- a/lib/asn1c/s1ap/S1AP_PrivateIE-ID.h +++ b/lib/asn1c/s1ap/S1AP_PrivateIE-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_PrivateMessage.c b/lib/asn1c/s1ap/S1AP_PrivateMessage.c index 614047f42..52c76e50c 100644 --- a/lib/asn1c/s1ap/S1AP_PrivateMessage.c +++ b/lib/asn1c/s1ap/S1AP_PrivateMessage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_PrivateMessage_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_PrivateMessage, privateIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_PrivateIE_Container_7905P0, + &asn_DEF_S1AP_PrivateIE_Container_7914P0, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_PrivateMessage.h b/lib/asn1c/s1ap/S1AP_PrivateMessage.h index ac508a10b..fe2ed3cee 100644 --- a/lib/asn1c/s1ap/S1AP_PrivateMessage.h +++ b/lib/asn1c/s1ap/S1AP_PrivateMessage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_PrivateMessage */ typedef struct S1AP_PrivateMessage { - S1AP_PrivateIE_Container_7905P0_t privateIEs; + S1AP_PrivateIE_Container_7914P0_t privateIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ProSeAuthorized.c b/lib/asn1c/s1ap/S1AP_ProSeAuthorized.c index 93a42406b..61ff939fb 100644 --- a/lib/asn1c/s1ap/S1AP_ProSeAuthorized.c +++ b/lib/asn1c/s1ap/S1AP_ProSeAuthorized.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_ProSeAuthorized_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ProSeAuthorized, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P108, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P108, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ProSeAuthorized.h b/lib/asn1c/s1ap/S1AP_ProSeAuthorized.h index e7ff94ae9..30bbde6ee 100644 --- a/lib/asn1c/s1ap/S1AP_ProSeAuthorized.h +++ b/lib/asn1c/s1ap/S1AP_ProSeAuthorized.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProSeDirectCommunication.c b/lib/asn1c/s1ap/S1AP_ProSeDirectCommunication.c index d4009ad1f..d080aae6a 100644 --- a/lib/asn1c/s1ap/S1AP_ProSeDirectCommunication.c +++ b/lib/asn1c/s1ap/S1AP_ProSeDirectCommunication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProSeDirectCommunication.h b/lib/asn1c/s1ap/S1AP_ProSeDirectCommunication.h index 773655f8f..b028fb3b0 100644 --- a/lib/asn1c/s1ap/S1AP_ProSeDirectCommunication.h +++ b/lib/asn1c/s1ap/S1AP_ProSeDirectCommunication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProSeDirectDiscovery.c b/lib/asn1c/s1ap/S1AP_ProSeDirectDiscovery.c index def4071fa..364f81323 100644 --- a/lib/asn1c/s1ap/S1AP_ProSeDirectDiscovery.c +++ b/lib/asn1c/s1ap/S1AP_ProSeDirectDiscovery.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProSeDirectDiscovery.h b/lib/asn1c/s1ap/S1AP_ProSeDirectDiscovery.h index 09cff2632..02b251de7 100644 --- a/lib/asn1c/s1ap/S1AP_ProSeDirectDiscovery.h +++ b/lib/asn1c/s1ap/S1AP_ProSeDirectDiscovery.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProSeUEtoNetworkRelaying.c b/lib/asn1c/s1ap/S1AP_ProSeUEtoNetworkRelaying.c index 66c2b050c..7b53a2e3e 100644 --- a/lib/asn1c/s1ap/S1AP_ProSeUEtoNetworkRelaying.c +++ b/lib/asn1c/s1ap/S1AP_ProSeUEtoNetworkRelaying.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProSeUEtoNetworkRelaying.h b/lib/asn1c/s1ap/S1AP_ProSeUEtoNetworkRelaying.h index a97489965..b3ff3b581 100644 --- a/lib/asn1c/s1ap/S1AP_ProSeUEtoNetworkRelaying.h +++ b/lib/asn1c/s1ap/S1AP_ProSeUEtoNetworkRelaying.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProcedureCode.c b/lib/asn1c/s1ap/S1AP_ProcedureCode.c index 4f4545364..aa2fe241e 100644 --- a/lib/asn1c/s1ap/S1AP_ProcedureCode.c +++ b/lib/asn1c/s1ap/S1AP_ProcedureCode.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProcedureCode.h b/lib/asn1c/s1ap/S1AP_ProcedureCode.h index f0ad3a4be..ca84e8c6d 100644 --- a/lib/asn1c/s1ap/S1AP_ProcedureCode.h +++ b/lib/asn1c/s1ap/S1AP_ProcedureCode.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolError-IE-ContainerList.h b/lib/asn1c/s1ap/S1AP_ProtocolError-IE-ContainerList.h index 70d364bb1..0822c8f66 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolError-IE-ContainerList.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolError-IE-ContainerList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolExtensionContainer.c b/lib/asn1c/s1ap/S1AP_ProtocolExtensionContainer.c index 1e560881e..0fc1dcdab 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolExtensionContainer.c +++ b/lib/asn1c/s1ap/S1AP_ProtocolExtensionContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -9,1140 +9,1140 @@ #include "S1AP_ProtocolExtensionField.h" #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P0_constr_1 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P0_constr_1 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P1_constr_3 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P1_constr_3 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P2_constr_5 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P2_constr_5 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P3_constr_7 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P3_constr_7 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P4_constr_9 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P4_constr_9 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P5_constr_11 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P5_constr_11 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P6_constr_13 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P6_constr_13 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P7_constr_15 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P7_constr_15 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P8_constr_17 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P8_constr_17 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P9_constr_19 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P9_constr_19 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P10_constr_21 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P10_constr_21 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P11_constr_23 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P11_constr_23 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P12_constr_25 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P12_constr_25 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P13_constr_27 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P13_constr_27 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P14_constr_29 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P14_constr_29 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P15_constr_31 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P15_constr_31 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P16_constr_33 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P16_constr_33 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P17_constr_35 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P17_constr_35 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P18_constr_37 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P18_constr_37 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P19_constr_39 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P19_constr_39 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P20_constr_41 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P20_constr_41 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P21_constr_43 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P21_constr_43 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P22_constr_45 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P22_constr_45 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P23_constr_47 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P23_constr_47 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P24_constr_49 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P24_constr_49 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P25_constr_51 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P25_constr_51 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P26_constr_53 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P26_constr_53 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P27_constr_55 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P27_constr_55 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P28_constr_57 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P28_constr_57 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P29_constr_59 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P29_constr_59 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P30_constr_61 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P30_constr_61 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P31_constr_63 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P31_constr_63 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P32_constr_65 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P32_constr_65 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P33_constr_67 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P33_constr_67 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P34_constr_69 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P34_constr_69 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P35_constr_71 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P35_constr_71 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P36_constr_73 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P36_constr_73 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P37_constr_75 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P37_constr_75 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P38_constr_77 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P38_constr_77 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P39_constr_79 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P39_constr_79 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P40_constr_81 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P40_constr_81 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P41_constr_83 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P41_constr_83 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P42_constr_85 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P42_constr_85 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P43_constr_87 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P43_constr_87 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P44_constr_89 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P44_constr_89 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P45_constr_91 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P45_constr_91 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P46_constr_93 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P46_constr_93 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P47_constr_95 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P47_constr_95 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P48_constr_97 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P48_constr_97 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P49_constr_99 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P49_constr_99 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P50_constr_101 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P50_constr_101 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P51_constr_103 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P51_constr_103 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P52_constr_105 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P52_constr_105 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P53_constr_107 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P53_constr_107 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P54_constr_109 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P54_constr_109 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P55_constr_111 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P55_constr_111 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P56_constr_113 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P56_constr_113 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P57_constr_115 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P57_constr_115 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P58_constr_117 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P58_constr_117 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P59_constr_119 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P59_constr_119 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P60_constr_121 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P60_constr_121 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P61_constr_123 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P61_constr_123 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P62_constr_125 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P62_constr_125 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P63_constr_127 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P63_constr_127 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P64_constr_129 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P64_constr_129 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P65_constr_131 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P65_constr_131 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P66_constr_133 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P66_constr_133 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P67_constr_135 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P67_constr_135 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P68_constr_137 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P68_constr_137 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P69_constr_139 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P69_constr_139 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P70_constr_141 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P70_constr_141 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P71_constr_143 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P71_constr_143 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P72_constr_145 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P72_constr_145 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P73_constr_147 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P73_constr_147 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P74_constr_149 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P74_constr_149 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P75_constr_151 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P75_constr_151 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P76_constr_153 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P76_constr_153 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P77_constr_155 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P77_constr_155 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P78_constr_157 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P78_constr_157 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P79_constr_159 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P79_constr_159 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P80_constr_161 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P80_constr_161 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P81_constr_163 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P81_constr_163 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P82_constr_165 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P82_constr_165 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P83_constr_167 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P83_constr_167 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P84_constr_169 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P84_constr_169 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P85_constr_171 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P85_constr_171 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P86_constr_173 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P86_constr_173 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P87_constr_175 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P87_constr_175 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P88_constr_177 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P88_constr_177 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P89_constr_179 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P89_constr_179 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P90_constr_181 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P90_constr_181 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P91_constr_183 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P91_constr_183 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P92_constr_185 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P92_constr_185 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P93_constr_187 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P93_constr_187 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P94_constr_189 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P94_constr_189 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P95_constr_191 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P95_constr_191 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P96_constr_193 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P96_constr_193 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P97_constr_195 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P97_constr_195 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P98_constr_197 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P98_constr_197 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P99_constr_199 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P99_constr_199 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P100_constr_201 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P100_constr_201 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P101_constr_203 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P101_constr_203 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P102_constr_205 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P102_constr_205 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P103_constr_207 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P103_constr_207 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P104_constr_209 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P104_constr_209 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P105_constr_211 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P105_constr_211 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P106_constr_213 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P106_constr_213 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P107_constr_215 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P107_constr_215 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P108_constr_217 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P108_constr_217 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P109_constr_219 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P109_constr_219 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P110_constr_221 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P110_constr_221 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P111_constr_223 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P111_constr_223 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P112_constr_225 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P112_constr_225 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P113_constr_227 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P113_constr_227 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P114_constr_229 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P114_constr_229 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P115_constr_231 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P115_constr_231 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P116_constr_233 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P116_constr_233 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P117_constr_235 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P117_constr_235 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P118_constr_237 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P118_constr_237 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P119_constr_239 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P119_constr_239 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P120_constr_241 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P120_constr_241 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P121_constr_243 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P121_constr_243 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P122_constr_245 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P122_constr_245 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P123_constr_247 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P123_constr_247 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P124_constr_249 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P124_constr_249 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P125_constr_251 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P125_constr_251 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P126_constr_253 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P126_constr_253 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P127_constr_255 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P127_constr_255 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P128_constr_257 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P128_constr_257 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P129_constr_259 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P129_constr_259 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P130_constr_261 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P130_constr_261 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P131_constr_263 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P131_constr_263 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P132_constr_265 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P132_constr_265 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P133_constr_267 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P133_constr_267 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P134_constr_269 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P134_constr_269 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P135_constr_271 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P135_constr_271 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P136_constr_273 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P136_constr_273 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P137_constr_275 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P137_constr_275 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P138_constr_277 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P138_constr_277 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P139_constr_279 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P139_constr_279 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P140_constr_281 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P140_constr_281 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P141_constr_283 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P141_constr_283 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P142_constr_285 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P142_constr_285 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P143_constr_287 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P143_constr_287 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P144_constr_289 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P144_constr_289 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P145_constr_291 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P145_constr_291 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P146_constr_293 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P146_constr_293 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P147_constr_295 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P147_constr_295 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P148_constr_297 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P148_constr_297 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P149_constr_299 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P149_constr_299 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P150_constr_301 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P150_constr_301 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P151_constr_303 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P151_constr_303 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P152_constr_305 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P152_constr_305 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P153_constr_307 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P153_constr_307 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P154_constr_309 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P154_constr_309 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P155_constr_311 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P155_constr_311 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P156_constr_313 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P156_constr_313 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P157_constr_315 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P157_constr_315 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P158_constr_317 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P158_constr_317 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P159_constr_319 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P159_constr_319 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P160_constr_321 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P160_constr_321 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P161_constr_323 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P161_constr_323 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 1, 65535 } /* (SIZE(1..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P0_1[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P0_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1161,39 +1161,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P0_1[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P0_specs_1 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P0), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P0, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P0_specs_1 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P0), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P0, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P0 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P0 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P0_tags_1, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P0_tags_1) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P0_tags_1[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P0_tags_1, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P0_tags_1) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P0_tags_1, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P0_tags_1) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P0_tags_1, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P0_tags_1) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P0_constr_1, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P0_constr_1, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P0_1, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P0_1, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P0_specs_1 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P0_specs_1 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P1_3[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P1_3[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1212,39 +1212,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P1_3[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P1_tags_3[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P1_tags_3[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P1_specs_3 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P1), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P1, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P1_specs_3 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P1), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P1, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P1 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P1 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P1_tags_3, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P1_tags_3) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P1_tags_3[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P1_tags_3, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P1_tags_3) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P1_tags_3[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P1_tags_3, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P1_tags_3) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P1_tags_3[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P1_tags_3, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P1_tags_3) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P1_tags_3[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P1_constr_3, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P1_constr_3, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P1_3, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P1_3, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P1_specs_3 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P1_specs_3 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P2_5[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P2_5[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1263,39 +1263,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P2_5[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P2_tags_5[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P2_tags_5[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P2_specs_5 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P2), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P2, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P2_specs_5 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P2), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P2, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P2 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P2 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P2_tags_5, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P2_tags_5) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P2_tags_5[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P2_tags_5, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P2_tags_5) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P2_tags_5[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P2_tags_5, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P2_tags_5) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P2_tags_5[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P2_tags_5, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P2_tags_5) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P2_tags_5[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P2_constr_5, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P2_constr_5, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P2_5, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P2_5, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P2_specs_5 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P2_specs_5 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P3_7[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P3_7[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1314,39 +1314,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P3_7[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P3_tags_7[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P3_tags_7[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P3_specs_7 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P3), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P3, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P3_specs_7 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P3), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P3, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P3 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P3 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P3_tags_7, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P3_tags_7) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P3_tags_7[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P3_tags_7, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P3_tags_7) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P3_tags_7[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P3_tags_7, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P3_tags_7) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P3_tags_7[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P3_tags_7, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P3_tags_7) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P3_tags_7[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P3_constr_7, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P3_constr_7, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P3_7, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P3_7, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P3_specs_7 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P3_specs_7 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P4_9[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P4_9[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1365,39 +1365,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P4_9[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P4_tags_9[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P4_tags_9[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P4_specs_9 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P4), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P4, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P4_specs_9 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P4), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P4, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P4 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P4 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P4_tags_9, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P4_tags_9) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P4_tags_9[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P4_tags_9, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P4_tags_9) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P4_tags_9[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P4_tags_9, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P4_tags_9) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P4_tags_9[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P4_tags_9, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P4_tags_9) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P4_tags_9[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P4_constr_9, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P4_constr_9, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P4_9, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P4_9, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P4_specs_9 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P4_specs_9 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P5_11[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P5_11[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1416,39 +1416,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P5_11[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P5_tags_11[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P5_tags_11[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P5_specs_11 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P5), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P5, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P5_specs_11 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P5), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P5, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P5 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P5 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P5_tags_11, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P5_tags_11) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P5_tags_11[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P5_tags_11, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P5_tags_11) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P5_tags_11[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P5_tags_11, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P5_tags_11) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P5_tags_11[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P5_tags_11, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P5_tags_11) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P5_tags_11[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P5_constr_11, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P5_constr_11, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P5_11, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P5_11, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P5_specs_11 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P5_specs_11 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P6_13[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P6_13[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1467,39 +1467,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P6_13[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P6_tags_13[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P6_tags_13[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P6_specs_13 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P6), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P6, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P6_specs_13 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P6), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P6, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P6 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P6 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P6_tags_13, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P6_tags_13) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P6_tags_13[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P6_tags_13, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P6_tags_13) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P6_tags_13[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P6_tags_13, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P6_tags_13) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P6_tags_13[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P6_tags_13, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P6_tags_13) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P6_tags_13[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P6_constr_13, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P6_constr_13, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P6_13, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P6_13, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P6_specs_13 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P6_specs_13 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P7_15[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P7_15[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1518,39 +1518,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P7_15[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P7_tags_15[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P7_tags_15[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P7_specs_15 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P7), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P7, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P7_specs_15 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P7), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P7, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P7 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P7 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P7_tags_15, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P7_tags_15) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P7_tags_15[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P7_tags_15, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P7_tags_15) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P7_tags_15[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P7_tags_15, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P7_tags_15) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P7_tags_15[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P7_tags_15, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P7_tags_15) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P7_tags_15[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P7_constr_15, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P7_constr_15, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P7_15, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P7_15, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P7_specs_15 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P7_specs_15 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P8_17[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P8_17[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1569,39 +1569,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P8_17[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P8_tags_17[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P8_tags_17[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P8_specs_17 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P8), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P8, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P8_specs_17 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P8), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P8, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P8 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P8 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P8_tags_17, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P8_tags_17) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P8_tags_17[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P8_tags_17, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P8_tags_17) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P8_tags_17[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P8_tags_17, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P8_tags_17) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P8_tags_17[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P8_tags_17, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P8_tags_17) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P8_tags_17[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P8_constr_17, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P8_constr_17, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P8_17, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P8_17, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P8_specs_17 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P8_specs_17 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P9_19[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P9_19[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1620,39 +1620,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P9_19[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P9_tags_19[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P9_tags_19[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P9_specs_19 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P9), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P9, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P9_specs_19 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P9), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P9, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P9 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P9 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P9_tags_19, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P9_tags_19) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P9_tags_19[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P9_tags_19, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P9_tags_19) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P9_tags_19[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P9_tags_19, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P9_tags_19) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P9_tags_19[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P9_tags_19, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P9_tags_19) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P9_tags_19[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P9_constr_19, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P9_constr_19, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P9_19, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P9_19, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P9_specs_19 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P9_specs_19 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P10_21[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P10_21[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1671,39 +1671,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P10_21[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P10_tags_21[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P10_tags_21[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P10_specs_21 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P10), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P10, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P10_specs_21 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P10), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P10, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P10 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P10 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P10_tags_21, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P10_tags_21) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P10_tags_21[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P10_tags_21, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P10_tags_21) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P10_tags_21[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P10_tags_21, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P10_tags_21) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P10_tags_21[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P10_tags_21, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P10_tags_21) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P10_tags_21[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P10_constr_21, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P10_constr_21, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P10_21, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P10_21, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P10_specs_21 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P10_specs_21 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P11_23[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P11_23[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1722,39 +1722,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P11_23[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P11_tags_23[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P11_tags_23[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P11_specs_23 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P11), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P11, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P11_specs_23 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P11), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P11, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P11 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P11 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P11_tags_23, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P11_tags_23) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P11_tags_23[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P11_tags_23, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P11_tags_23) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P11_tags_23[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P11_tags_23, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P11_tags_23) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P11_tags_23[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P11_tags_23, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P11_tags_23) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P11_tags_23[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P11_constr_23, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P11_constr_23, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P11_23, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P11_23, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P11_specs_23 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P11_specs_23 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P12_25[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P12_25[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1773,39 +1773,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P12_25[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P12_tags_25[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P12_tags_25[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P12_specs_25 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P12), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P12, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P12_specs_25 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P12), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P12, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P12 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P12 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P12_tags_25, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P12_tags_25) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P12_tags_25[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P12_tags_25, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P12_tags_25) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P12_tags_25[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P12_tags_25, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P12_tags_25) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P12_tags_25[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P12_tags_25, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P12_tags_25) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P12_tags_25[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P12_constr_25, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P12_constr_25, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P12_25, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P12_25, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P12_specs_25 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P12_specs_25 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P13_27[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P13_27[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1824,39 +1824,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P13_27[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P13_tags_27[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P13_tags_27[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P13_specs_27 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P13), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P13, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P13_specs_27 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P13), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P13, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P13 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P13 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P13_tags_27, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P13_tags_27) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P13_tags_27[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P13_tags_27, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P13_tags_27) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P13_tags_27[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P13_tags_27, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P13_tags_27) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P13_tags_27[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P13_tags_27, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P13_tags_27) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P13_tags_27[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P13_constr_27, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P13_constr_27, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P13_27, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P13_27, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P13_specs_27 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P13_specs_27 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P14_29[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P14_29[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1875,39 +1875,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P14_29[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P14_tags_29[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P14_tags_29[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P14_specs_29 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P14), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P14, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P14_specs_29 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P14), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P14, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P14 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P14 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P14_tags_29, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P14_tags_29) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P14_tags_29[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P14_tags_29, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P14_tags_29) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P14_tags_29[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P14_tags_29, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P14_tags_29) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P14_tags_29[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P14_tags_29, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P14_tags_29) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P14_tags_29[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P14_constr_29, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P14_constr_29, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P14_29, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P14_29, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P14_specs_29 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P14_specs_29 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P15_31[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P15_31[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1926,39 +1926,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P15_31[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P15_tags_31[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P15_tags_31[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P15_specs_31 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P15), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P15, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P15_specs_31 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P15), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P15, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P15 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P15 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P15_tags_31, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P15_tags_31) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P15_tags_31[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P15_tags_31, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P15_tags_31) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P15_tags_31[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P15_tags_31, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P15_tags_31) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P15_tags_31[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P15_tags_31, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P15_tags_31) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P15_tags_31[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P15_constr_31, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P15_constr_31, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P15_31, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P15_31, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P15_specs_31 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P15_specs_31 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P16_33[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P16_33[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1977,39 +1977,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P16_33[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P16_tags_33[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P16_tags_33[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P16_specs_33 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P16), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P16, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P16_specs_33 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P16), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P16, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P16 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P16 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P16_tags_33, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P16_tags_33) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P16_tags_33[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P16_tags_33, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P16_tags_33) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P16_tags_33[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P16_tags_33, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P16_tags_33) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P16_tags_33[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P16_tags_33, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P16_tags_33) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P16_tags_33[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P16_constr_33, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P16_constr_33, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P16_33, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P16_33, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P16_specs_33 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P16_specs_33 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P17_35[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P17_35[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2028,39 +2028,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P17_35[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P17_tags_35[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P17_tags_35[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P17_specs_35 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P17), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P17, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P17_specs_35 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P17), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P17, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P17 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P17 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P17_tags_35, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P17_tags_35) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P17_tags_35[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P17_tags_35, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P17_tags_35) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P17_tags_35[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P17_tags_35, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P17_tags_35) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P17_tags_35[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P17_tags_35, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P17_tags_35) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P17_tags_35[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P17_constr_35, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P17_constr_35, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P17_35, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P17_35, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P17_specs_35 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P17_specs_35 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P18_37[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P18_37[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2079,39 +2079,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P18_37[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P18_tags_37[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P18_tags_37[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P18_specs_37 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P18), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P18, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P18_specs_37 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P18), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P18, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P18 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P18 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P18_tags_37, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P18_tags_37) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P18_tags_37[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P18_tags_37, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P18_tags_37) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P18_tags_37[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P18_tags_37, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P18_tags_37) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P18_tags_37[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P18_tags_37, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P18_tags_37) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P18_tags_37[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P18_constr_37, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P18_constr_37, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P18_37, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P18_37, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P18_specs_37 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P18_specs_37 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P19_39[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P19_39[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2130,39 +2130,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P19_39[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P19_tags_39[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P19_tags_39[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P19_specs_39 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P19), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P19, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P19_specs_39 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P19), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P19, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P19 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P19 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P19_tags_39, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P19_tags_39) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P19_tags_39[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P19_tags_39, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P19_tags_39) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P19_tags_39[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P19_tags_39, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P19_tags_39) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P19_tags_39[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P19_tags_39, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P19_tags_39) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P19_tags_39[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P19_constr_39, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P19_constr_39, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P19_39, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P19_39, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P19_specs_39 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P19_specs_39 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P20_41[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P20_41[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2181,39 +2181,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P20_41[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P20_tags_41[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P20_tags_41[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P20_specs_41 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P20), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P20, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P20_specs_41 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P20), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P20, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P20 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P20 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P20_tags_41, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P20_tags_41) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P20_tags_41[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P20_tags_41, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P20_tags_41) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P20_tags_41[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P20_tags_41, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P20_tags_41) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P20_tags_41[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P20_tags_41, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P20_tags_41) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P20_tags_41[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P20_constr_41, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P20_constr_41, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P20_41, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P20_41, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P20_specs_41 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P20_specs_41 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P21_43[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P21_43[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2232,39 +2232,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P21_43[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P21_tags_43[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P21_tags_43[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P21_specs_43 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P21), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P21, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P21_specs_43 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P21), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P21, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P21 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P21 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P21_tags_43, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P21_tags_43) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P21_tags_43[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P21_tags_43, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P21_tags_43) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P21_tags_43[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P21_tags_43, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P21_tags_43) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P21_tags_43[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P21_tags_43, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P21_tags_43) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P21_tags_43[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P21_constr_43, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P21_constr_43, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P21_43, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P21_43, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P21_specs_43 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P21_specs_43 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P22_45[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P22_45[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2283,39 +2283,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P22_45[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P22_tags_45[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P22_tags_45[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P22_specs_45 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P22), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P22, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P22_specs_45 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P22), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P22, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P22 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P22 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P22_tags_45, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P22_tags_45) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P22_tags_45[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P22_tags_45, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P22_tags_45) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P22_tags_45[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P22_tags_45, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P22_tags_45) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P22_tags_45[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P22_tags_45, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P22_tags_45) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P22_tags_45[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P22_constr_45, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P22_constr_45, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P22_45, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P22_45, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P22_specs_45 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P22_specs_45 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P23_47[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P23_47[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2334,39 +2334,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P23_47[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P23_tags_47[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P23_tags_47[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P23_specs_47 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P23), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P23, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P23_specs_47 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P23), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P23, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P23 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P23 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P23_tags_47, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P23_tags_47) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P23_tags_47[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P23_tags_47, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P23_tags_47) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P23_tags_47[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P23_tags_47, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P23_tags_47) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P23_tags_47[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P23_tags_47, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P23_tags_47) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P23_tags_47[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P23_constr_47, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P23_constr_47, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P23_47, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P23_47, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P23_specs_47 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P23_specs_47 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P24_49[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P24_49[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2385,39 +2385,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P24_49[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P24_tags_49[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P24_tags_49[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P24_specs_49 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P24), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P24, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P24_specs_49 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P24), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P24, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P24 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P24 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P24_tags_49, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P24_tags_49) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P24_tags_49[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P24_tags_49, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P24_tags_49) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P24_tags_49[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P24_tags_49, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P24_tags_49) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P24_tags_49[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P24_tags_49, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P24_tags_49) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P24_tags_49[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P24_constr_49, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P24_constr_49, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P24_49, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P24_49, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P24_specs_49 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P24_specs_49 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P25_51[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P25_51[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2436,39 +2436,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P25_51[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P25_tags_51[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P25_tags_51[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P25_specs_51 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P25), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P25, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P25_specs_51 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P25), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P25, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P25 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P25 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P25_tags_51, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P25_tags_51) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P25_tags_51[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P25_tags_51, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P25_tags_51) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P25_tags_51[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P25_tags_51, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P25_tags_51) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P25_tags_51[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P25_tags_51, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P25_tags_51) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P25_tags_51[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P25_constr_51, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P25_constr_51, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P25_51, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P25_51, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P25_specs_51 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P25_specs_51 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P26_53[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P26_53[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2487,39 +2487,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P26_53[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P26_tags_53[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P26_tags_53[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P26_specs_53 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P26), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P26, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P26_specs_53 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P26), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P26, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P26 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P26 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P26_tags_53, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P26_tags_53) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P26_tags_53[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P26_tags_53, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P26_tags_53) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P26_tags_53[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P26_tags_53, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P26_tags_53) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P26_tags_53[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P26_tags_53, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P26_tags_53) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P26_tags_53[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P26_constr_53, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P26_constr_53, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P26_53, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P26_53, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P26_specs_53 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P26_specs_53 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P27_55[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P27_55[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2538,39 +2538,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P27_55[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P27_tags_55[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P27_tags_55[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P27_specs_55 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P27), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P27, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P27_specs_55 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P27), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P27, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P27 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P27 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P27_tags_55, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P27_tags_55) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P27_tags_55[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P27_tags_55, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P27_tags_55) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P27_tags_55[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P27_tags_55, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P27_tags_55) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P27_tags_55[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P27_tags_55, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P27_tags_55) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P27_tags_55[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P27_constr_55, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P27_constr_55, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P27_55, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P27_55, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P27_specs_55 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P27_specs_55 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P28_57[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P28_57[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2589,39 +2589,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P28_57[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P28_tags_57[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P28_tags_57[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P28_specs_57 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P28), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P28, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P28_specs_57 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P28), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P28, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P28 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P28 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P28_tags_57, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P28_tags_57) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P28_tags_57[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P28_tags_57, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P28_tags_57) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P28_tags_57[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P28_tags_57, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P28_tags_57) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P28_tags_57[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P28_tags_57, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P28_tags_57) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P28_tags_57[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P28_constr_57, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P28_constr_57, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P28_57, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P28_57, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P28_specs_57 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P28_specs_57 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P29_59[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P29_59[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2640,39 +2640,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P29_59[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P29_tags_59[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P29_tags_59[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P29_specs_59 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P29), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P29, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P29_specs_59 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P29), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P29, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P29 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P29 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P29_tags_59, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P29_tags_59) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P29_tags_59[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P29_tags_59, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P29_tags_59) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P29_tags_59[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P29_tags_59, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P29_tags_59) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P29_tags_59[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P29_tags_59, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P29_tags_59) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P29_tags_59[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P29_constr_59, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P29_constr_59, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P29_59, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P29_59, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P29_specs_59 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P29_specs_59 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P30_61[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P30_61[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2691,39 +2691,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P30_61[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P30_tags_61[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P30_tags_61[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P30_specs_61 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P30), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P30, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P30_specs_61 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P30), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P30, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P30 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P30 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P30_tags_61, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P30_tags_61) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P30_tags_61[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P30_tags_61, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P30_tags_61) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P30_tags_61[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P30_tags_61, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P30_tags_61) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P30_tags_61[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P30_tags_61, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P30_tags_61) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P30_tags_61[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P30_constr_61, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P30_constr_61, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P30_61, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P30_61, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P30_specs_61 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P30_specs_61 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P31_63[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P31_63[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2742,39 +2742,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P31_63[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P31_tags_63[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P31_tags_63[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P31_specs_63 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P31), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P31, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P31_specs_63 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P31), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P31, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P31 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P31 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P31_tags_63, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P31_tags_63) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P31_tags_63[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P31_tags_63, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P31_tags_63) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P31_tags_63[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P31_tags_63, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P31_tags_63) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P31_tags_63[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P31_tags_63, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P31_tags_63) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P31_tags_63[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P31_constr_63, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P31_constr_63, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P31_63, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P31_63, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P31_specs_63 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P31_specs_63 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P32_65[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P32_65[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2793,39 +2793,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P32_65[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P32_tags_65[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P32_tags_65[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P32_specs_65 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P32), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P32, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P32_specs_65 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P32), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P32, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P32 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P32 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P32_tags_65, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P32_tags_65) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P32_tags_65[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P32_tags_65, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P32_tags_65) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P32_tags_65[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P32_tags_65, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P32_tags_65) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P32_tags_65[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P32_tags_65, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P32_tags_65) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P32_tags_65[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P32_constr_65, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P32_constr_65, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P32_65, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P32_65, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P32_specs_65 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P32_specs_65 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P33_67[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P33_67[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2844,39 +2844,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P33_67[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P33_tags_67[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P33_tags_67[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P33_specs_67 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P33), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P33, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P33_specs_67 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P33), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P33, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P33 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P33 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P33_tags_67, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P33_tags_67) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P33_tags_67[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P33_tags_67, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P33_tags_67) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P33_tags_67[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P33_tags_67, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P33_tags_67) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P33_tags_67[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P33_tags_67, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P33_tags_67) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P33_tags_67[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P33_constr_67, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P33_constr_67, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P33_67, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P33_67, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P33_specs_67 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P33_specs_67 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P34_69[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P34_69[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2895,39 +2895,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P34_69[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P34_tags_69[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P34_tags_69[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P34_specs_69 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P34), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P34, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P34_specs_69 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P34), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P34, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P34 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P34 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P34_tags_69, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P34_tags_69) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P34_tags_69[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P34_tags_69, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P34_tags_69) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P34_tags_69[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P34_tags_69, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P34_tags_69) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P34_tags_69[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P34_tags_69, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P34_tags_69) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P34_tags_69[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P34_constr_69, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P34_constr_69, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P34_69, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P34_69, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P34_specs_69 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P34_specs_69 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P35_71[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P35_71[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2946,39 +2946,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P35_71[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P35_tags_71[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P35_tags_71[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P35_specs_71 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P35), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P35, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P35_specs_71 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P35), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P35, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P35 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P35 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P35_tags_71, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P35_tags_71) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P35_tags_71[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P35_tags_71, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P35_tags_71) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P35_tags_71[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P35_tags_71, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P35_tags_71) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P35_tags_71[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P35_tags_71, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P35_tags_71) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P35_tags_71[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P35_constr_71, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P35_constr_71, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P35_71, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P35_71, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P35_specs_71 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P35_specs_71 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P36_73[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P36_73[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2997,39 +2997,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P36_73[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P36_tags_73[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P36_tags_73[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P36_specs_73 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P36), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P36, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P36_specs_73 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P36), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P36, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P36 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P36 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P36_tags_73, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P36_tags_73) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P36_tags_73[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P36_tags_73, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P36_tags_73) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P36_tags_73[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P36_tags_73, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P36_tags_73) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P36_tags_73[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P36_tags_73, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P36_tags_73) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P36_tags_73[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P36_constr_73, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P36_constr_73, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P36_73, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P36_73, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P36_specs_73 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P36_specs_73 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P37_75[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P37_75[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3048,39 +3048,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P37_75[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P37_tags_75[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P37_tags_75[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P37_specs_75 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P37), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P37, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P37_specs_75 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P37), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P37, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P37 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P37 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P37_tags_75, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P37_tags_75) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P37_tags_75[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P37_tags_75, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P37_tags_75) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P37_tags_75[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P37_tags_75, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P37_tags_75) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P37_tags_75[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P37_tags_75, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P37_tags_75) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P37_tags_75[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P37_constr_75, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P37_constr_75, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P37_75, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P37_75, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P37_specs_75 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P37_specs_75 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P38_77[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P38_77[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3099,39 +3099,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P38_77[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P38_tags_77[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P38_tags_77[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P38_specs_77 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P38), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P38, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P38_specs_77 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P38), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P38, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P38 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P38 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P38_tags_77, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P38_tags_77) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P38_tags_77[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P38_tags_77, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P38_tags_77) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P38_tags_77[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P38_tags_77, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P38_tags_77) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P38_tags_77[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P38_tags_77, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P38_tags_77) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P38_tags_77[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P38_constr_77, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P38_constr_77, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P38_77, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P38_77, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P38_specs_77 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P38_specs_77 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P39_79[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P39_79[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3150,39 +3150,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P39_79[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P39_tags_79[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P39_tags_79[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P39_specs_79 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P39), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P39, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P39_specs_79 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P39), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P39, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P39 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P39 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P39_tags_79, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P39_tags_79) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P39_tags_79[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P39_tags_79, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P39_tags_79) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P39_tags_79[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P39_tags_79, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P39_tags_79) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P39_tags_79[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P39_tags_79, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P39_tags_79) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P39_tags_79[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P39_constr_79, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P39_constr_79, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P39_79, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P39_79, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P39_specs_79 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P39_specs_79 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P40_81[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P40_81[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3201,39 +3201,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P40_81[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P40_tags_81[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P40_tags_81[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P40_specs_81 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P40), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P40, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P40_specs_81 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P40), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P40, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P40 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P40 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P40_tags_81, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P40_tags_81) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P40_tags_81[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P40_tags_81, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P40_tags_81) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P40_tags_81[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P40_tags_81, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P40_tags_81) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P40_tags_81[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P40_tags_81, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P40_tags_81) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P40_tags_81[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P40_constr_81, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P40_constr_81, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P40_81, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P40_81, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P40_specs_81 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P40_specs_81 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P41_83[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P41_83[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3252,39 +3252,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P41_83[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P41_tags_83[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P41_tags_83[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P41_specs_83 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P41), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P41, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P41_specs_83 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P41), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P41, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P41 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P41 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P41_tags_83, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P41_tags_83) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P41_tags_83[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P41_tags_83, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P41_tags_83) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P41_tags_83[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P41_tags_83, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P41_tags_83) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P41_tags_83[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P41_tags_83, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P41_tags_83) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P41_tags_83[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P41_constr_83, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P41_constr_83, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P41_83, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P41_83, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P41_specs_83 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P41_specs_83 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P42_85[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P42_85[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3303,39 +3303,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P42_85[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P42_tags_85[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P42_tags_85[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P42_specs_85 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P42), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P42, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P42_specs_85 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P42), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P42, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P42 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P42 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P42_tags_85, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P42_tags_85) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P42_tags_85[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P42_tags_85, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P42_tags_85) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P42_tags_85[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P42_tags_85, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P42_tags_85) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P42_tags_85[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P42_tags_85, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P42_tags_85) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P42_tags_85[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P42_constr_85, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P42_constr_85, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P42_85, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P42_85, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P42_specs_85 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P42_specs_85 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P43_87[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P43_87[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3354,39 +3354,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P43_87[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P43_tags_87[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P43_tags_87[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P43_specs_87 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P43), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P43, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P43_specs_87 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P43), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P43, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P43 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P43 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P43_tags_87, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P43_tags_87) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P43_tags_87[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P43_tags_87, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P43_tags_87) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P43_tags_87[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P43_tags_87, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P43_tags_87) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P43_tags_87[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P43_tags_87, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P43_tags_87) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P43_tags_87[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P43_constr_87, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P43_constr_87, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P43_87, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P43_87, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P43_specs_87 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P43_specs_87 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P44_89[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P44_89[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3405,39 +3405,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P44_89[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P44_tags_89[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P44_tags_89[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P44_specs_89 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P44), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P44, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P44_specs_89 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P44), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P44, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P44 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P44 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P44_tags_89, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P44_tags_89) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P44_tags_89[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P44_tags_89, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P44_tags_89) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P44_tags_89[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P44_tags_89, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P44_tags_89) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P44_tags_89[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P44_tags_89, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P44_tags_89) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P44_tags_89[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P44_constr_89, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P44_constr_89, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P44_89, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P44_89, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P44_specs_89 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P44_specs_89 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P45_91[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P45_91[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3456,39 +3456,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P45_91[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P45_tags_91[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P45_tags_91[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P45_specs_91 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P45), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P45, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P45_specs_91 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P45), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P45, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P45 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P45 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P45_tags_91, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P45_tags_91) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P45_tags_91[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P45_tags_91, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P45_tags_91) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P45_tags_91[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P45_tags_91, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P45_tags_91) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P45_tags_91[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P45_tags_91, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P45_tags_91) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P45_tags_91[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P45_constr_91, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P45_constr_91, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P45_91, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P45_91, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P45_specs_91 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P45_specs_91 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P46_93[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P46_93[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3507,39 +3507,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P46_93[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P46_tags_93[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P46_tags_93[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P46_specs_93 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P46), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P46, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P46_specs_93 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P46), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P46, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P46 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P46 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P46_tags_93, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P46_tags_93) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P46_tags_93[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P46_tags_93, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P46_tags_93) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P46_tags_93[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P46_tags_93, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P46_tags_93) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P46_tags_93[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P46_tags_93, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P46_tags_93) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P46_tags_93[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P46_constr_93, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P46_constr_93, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P46_93, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P46_93, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P46_specs_93 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P46_specs_93 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P47_95[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P47_95[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3558,39 +3558,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P47_95[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P47_tags_95[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P47_tags_95[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P47_specs_95 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P47), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P47, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P47_specs_95 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P47), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P47, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P47 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P47 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P47_tags_95, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P47_tags_95) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P47_tags_95[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P47_tags_95, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P47_tags_95) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P47_tags_95[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P47_tags_95, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P47_tags_95) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P47_tags_95[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P47_tags_95, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P47_tags_95) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P47_tags_95[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P47_constr_95, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P47_constr_95, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P47_95, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P47_95, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P47_specs_95 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P47_specs_95 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P48_97[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P48_97[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3609,39 +3609,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P48_97[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P48_tags_97[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P48_tags_97[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P48_specs_97 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P48), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P48, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P48_specs_97 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P48), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P48, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P48 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P48 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P48_tags_97, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P48_tags_97) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P48_tags_97[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P48_tags_97, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P48_tags_97) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P48_tags_97[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P48_tags_97, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P48_tags_97) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P48_tags_97[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P48_tags_97, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P48_tags_97) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P48_tags_97[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P48_constr_97, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P48_constr_97, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P48_97, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P48_97, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P48_specs_97 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P48_specs_97 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P49_99[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P49_99[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3660,39 +3660,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P49_99[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P49_tags_99[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P49_tags_99[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P49_specs_99 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P49), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P49, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P49_specs_99 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P49), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P49, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P49 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P49 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P49_tags_99, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P49_tags_99) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P49_tags_99[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P49_tags_99, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P49_tags_99) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P49_tags_99[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P49_tags_99, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P49_tags_99) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P49_tags_99[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P49_tags_99, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P49_tags_99) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P49_tags_99[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P49_constr_99, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P49_constr_99, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P49_99, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P49_99, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P49_specs_99 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P49_specs_99 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P50_101[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P50_101[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3711,39 +3711,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P50_101[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P50_tags_101[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P50_tags_101[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P50_specs_101 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P50), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P50, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P50_specs_101 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P50), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P50, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P50 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P50 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P50_tags_101, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P50_tags_101) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P50_tags_101[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P50_tags_101, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P50_tags_101) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P50_tags_101[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P50_tags_101, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P50_tags_101) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P50_tags_101[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P50_tags_101, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P50_tags_101) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P50_tags_101[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P50_constr_101, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P50_constr_101, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P50_101, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P50_101, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P50_specs_101 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P50_specs_101 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P51_103[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P51_103[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3762,39 +3762,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P51_103[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P51_tags_103[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P51_tags_103[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P51_specs_103 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P51), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P51, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P51_specs_103 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P51), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P51, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P51 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P51 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P51_tags_103, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P51_tags_103) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P51_tags_103[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P51_tags_103, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P51_tags_103) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P51_tags_103[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P51_tags_103, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P51_tags_103) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P51_tags_103[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P51_tags_103, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P51_tags_103) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P51_tags_103[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P51_constr_103, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P51_constr_103, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P51_103, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P51_103, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P51_specs_103 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P51_specs_103 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P52_105[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P52_105[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3813,39 +3813,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P52_105[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P52_tags_105[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P52_tags_105[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P52_specs_105 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P52), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P52, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P52_specs_105 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P52), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P52, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P52 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P52 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P52_tags_105, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P52_tags_105) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P52_tags_105[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P52_tags_105, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P52_tags_105) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P52_tags_105[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P52_tags_105, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P52_tags_105) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P52_tags_105[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P52_tags_105, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P52_tags_105) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P52_tags_105[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P52_constr_105, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P52_constr_105, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P52_105, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P52_105, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P52_specs_105 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P52_specs_105 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P53_107[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P53_107[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3864,39 +3864,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P53_107[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P53_tags_107[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P53_tags_107[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P53_specs_107 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P53), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P53, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P53_specs_107 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P53), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P53, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P53 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P53 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P53_tags_107, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P53_tags_107) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P53_tags_107[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P53_tags_107, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P53_tags_107) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P53_tags_107[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P53_tags_107, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P53_tags_107) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P53_tags_107[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P53_tags_107, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P53_tags_107) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P53_tags_107[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P53_constr_107, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P53_constr_107, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P53_107, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P53_107, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P53_specs_107 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P53_specs_107 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P54_109[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P54_109[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3915,39 +3915,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P54_109[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P54_tags_109[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P54_tags_109[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P54_specs_109 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P54), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P54, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P54_specs_109 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P54), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P54, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P54 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P54 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P54_tags_109, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P54_tags_109) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P54_tags_109[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P54_tags_109, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P54_tags_109) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P54_tags_109[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P54_tags_109, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P54_tags_109) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P54_tags_109[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P54_tags_109, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P54_tags_109) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P54_tags_109[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P54_constr_109, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P54_constr_109, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P54_109, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P54_109, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P54_specs_109 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P54_specs_109 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P55_111[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P55_111[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3966,39 +3966,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P55_111[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P55_tags_111[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P55_tags_111[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P55_specs_111 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P55), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P55, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P55_specs_111 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P55), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P55, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P55 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P55 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P55_tags_111, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P55_tags_111) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P55_tags_111[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P55_tags_111, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P55_tags_111) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P55_tags_111[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P55_tags_111, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P55_tags_111) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P55_tags_111[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P55_tags_111, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P55_tags_111) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P55_tags_111[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P55_constr_111, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P55_constr_111, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P55_111, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P55_111, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P55_specs_111 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P55_specs_111 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P56_113[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P56_113[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4017,39 +4017,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P56_113[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P56_tags_113[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P56_tags_113[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P56_specs_113 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P56), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P56, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P56_specs_113 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P56), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P56, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P56 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P56 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P56_tags_113, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P56_tags_113) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P56_tags_113[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P56_tags_113, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P56_tags_113) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P56_tags_113[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P56_tags_113, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P56_tags_113) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P56_tags_113[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P56_tags_113, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P56_tags_113) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P56_tags_113[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P56_constr_113, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P56_constr_113, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P56_113, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P56_113, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P56_specs_113 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P56_specs_113 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P57_115[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P57_115[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4068,39 +4068,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P57_115[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P57_tags_115[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P57_tags_115[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P57_specs_115 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P57), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P57, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P57_specs_115 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P57), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P57, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P57 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P57 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P57_tags_115, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P57_tags_115) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P57_tags_115[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P57_tags_115, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P57_tags_115) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P57_tags_115[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P57_tags_115, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P57_tags_115) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P57_tags_115[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P57_tags_115, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P57_tags_115) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P57_tags_115[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P57_constr_115, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P57_constr_115, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P57_115, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P57_115, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P57_specs_115 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P57_specs_115 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P58_117[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P58_117[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4119,39 +4119,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P58_117[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P58_tags_117[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P58_tags_117[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P58_specs_117 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P58), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P58, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P58_specs_117 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P58), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P58, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P58 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P58 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P58_tags_117, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P58_tags_117) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P58_tags_117[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P58_tags_117, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P58_tags_117) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P58_tags_117[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P58_tags_117, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P58_tags_117) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P58_tags_117[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P58_tags_117, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P58_tags_117) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P58_tags_117[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P58_constr_117, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P58_constr_117, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P58_117, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P58_117, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P58_specs_117 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P58_specs_117 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P59_119[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P59_119[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4170,39 +4170,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P59_119[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P59_tags_119[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P59_tags_119[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P59_specs_119 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P59), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P59, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P59_specs_119 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P59), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P59, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P59 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P59 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P59_tags_119, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P59_tags_119) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P59_tags_119[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P59_tags_119, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P59_tags_119) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P59_tags_119[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P59_tags_119, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P59_tags_119) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P59_tags_119[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P59_tags_119, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P59_tags_119) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P59_tags_119[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P59_constr_119, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P59_constr_119, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P59_119, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P59_119, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P59_specs_119 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P59_specs_119 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P60_121[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P60_121[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4221,39 +4221,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P60_121[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P60_tags_121[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P60_tags_121[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P60_specs_121 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P60), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P60, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P60_specs_121 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P60), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P60, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P60 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P60 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P60_tags_121, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P60_tags_121) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P60_tags_121[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P60_tags_121, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P60_tags_121) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P60_tags_121[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P60_tags_121, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P60_tags_121) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P60_tags_121[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P60_tags_121, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P60_tags_121) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P60_tags_121[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P60_constr_121, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P60_constr_121, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P60_121, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P60_121, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P60_specs_121 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P60_specs_121 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P61_123[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P61_123[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4272,39 +4272,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P61_123[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P61_tags_123[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P61_tags_123[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P61_specs_123 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P61), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P61, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P61_specs_123 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P61), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P61, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P61 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P61 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P61_tags_123, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P61_tags_123) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P61_tags_123[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P61_tags_123, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P61_tags_123) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P61_tags_123[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P61_tags_123, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P61_tags_123) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P61_tags_123[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P61_tags_123, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P61_tags_123) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P61_tags_123[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P61_constr_123, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P61_constr_123, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P61_123, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P61_123, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P61_specs_123 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P61_specs_123 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P62_125[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P62_125[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4323,39 +4323,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P62_125[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P62_tags_125[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P62_tags_125[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P62_specs_125 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P62), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P62, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P62_specs_125 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P62), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P62, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P62 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P62 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P62_tags_125, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P62_tags_125) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P62_tags_125[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P62_tags_125, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P62_tags_125) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P62_tags_125[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P62_tags_125, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P62_tags_125) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P62_tags_125[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P62_tags_125, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P62_tags_125) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P62_tags_125[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P62_constr_125, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P62_constr_125, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P62_125, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P62_125, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P62_specs_125 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P62_specs_125 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P63_127[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P63_127[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4374,39 +4374,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P63_127[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P63_tags_127[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P63_tags_127[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P63_specs_127 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P63), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P63, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P63_specs_127 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P63), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P63, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P63 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P63 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P63_tags_127, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P63_tags_127) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P63_tags_127[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P63_tags_127, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P63_tags_127) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P63_tags_127[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P63_tags_127, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P63_tags_127) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P63_tags_127[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P63_tags_127, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P63_tags_127) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P63_tags_127[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P63_constr_127, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P63_constr_127, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P63_127, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P63_127, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P63_specs_127 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P63_specs_127 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P64_129[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P64_129[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4425,39 +4425,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P64_129[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P64_tags_129[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P64_tags_129[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P64_specs_129 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P64), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P64, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P64_specs_129 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P64), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P64, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P64 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P64 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P64_tags_129, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P64_tags_129) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P64_tags_129[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P64_tags_129, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P64_tags_129) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P64_tags_129[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P64_tags_129, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P64_tags_129) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P64_tags_129[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P64_tags_129, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P64_tags_129) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P64_tags_129[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P64_constr_129, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P64_constr_129, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P64_129, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P64_129, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P64_specs_129 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P64_specs_129 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P65_131[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P65_131[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4476,39 +4476,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P65_131[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P65_tags_131[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P65_tags_131[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P65_specs_131 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P65), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P65, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P65_specs_131 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P65), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P65, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P65 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P65 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P65_tags_131, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P65_tags_131) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P65_tags_131[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P65_tags_131, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P65_tags_131) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P65_tags_131[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P65_tags_131, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P65_tags_131) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P65_tags_131[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P65_tags_131, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P65_tags_131) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P65_tags_131[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P65_constr_131, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P65_constr_131, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P65_131, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P65_131, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P65_specs_131 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P65_specs_131 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P66_133[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P66_133[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4527,39 +4527,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P66_133[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P66_tags_133[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P66_tags_133[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P66_specs_133 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P66), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P66, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P66_specs_133 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P66), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P66, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P66 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P66 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P66_tags_133, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P66_tags_133) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P66_tags_133[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P66_tags_133, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P66_tags_133) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P66_tags_133[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P66_tags_133, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P66_tags_133) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P66_tags_133[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P66_tags_133, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P66_tags_133) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P66_tags_133[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P66_constr_133, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P66_constr_133, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P66_133, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P66_133, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P66_specs_133 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P66_specs_133 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P67_135[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P67_135[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4578,39 +4578,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P67_135[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P67_tags_135[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P67_tags_135[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P67_specs_135 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P67), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P67, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P67_specs_135 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P67), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P67, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P67 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P67 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P67_tags_135, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P67_tags_135) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P67_tags_135[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P67_tags_135, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P67_tags_135) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P67_tags_135[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P67_tags_135, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P67_tags_135) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P67_tags_135[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P67_tags_135, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P67_tags_135) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P67_tags_135[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P67_constr_135, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P67_constr_135, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P67_135, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P67_135, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P67_specs_135 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P67_specs_135 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P68_137[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P68_137[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4629,39 +4629,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P68_137[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P68_tags_137[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P68_tags_137[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P68_specs_137 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P68), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P68, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P68_specs_137 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P68), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P68, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P68 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P68 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P68_tags_137, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P68_tags_137) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P68_tags_137[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P68_tags_137, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P68_tags_137) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P68_tags_137[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P68_tags_137, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P68_tags_137) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P68_tags_137[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P68_tags_137, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P68_tags_137) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P68_tags_137[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P68_constr_137, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P68_constr_137, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P68_137, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P68_137, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P68_specs_137 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P68_specs_137 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P69_139[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P69_139[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4680,39 +4680,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P69_139[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P69_tags_139[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P69_tags_139[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P69_specs_139 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P69), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P69, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P69_specs_139 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P69), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P69, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P69 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P69 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P69_tags_139, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P69_tags_139) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P69_tags_139[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P69_tags_139, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P69_tags_139) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P69_tags_139[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P69_tags_139, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P69_tags_139) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P69_tags_139[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P69_tags_139, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P69_tags_139) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P69_tags_139[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P69_constr_139, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P69_constr_139, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P69_139, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P69_139, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P69_specs_139 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P69_specs_139 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P70_141[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P70_141[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4731,39 +4731,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P70_141[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P70_tags_141[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P70_tags_141[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P70_specs_141 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P70), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P70, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P70_specs_141 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P70), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P70, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P70 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P70 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P70_tags_141, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P70_tags_141) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P70_tags_141[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P70_tags_141, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P70_tags_141) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P70_tags_141[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P70_tags_141, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P70_tags_141) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P70_tags_141[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P70_tags_141, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P70_tags_141) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P70_tags_141[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P70_constr_141, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P70_constr_141, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P70_141, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P70_141, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P70_specs_141 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P70_specs_141 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P71_143[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P71_143[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4782,39 +4782,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P71_143[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P71_tags_143[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P71_tags_143[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P71_specs_143 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P71), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P71, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P71_specs_143 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P71), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P71, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P71 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P71 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P71_tags_143, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P71_tags_143) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P71_tags_143[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P71_tags_143, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P71_tags_143) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P71_tags_143[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P71_tags_143, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P71_tags_143) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P71_tags_143[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P71_tags_143, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P71_tags_143) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P71_tags_143[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P71_constr_143, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P71_constr_143, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P71_143, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P71_143, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P71_specs_143 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P71_specs_143 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P72_145[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P72_145[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4833,39 +4833,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P72_145[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P72_tags_145[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P72_tags_145[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P72_specs_145 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P72), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P72, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P72_specs_145 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P72), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P72, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P72 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P72 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P72_tags_145, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P72_tags_145) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P72_tags_145[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P72_tags_145, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P72_tags_145) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P72_tags_145[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P72_tags_145, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P72_tags_145) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P72_tags_145[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P72_tags_145, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P72_tags_145) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P72_tags_145[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P72_constr_145, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P72_constr_145, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P72_145, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P72_145, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P72_specs_145 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P72_specs_145 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P73_147[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P73_147[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4884,39 +4884,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P73_147[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P73_tags_147[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P73_tags_147[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P73_specs_147 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P73), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P73, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P73_specs_147 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P73), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P73, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P73 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P73 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P73_tags_147, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P73_tags_147) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P73_tags_147[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P73_tags_147, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P73_tags_147) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P73_tags_147[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P73_tags_147, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P73_tags_147) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P73_tags_147[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P73_tags_147, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P73_tags_147) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P73_tags_147[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P73_constr_147, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P73_constr_147, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P73_147, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P73_147, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P73_specs_147 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P73_specs_147 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P74_149[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P74_149[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4935,39 +4935,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P74_149[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P74_tags_149[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P74_tags_149[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P74_specs_149 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P74), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P74, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P74_specs_149 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P74), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P74, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P74 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P74 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P74_tags_149, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P74_tags_149) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P74_tags_149[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P74_tags_149, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P74_tags_149) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P74_tags_149[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P74_tags_149, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P74_tags_149) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P74_tags_149[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P74_tags_149, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P74_tags_149) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P74_tags_149[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P74_constr_149, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P74_constr_149, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P74_149, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P74_149, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P74_specs_149 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P74_specs_149 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P75_151[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P75_151[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4986,39 +4986,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P75_151[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P75_tags_151[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P75_tags_151[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P75_specs_151 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P75), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P75, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P75_specs_151 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P75), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P75, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P75 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P75 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P75_tags_151, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P75_tags_151) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P75_tags_151[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P75_tags_151, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P75_tags_151) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P75_tags_151[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P75_tags_151, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P75_tags_151) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P75_tags_151[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P75_tags_151, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P75_tags_151) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P75_tags_151[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P75_constr_151, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P75_constr_151, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P75_151, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P75_151, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P75_specs_151 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P75_specs_151 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P76_153[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P76_153[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5037,39 +5037,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P76_153[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P76_tags_153[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P76_tags_153[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P76_specs_153 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P76), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P76, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P76_specs_153 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P76), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P76, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P76 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P76 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P76_tags_153, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P76_tags_153) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P76_tags_153[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P76_tags_153, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P76_tags_153) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P76_tags_153[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P76_tags_153, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P76_tags_153) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P76_tags_153[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P76_tags_153, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P76_tags_153) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P76_tags_153[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P76_constr_153, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P76_constr_153, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P76_153, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P76_153, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P76_specs_153 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P76_specs_153 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P77_155[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P77_155[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5088,39 +5088,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P77_155[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P77_tags_155[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P77_tags_155[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P77_specs_155 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P77), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P77, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P77_specs_155 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P77), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P77, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P77 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P77 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P77_tags_155, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P77_tags_155) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P77_tags_155[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P77_tags_155, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P77_tags_155) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P77_tags_155[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P77_tags_155, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P77_tags_155) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P77_tags_155[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P77_tags_155, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P77_tags_155) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P77_tags_155[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P77_constr_155, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P77_constr_155, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P77_155, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P77_155, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P77_specs_155 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P77_specs_155 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P78_157[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P78_157[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5139,39 +5139,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P78_157[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P78_tags_157[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P78_tags_157[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P78_specs_157 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P78), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P78, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P78_specs_157 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P78), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P78, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P78 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P78 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P78_tags_157, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P78_tags_157) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P78_tags_157[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P78_tags_157, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P78_tags_157) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P78_tags_157[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P78_tags_157, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P78_tags_157) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P78_tags_157[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P78_tags_157, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P78_tags_157) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P78_tags_157[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P78_constr_157, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P78_constr_157, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P78_157, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P78_157, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P78_specs_157 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P78_specs_157 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P79_159[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P79_159[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5190,39 +5190,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P79_159[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P79_tags_159[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P79_tags_159[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P79_specs_159 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P79), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P79, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P79_specs_159 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P79), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P79, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P79 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P79 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P79_tags_159, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P79_tags_159) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P79_tags_159[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P79_tags_159, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P79_tags_159) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P79_tags_159[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P79_tags_159, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P79_tags_159) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P79_tags_159[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P79_tags_159, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P79_tags_159) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P79_tags_159[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P79_constr_159, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P79_constr_159, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P79_159, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P79_159, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P79_specs_159 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P79_specs_159 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P80_161[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P80_161[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5241,39 +5241,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P80_161[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P80_tags_161[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P80_tags_161[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P80_specs_161 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P80), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P80, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P80_specs_161 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P80), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P80, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P80 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P80 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P80_tags_161, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P80_tags_161) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P80_tags_161[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P80_tags_161, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P80_tags_161) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P80_tags_161[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P80_tags_161, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P80_tags_161) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P80_tags_161[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P80_tags_161, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P80_tags_161) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P80_tags_161[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P80_constr_161, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P80_constr_161, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P80_161, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P80_161, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P80_specs_161 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P80_specs_161 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P81_163[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P81_163[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5292,39 +5292,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P81_163[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P81_tags_163[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P81_tags_163[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P81_specs_163 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P81), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P81, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P81_specs_163 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P81), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P81, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P81 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P81 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P81_tags_163, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P81_tags_163) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P81_tags_163[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P81_tags_163, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P81_tags_163) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P81_tags_163[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P81_tags_163, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P81_tags_163) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P81_tags_163[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P81_tags_163, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P81_tags_163) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P81_tags_163[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P81_constr_163, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P81_constr_163, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P81_163, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P81_163, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P81_specs_163 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P81_specs_163 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P82_165[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P82_165[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5343,39 +5343,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P82_165[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P82_tags_165[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P82_tags_165[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P82_specs_165 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P82), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P82, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P82_specs_165 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P82), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P82, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P82 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P82 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P82_tags_165, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P82_tags_165) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P82_tags_165[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P82_tags_165, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P82_tags_165) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P82_tags_165[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P82_tags_165, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P82_tags_165) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P82_tags_165[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P82_tags_165, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P82_tags_165) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P82_tags_165[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P82_constr_165, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P82_constr_165, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P82_165, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P82_165, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P82_specs_165 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P82_specs_165 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P83_167[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P83_167[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5394,39 +5394,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P83_167[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P83_tags_167[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P83_tags_167[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P83_specs_167 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P83), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P83, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P83_specs_167 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P83), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P83, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P83 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P83 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P83_tags_167, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P83_tags_167) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P83_tags_167[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P83_tags_167, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P83_tags_167) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P83_tags_167[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P83_tags_167, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P83_tags_167) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P83_tags_167[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P83_tags_167, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P83_tags_167) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P83_tags_167[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P83_constr_167, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P83_constr_167, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P83_167, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P83_167, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P83_specs_167 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P83_specs_167 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P84_169[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P84_169[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5445,39 +5445,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P84_169[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P84_tags_169[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P84_tags_169[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P84_specs_169 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P84), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P84, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P84_specs_169 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P84), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P84, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P84 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P84 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P84_tags_169, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P84_tags_169) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P84_tags_169[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P84_tags_169, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P84_tags_169) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P84_tags_169[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P84_tags_169, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P84_tags_169) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P84_tags_169[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P84_tags_169, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P84_tags_169) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P84_tags_169[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P84_constr_169, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P84_constr_169, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P84_169, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P84_169, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P84_specs_169 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P84_specs_169 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P85_171[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P85_171[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5496,39 +5496,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P85_171[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P85_tags_171[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P85_tags_171[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P85_specs_171 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P85), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P85, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P85_specs_171 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P85), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P85, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P85 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P85 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P85_tags_171, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P85_tags_171) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P85_tags_171[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P85_tags_171, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P85_tags_171) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P85_tags_171[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P85_tags_171, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P85_tags_171) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P85_tags_171[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P85_tags_171, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P85_tags_171) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P85_tags_171[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P85_constr_171, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P85_constr_171, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P85_171, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P85_171, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P85_specs_171 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P85_specs_171 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P86_173[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P86_173[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5547,39 +5547,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P86_173[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P86_tags_173[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P86_tags_173[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P86_specs_173 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P86), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P86, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P86_specs_173 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P86), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P86, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P86 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P86 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P86_tags_173, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P86_tags_173) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P86_tags_173[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P86_tags_173, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P86_tags_173) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P86_tags_173[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P86_tags_173, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P86_tags_173) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P86_tags_173[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P86_tags_173, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P86_tags_173) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P86_tags_173[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P86_constr_173, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P86_constr_173, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P86_173, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P86_173, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P86_specs_173 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P86_specs_173 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P87_175[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P87_175[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5598,39 +5598,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P87_175[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P87_tags_175[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P87_tags_175[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P87_specs_175 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P87), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P87, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P87_specs_175 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P87), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P87, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P87 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P87 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P87_tags_175, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P87_tags_175) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P87_tags_175[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P87_tags_175, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P87_tags_175) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P87_tags_175[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P87_tags_175, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P87_tags_175) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P87_tags_175[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P87_tags_175, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P87_tags_175) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P87_tags_175[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P87_constr_175, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P87_constr_175, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P87_175, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P87_175, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P87_specs_175 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P87_specs_175 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P88_177[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P88_177[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5649,39 +5649,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P88_177[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P88_tags_177[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P88_tags_177[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P88_specs_177 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P88), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P88, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P88_specs_177 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P88), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P88, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P88 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P88 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P88_tags_177, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P88_tags_177) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P88_tags_177[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P88_tags_177, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P88_tags_177) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P88_tags_177[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P88_tags_177, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P88_tags_177) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P88_tags_177[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P88_tags_177, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P88_tags_177) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P88_tags_177[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P88_constr_177, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P88_constr_177, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P88_177, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P88_177, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P88_specs_177 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P88_specs_177 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P89_179[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P89_179[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5700,39 +5700,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P89_179[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P89_tags_179[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P89_tags_179[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P89_specs_179 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P89), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P89, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P89_specs_179 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P89), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P89, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P89 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P89 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P89_tags_179, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P89_tags_179) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P89_tags_179[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P89_tags_179, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P89_tags_179) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P89_tags_179[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P89_tags_179, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P89_tags_179) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P89_tags_179[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P89_tags_179, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P89_tags_179) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P89_tags_179[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P89_constr_179, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P89_constr_179, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P89_179, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P89_179, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P89_specs_179 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P89_specs_179 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P90_181[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P90_181[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5751,39 +5751,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P90_181[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P90_tags_181[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P90_tags_181[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P90_specs_181 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P90), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P90, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P90_specs_181 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P90), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P90, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P90 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P90 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P90_tags_181, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P90_tags_181) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P90_tags_181[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P90_tags_181, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P90_tags_181) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P90_tags_181[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P90_tags_181, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P90_tags_181) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P90_tags_181[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P90_tags_181, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P90_tags_181) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P90_tags_181[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P90_constr_181, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P90_constr_181, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P90_181, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P90_181, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P90_specs_181 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P90_specs_181 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P91_183[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P91_183[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5802,39 +5802,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P91_183[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P91_tags_183[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P91_tags_183[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P91_specs_183 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P91), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P91, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P91_specs_183 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P91), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P91, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P91 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P91 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P91_tags_183, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P91_tags_183) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P91_tags_183[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P91_tags_183, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P91_tags_183) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P91_tags_183[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P91_tags_183, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P91_tags_183) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P91_tags_183[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P91_tags_183, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P91_tags_183) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P91_tags_183[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P91_constr_183, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P91_constr_183, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P91_183, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P91_183, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P91_specs_183 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P91_specs_183 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P92_185[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P92_185[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5853,39 +5853,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P92_185[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P92_tags_185[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P92_tags_185[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P92_specs_185 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P92), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P92, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P92_specs_185 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P92), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P92, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P92 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P92 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P92_tags_185, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P92_tags_185) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P92_tags_185[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P92_tags_185, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P92_tags_185) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P92_tags_185[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P92_tags_185, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P92_tags_185) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P92_tags_185[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P92_tags_185, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P92_tags_185) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P92_tags_185[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P92_constr_185, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P92_constr_185, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P92_185, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P92_185, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P92_specs_185 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P92_specs_185 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P93_187[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P93_187[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5904,39 +5904,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P93_187[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P93_tags_187[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P93_tags_187[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P93_specs_187 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P93), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P93, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P93_specs_187 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P93), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P93, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P93 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P93 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P93_tags_187, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P93_tags_187) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P93_tags_187[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P93_tags_187, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P93_tags_187) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P93_tags_187[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P93_tags_187, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P93_tags_187) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P93_tags_187[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P93_tags_187, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P93_tags_187) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P93_tags_187[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P93_constr_187, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P93_constr_187, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P93_187, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P93_187, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P93_specs_187 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P93_specs_187 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P94_189[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P94_189[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5955,39 +5955,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P94_189[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P94_tags_189[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P94_tags_189[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P94_specs_189 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P94), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P94, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P94_specs_189 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P94), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P94, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P94 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P94 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P94_tags_189, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P94_tags_189) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P94_tags_189[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P94_tags_189, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P94_tags_189) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P94_tags_189[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P94_tags_189, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P94_tags_189) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P94_tags_189[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P94_tags_189, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P94_tags_189) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P94_tags_189[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P94_constr_189, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P94_constr_189, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P94_189, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P94_189, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P94_specs_189 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P94_specs_189 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P95_191[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P95_191[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6006,39 +6006,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P95_191[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P95_tags_191[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P95_tags_191[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P95_specs_191 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P95), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P95, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P95_specs_191 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P95), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P95, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P95 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P95 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P95_tags_191, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P95_tags_191) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P95_tags_191[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P95_tags_191, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P95_tags_191) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P95_tags_191[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P95_tags_191, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P95_tags_191) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P95_tags_191[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P95_tags_191, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P95_tags_191) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P95_tags_191[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P95_constr_191, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P95_constr_191, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P95_191, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P95_191, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P95_specs_191 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P95_specs_191 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P96_193[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P96_193[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6057,39 +6057,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P96_193[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P96_tags_193[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P96_tags_193[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P96_specs_193 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P96), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P96, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P96_specs_193 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P96), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P96, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P96 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P96 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P96_tags_193, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P96_tags_193) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P96_tags_193[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P96_tags_193, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P96_tags_193) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P96_tags_193[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P96_tags_193, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P96_tags_193) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P96_tags_193[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P96_tags_193, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P96_tags_193) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P96_tags_193[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P96_constr_193, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P96_constr_193, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P96_193, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P96_193, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P96_specs_193 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P96_specs_193 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P97_195[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P97_195[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6108,39 +6108,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P97_195[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P97_tags_195[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P97_tags_195[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P97_specs_195 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P97), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P97, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P97_specs_195 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P97), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P97, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P97 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P97 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P97_tags_195, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P97_tags_195) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P97_tags_195[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P97_tags_195, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P97_tags_195) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P97_tags_195[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P97_tags_195, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P97_tags_195) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P97_tags_195[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P97_tags_195, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P97_tags_195) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P97_tags_195[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P97_constr_195, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P97_constr_195, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P97_195, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P97_195, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P97_specs_195 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P97_specs_195 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P98_197[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P98_197[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6159,39 +6159,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P98_197[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P98_tags_197[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P98_tags_197[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P98_specs_197 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P98), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P98, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P98_specs_197 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P98), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P98, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P98 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P98 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P98_tags_197, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P98_tags_197) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P98_tags_197[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P98_tags_197, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P98_tags_197) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P98_tags_197[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P98_tags_197, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P98_tags_197) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P98_tags_197[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P98_tags_197, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P98_tags_197) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P98_tags_197[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P98_constr_197, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P98_constr_197, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P98_197, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P98_197, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P98_specs_197 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P98_specs_197 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P99_199[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P99_199[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6210,39 +6210,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P99_199[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P99_tags_199[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P99_tags_199[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P99_specs_199 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P99), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P99, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P99_specs_199 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P99), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P99, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P99 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P99 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P99_tags_199, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P99_tags_199) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P99_tags_199[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P99_tags_199, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P99_tags_199) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P99_tags_199[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P99_tags_199, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P99_tags_199) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P99_tags_199[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P99_tags_199, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P99_tags_199) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P99_tags_199[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P99_constr_199, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P99_constr_199, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P99_199, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P99_199, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P99_specs_199 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P99_specs_199 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P100_201[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P100_201[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6261,39 +6261,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P100_201[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P100_tags_201[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P100_tags_201[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P100_specs_201 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P100), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P100, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P100_specs_201 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P100), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P100, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P100 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P100 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P100_tags_201, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P100_tags_201) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P100_tags_201[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P100_tags_201, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P100_tags_201) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P100_tags_201[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P100_tags_201, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P100_tags_201) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P100_tags_201[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P100_tags_201, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P100_tags_201) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P100_tags_201[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P100_constr_201, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P100_constr_201, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P100_201, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P100_201, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P100_specs_201 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P100_specs_201 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P101_203[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P101_203[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6312,39 +6312,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P101_203[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P101_tags_203[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P101_tags_203[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P101_specs_203 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P101), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P101, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P101_specs_203 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P101), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P101, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P101 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P101 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P101_tags_203, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P101_tags_203) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P101_tags_203[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P101_tags_203, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P101_tags_203) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P101_tags_203[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P101_tags_203, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P101_tags_203) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P101_tags_203[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P101_tags_203, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P101_tags_203) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P101_tags_203[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P101_constr_203, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P101_constr_203, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P101_203, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P101_203, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P101_specs_203 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P101_specs_203 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P102_205[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P102_205[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6363,39 +6363,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P102_205[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P102_tags_205[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P102_tags_205[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P102_specs_205 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P102), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P102, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P102_specs_205 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P102), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P102, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P102 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P102 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P102_tags_205, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P102_tags_205) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P102_tags_205[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P102_tags_205, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P102_tags_205) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P102_tags_205[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P102_tags_205, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P102_tags_205) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P102_tags_205[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P102_tags_205, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P102_tags_205) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P102_tags_205[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P102_constr_205, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P102_constr_205, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P102_205, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P102_205, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P102_specs_205 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P102_specs_205 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P103_207[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P103_207[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6414,39 +6414,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P103_207[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P103_tags_207[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P103_tags_207[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P103_specs_207 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P103), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P103, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P103_specs_207 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P103), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P103, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P103 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P103 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P103_tags_207, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P103_tags_207) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P103_tags_207[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P103_tags_207, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P103_tags_207) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P103_tags_207[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P103_tags_207, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P103_tags_207) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P103_tags_207[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P103_tags_207, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P103_tags_207) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P103_tags_207[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P103_constr_207, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P103_constr_207, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P103_207, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P103_207, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P103_specs_207 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P103_specs_207 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P104_209[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P104_209[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6465,39 +6465,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P104_209[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P104_tags_209[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P104_tags_209[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P104_specs_209 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P104), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P104, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P104_specs_209 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P104), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P104, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P104 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P104 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P104_tags_209, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P104_tags_209) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P104_tags_209[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P104_tags_209, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P104_tags_209) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P104_tags_209[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P104_tags_209, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P104_tags_209) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P104_tags_209[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P104_tags_209, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P104_tags_209) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P104_tags_209[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P104_constr_209, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P104_constr_209, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P104_209, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P104_209, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P104_specs_209 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P104_specs_209 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P105_211[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P105_211[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6516,39 +6516,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P105_211[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P105_tags_211[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P105_tags_211[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P105_specs_211 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P105), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P105, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P105_specs_211 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P105), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P105, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P105 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P105 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P105_tags_211, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P105_tags_211) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P105_tags_211[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P105_tags_211, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P105_tags_211) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P105_tags_211[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P105_tags_211, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P105_tags_211) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P105_tags_211[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P105_tags_211, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P105_tags_211) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P105_tags_211[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P105_constr_211, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P105_constr_211, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P105_211, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P105_211, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P105_specs_211 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P105_specs_211 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P106_213[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P106_213[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6567,39 +6567,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P106_213[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P106_tags_213[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P106_tags_213[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P106_specs_213 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P106), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P106, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P106_specs_213 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P106), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P106, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P106 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P106 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P106_tags_213, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P106_tags_213) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P106_tags_213[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P106_tags_213, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P106_tags_213) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P106_tags_213[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P106_tags_213, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P106_tags_213) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P106_tags_213[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P106_tags_213, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P106_tags_213) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P106_tags_213[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P106_constr_213, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P106_constr_213, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P106_213, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P106_213, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P106_specs_213 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P106_specs_213 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P107_215[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P107_215[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6618,39 +6618,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P107_215[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P107_tags_215[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P107_tags_215[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P107_specs_215 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P107), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P107, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P107_specs_215 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P107), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P107, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P107 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P107 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P107_tags_215, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P107_tags_215) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P107_tags_215[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P107_tags_215, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P107_tags_215) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P107_tags_215[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P107_tags_215, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P107_tags_215) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P107_tags_215[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P107_tags_215, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P107_tags_215) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P107_tags_215[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P107_constr_215, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P107_constr_215, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P107_215, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P107_215, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P107_specs_215 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P107_specs_215 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P108_217[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P108_217[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6669,39 +6669,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P108_217[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P108_tags_217[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P108_tags_217[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P108_specs_217 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P108), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P108, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P108_specs_217 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P108), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P108, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P108 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P108 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P108_tags_217, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P108_tags_217) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P108_tags_217[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P108_tags_217, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P108_tags_217) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P108_tags_217[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P108_tags_217, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P108_tags_217) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P108_tags_217[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P108_tags_217, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P108_tags_217) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P108_tags_217[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P108_constr_217, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P108_constr_217, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P108_217, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P108_217, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P108_specs_217 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P108_specs_217 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P109_219[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P109_219[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6720,39 +6720,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P109_219[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P109_tags_219[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P109_tags_219[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P109_specs_219 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P109), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P109, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P109_specs_219 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P109), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P109, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P109 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P109 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P109_tags_219, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P109_tags_219) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P109_tags_219[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P109_tags_219, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P109_tags_219) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P109_tags_219[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P109_tags_219, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P109_tags_219) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P109_tags_219[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P109_tags_219, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P109_tags_219) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P109_tags_219[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P109_constr_219, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P109_constr_219, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P109_219, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P109_219, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P109_specs_219 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P109_specs_219 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P110_221[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P110_221[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6771,39 +6771,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P110_221[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P110_tags_221[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P110_tags_221[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P110_specs_221 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P110), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P110, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P110_specs_221 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P110), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P110, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P110 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P110 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P110_tags_221, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P110_tags_221) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P110_tags_221[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P110_tags_221, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P110_tags_221) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P110_tags_221[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P110_tags_221, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P110_tags_221) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P110_tags_221[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P110_tags_221, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P110_tags_221) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P110_tags_221[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P110_constr_221, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P110_constr_221, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P110_221, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P110_221, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P110_specs_221 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P110_specs_221 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P111_223[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P111_223[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6822,39 +6822,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P111_223[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P111_tags_223[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P111_tags_223[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P111_specs_223 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P111), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P111, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P111_specs_223 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P111), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P111, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P111 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P111 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P111_tags_223, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P111_tags_223) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P111_tags_223[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P111_tags_223, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P111_tags_223) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P111_tags_223[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P111_tags_223, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P111_tags_223) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P111_tags_223[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P111_tags_223, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P111_tags_223) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P111_tags_223[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P111_constr_223, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P111_constr_223, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P111_223, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P111_223, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P111_specs_223 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P111_specs_223 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P112_225[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P112_225[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6873,39 +6873,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P112_225[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P112_tags_225[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P112_tags_225[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P112_specs_225 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P112), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P112, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P112_specs_225 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P112), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P112, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P112 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P112 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P112_tags_225, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P112_tags_225) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P112_tags_225[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P112_tags_225, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P112_tags_225) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P112_tags_225[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P112_tags_225, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P112_tags_225) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P112_tags_225[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P112_tags_225, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P112_tags_225) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P112_tags_225[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P112_constr_225, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P112_constr_225, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P112_225, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P112_225, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P112_specs_225 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P112_specs_225 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P113_227[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P113_227[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6924,39 +6924,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P113_227[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P113_tags_227[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P113_tags_227[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P113_specs_227 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P113), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P113, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P113_specs_227 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P113), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P113, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P113 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P113 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P113_tags_227, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P113_tags_227) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P113_tags_227[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P113_tags_227, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P113_tags_227) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P113_tags_227[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P113_tags_227, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P113_tags_227) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P113_tags_227[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P113_tags_227, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P113_tags_227) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P113_tags_227[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P113_constr_227, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P113_constr_227, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P113_227, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P113_227, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P113_specs_227 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P113_specs_227 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P114_229[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P114_229[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -6975,39 +6975,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P114_229[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P114_tags_229[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P114_tags_229[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P114_specs_229 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P114), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P114, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P114_specs_229 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P114), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P114, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P114 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P114 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P114_tags_229, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P114_tags_229) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P114_tags_229[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P114_tags_229, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P114_tags_229) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P114_tags_229[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P114_tags_229, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P114_tags_229) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P114_tags_229[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P114_tags_229, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P114_tags_229) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P114_tags_229[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P114_constr_229, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P114_constr_229, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P114_229, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P114_229, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P114_specs_229 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P114_specs_229 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P115_231[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P115_231[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7026,39 +7026,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P115_231[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P115_tags_231[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P115_tags_231[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P115_specs_231 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P115), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P115, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P115_specs_231 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P115), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P115, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P115 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P115 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P115_tags_231, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P115_tags_231) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P115_tags_231[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P115_tags_231, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P115_tags_231) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P115_tags_231[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P115_tags_231, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P115_tags_231) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P115_tags_231[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P115_tags_231, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P115_tags_231) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P115_tags_231[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P115_constr_231, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P115_constr_231, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P115_231, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P115_231, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P115_specs_231 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P115_specs_231 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P116_233[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P116_233[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7077,39 +7077,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P116_233[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P116_tags_233[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P116_tags_233[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P116_specs_233 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P116), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P116, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P116_specs_233 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P116), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P116, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P116 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P116 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P116_tags_233, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P116_tags_233) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P116_tags_233[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P116_tags_233, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P116_tags_233) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P116_tags_233[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P116_tags_233, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P116_tags_233) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P116_tags_233[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P116_tags_233, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P116_tags_233) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P116_tags_233[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P116_constr_233, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P116_constr_233, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P116_233, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P116_233, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P116_specs_233 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P116_specs_233 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P117_235[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P117_235[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7128,39 +7128,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P117_235[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P117_tags_235[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P117_tags_235[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P117_specs_235 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P117), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P117, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P117_specs_235 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P117), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P117, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P117 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P117 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P117_tags_235, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P117_tags_235) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P117_tags_235[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P117_tags_235, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P117_tags_235) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P117_tags_235[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P117_tags_235, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P117_tags_235) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P117_tags_235[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P117_tags_235, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P117_tags_235) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P117_tags_235[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P117_constr_235, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P117_constr_235, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P117_235, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P117_235, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P117_specs_235 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P117_specs_235 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P118_237[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P118_237[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7179,39 +7179,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P118_237[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P118_tags_237[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P118_tags_237[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P118_specs_237 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P118), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P118, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P118_specs_237 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P118), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P118, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P118 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P118 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P118_tags_237, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P118_tags_237) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P118_tags_237[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P118_tags_237, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P118_tags_237) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P118_tags_237[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P118_tags_237, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P118_tags_237) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P118_tags_237[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P118_tags_237, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P118_tags_237) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P118_tags_237[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P118_constr_237, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P118_constr_237, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P118_237, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P118_237, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P118_specs_237 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P118_specs_237 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P119_239[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P119_239[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7230,39 +7230,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P119_239[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P119_tags_239[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P119_tags_239[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P119_specs_239 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P119), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P119, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P119_specs_239 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P119), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P119, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P119 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P119 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P119_tags_239, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P119_tags_239) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P119_tags_239[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P119_tags_239, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P119_tags_239) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P119_tags_239[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P119_tags_239, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P119_tags_239) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P119_tags_239[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P119_tags_239, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P119_tags_239) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P119_tags_239[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P119_constr_239, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P119_constr_239, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P119_239, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P119_239, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P119_specs_239 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P119_specs_239 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P120_241[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P120_241[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7281,39 +7281,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P120_241[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P120_tags_241[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P120_tags_241[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P120_specs_241 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P120), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P120, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P120_specs_241 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P120), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P120, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P120 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P120 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P120_tags_241, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P120_tags_241) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P120_tags_241[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P120_tags_241, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P120_tags_241) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P120_tags_241[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P120_tags_241, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P120_tags_241) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P120_tags_241[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P120_tags_241, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P120_tags_241) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P120_tags_241[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P120_constr_241, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P120_constr_241, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P120_241, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P120_241, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P120_specs_241 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P120_specs_241 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P121_243[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P121_243[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7332,39 +7332,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P121_243[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P121_tags_243[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P121_tags_243[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P121_specs_243 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P121), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P121, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P121_specs_243 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P121), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P121, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P121 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P121 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P121_tags_243, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P121_tags_243) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P121_tags_243[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P121_tags_243, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P121_tags_243) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P121_tags_243[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P121_tags_243, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P121_tags_243) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P121_tags_243[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P121_tags_243, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P121_tags_243) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P121_tags_243[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P121_constr_243, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P121_constr_243, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P121_243, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P121_243, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P121_specs_243 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P121_specs_243 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P122_245[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P122_245[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7383,39 +7383,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P122_245[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P122_tags_245[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P122_tags_245[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P122_specs_245 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P122), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P122, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P122_specs_245 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P122), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P122, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P122 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P122 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P122_tags_245, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P122_tags_245) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P122_tags_245[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P122_tags_245, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P122_tags_245) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P122_tags_245[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P122_tags_245, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P122_tags_245) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P122_tags_245[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P122_tags_245, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P122_tags_245) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P122_tags_245[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P122_constr_245, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P122_constr_245, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P122_245, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P122_245, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P122_specs_245 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P122_specs_245 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P123_247[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P123_247[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7434,39 +7434,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P123_247[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P123_tags_247[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P123_tags_247[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P123_specs_247 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P123), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P123, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P123_specs_247 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P123), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P123, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P123 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P123 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P123_tags_247, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P123_tags_247) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P123_tags_247[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P123_tags_247, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P123_tags_247) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P123_tags_247[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P123_tags_247, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P123_tags_247) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P123_tags_247[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P123_tags_247, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P123_tags_247) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P123_tags_247[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P123_constr_247, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P123_constr_247, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P123_247, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P123_247, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P123_specs_247 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P123_specs_247 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P124_249[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P124_249[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7485,39 +7485,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P124_249[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P124_tags_249[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P124_tags_249[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P124_specs_249 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P124), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P124, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P124_specs_249 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P124), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P124, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P124 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P124 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P124_tags_249, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P124_tags_249) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P124_tags_249[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P124_tags_249, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P124_tags_249) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P124_tags_249[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P124_tags_249, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P124_tags_249) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P124_tags_249[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P124_tags_249, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P124_tags_249) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P124_tags_249[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P124_constr_249, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P124_constr_249, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P124_249, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P124_249, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P124_specs_249 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P124_specs_249 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P125_251[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P125_251[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7536,39 +7536,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P125_251[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P125_tags_251[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P125_tags_251[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P125_specs_251 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P125), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P125, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P125_specs_251 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P125), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P125, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P125 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P125 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P125_tags_251, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P125_tags_251) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P125_tags_251[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P125_tags_251, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P125_tags_251) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P125_tags_251[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P125_tags_251, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P125_tags_251) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P125_tags_251[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P125_tags_251, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P125_tags_251) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P125_tags_251[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P125_constr_251, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P125_constr_251, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P125_251, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P125_251, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P125_specs_251 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P125_specs_251 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P126_253[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P126_253[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7587,39 +7587,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P126_253[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P126_tags_253[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P126_tags_253[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P126_specs_253 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P126), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P126, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P126_specs_253 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P126), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P126, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P126 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P126 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P126_tags_253, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P126_tags_253) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P126_tags_253[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P126_tags_253, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P126_tags_253) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P126_tags_253[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P126_tags_253, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P126_tags_253) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P126_tags_253[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P126_tags_253, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P126_tags_253) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P126_tags_253[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P126_constr_253, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P126_constr_253, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P126_253, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P126_253, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P126_specs_253 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P126_specs_253 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P127_255[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P127_255[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7638,39 +7638,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P127_255[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P127_tags_255[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P127_tags_255[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P127_specs_255 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P127), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P127, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P127_specs_255 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P127), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P127, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P127 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P127 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P127_tags_255, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P127_tags_255) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P127_tags_255[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P127_tags_255, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P127_tags_255) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P127_tags_255[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P127_tags_255, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P127_tags_255) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P127_tags_255[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P127_tags_255, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P127_tags_255) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P127_tags_255[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P127_constr_255, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P127_constr_255, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P127_255, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P127_255, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P127_specs_255 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P127_specs_255 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P128_257[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P128_257[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7689,39 +7689,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P128_257[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P128_tags_257[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P128_tags_257[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P128_specs_257 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P128), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P128, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P128_specs_257 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P128), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P128, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P128 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P128 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P128_tags_257, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P128_tags_257) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P128_tags_257[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P128_tags_257, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P128_tags_257) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P128_tags_257[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P128_tags_257, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P128_tags_257) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P128_tags_257[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P128_tags_257, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P128_tags_257) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P128_tags_257[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P128_constr_257, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P128_constr_257, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P128_257, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P128_257, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P128_specs_257 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P128_specs_257 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P129_259[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P129_259[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7740,39 +7740,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P129_259[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P129_tags_259[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P129_tags_259[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P129_specs_259 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P129), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P129, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P129_specs_259 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P129), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P129, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P129 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P129 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P129_tags_259, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P129_tags_259) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P129_tags_259[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P129_tags_259, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P129_tags_259) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P129_tags_259[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P129_tags_259, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P129_tags_259) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P129_tags_259[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P129_tags_259, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P129_tags_259) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P129_tags_259[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P129_constr_259, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P129_constr_259, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P129_259, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P129_259, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P129_specs_259 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P129_specs_259 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P130_261[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P130_261[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7791,39 +7791,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P130_261[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P130_tags_261[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P130_tags_261[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P130_specs_261 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P130), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P130, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P130_specs_261 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P130), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P130, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P130 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P130 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P130_tags_261, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P130_tags_261) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P130_tags_261[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P130_tags_261, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P130_tags_261) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P130_tags_261[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P130_tags_261, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P130_tags_261) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P130_tags_261[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P130_tags_261, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P130_tags_261) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P130_tags_261[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P130_constr_261, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P130_constr_261, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P130_261, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P130_261, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P130_specs_261 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P130_specs_261 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P131_263[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P131_263[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7842,39 +7842,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P131_263[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P131_tags_263[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P131_tags_263[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P131_specs_263 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P131), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P131, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P131_specs_263 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P131), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P131, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P131 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P131 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P131_tags_263, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P131_tags_263) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P131_tags_263[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P131_tags_263, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P131_tags_263) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P131_tags_263[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P131_tags_263, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P131_tags_263) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P131_tags_263[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P131_tags_263, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P131_tags_263) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P131_tags_263[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P131_constr_263, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P131_constr_263, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P131_263, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P131_263, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P131_specs_263 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P131_specs_263 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P132_265[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P132_265[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7893,39 +7893,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P132_265[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P132_tags_265[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P132_tags_265[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P132_specs_265 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P132), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P132, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P132_specs_265 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P132), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P132, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P132 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P132 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P132_tags_265, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P132_tags_265) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P132_tags_265[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P132_tags_265, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P132_tags_265) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P132_tags_265[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P132_tags_265, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P132_tags_265) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P132_tags_265[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P132_tags_265, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P132_tags_265) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P132_tags_265[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P132_constr_265, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P132_constr_265, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P132_265, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P132_265, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P132_specs_265 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P132_specs_265 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P133_267[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P133_267[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7944,39 +7944,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P133_267[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P133_tags_267[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P133_tags_267[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P133_specs_267 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P133), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P133, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P133_specs_267 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P133), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P133, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P133 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P133 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P133_tags_267, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P133_tags_267) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P133_tags_267[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P133_tags_267, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P133_tags_267) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P133_tags_267[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P133_tags_267, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P133_tags_267) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P133_tags_267[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P133_tags_267, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P133_tags_267) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P133_tags_267[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P133_constr_267, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P133_constr_267, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P133_267, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P133_267, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P133_specs_267 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P133_specs_267 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P134_269[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P134_269[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -7995,39 +7995,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P134_269[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P134_tags_269[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P134_tags_269[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P134_specs_269 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P134), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P134, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P134_specs_269 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P134), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P134, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P134 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P134 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P134_tags_269, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P134_tags_269) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P134_tags_269[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P134_tags_269, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P134_tags_269) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P134_tags_269[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P134_tags_269, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P134_tags_269) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P134_tags_269[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P134_tags_269, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P134_tags_269) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P134_tags_269[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P134_constr_269, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P134_constr_269, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P134_269, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P134_269, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P134_specs_269 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P134_specs_269 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P135_271[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P135_271[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8046,39 +8046,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P135_271[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P135_tags_271[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P135_tags_271[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P135_specs_271 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P135), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P135, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P135_specs_271 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P135), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P135, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P135 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P135 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P135_tags_271, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P135_tags_271) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P135_tags_271[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P135_tags_271, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P135_tags_271) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P135_tags_271[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P135_tags_271, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P135_tags_271) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P135_tags_271[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P135_tags_271, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P135_tags_271) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P135_tags_271[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P135_constr_271, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P135_constr_271, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P135_271, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P135_271, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P135_specs_271 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P135_specs_271 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P136_273[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P136_273[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8097,39 +8097,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P136_273[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P136_tags_273[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P136_tags_273[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P136_specs_273 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P136), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P136, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P136_specs_273 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P136), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P136, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P136 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P136 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P136_tags_273, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P136_tags_273) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P136_tags_273[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P136_tags_273, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P136_tags_273) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P136_tags_273[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P136_tags_273, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P136_tags_273) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P136_tags_273[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P136_tags_273, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P136_tags_273) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P136_tags_273[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P136_constr_273, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P136_constr_273, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P136_273, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P136_273, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P136_specs_273 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P136_specs_273 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P137_275[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P137_275[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8148,39 +8148,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P137_275[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P137_tags_275[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P137_tags_275[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P137_specs_275 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P137), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P137, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P137_specs_275 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P137), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P137, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P137 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P137 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P137_tags_275, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P137_tags_275) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P137_tags_275[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P137_tags_275, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P137_tags_275) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P137_tags_275[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P137_tags_275, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P137_tags_275) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P137_tags_275[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P137_tags_275, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P137_tags_275) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P137_tags_275[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P137_constr_275, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P137_constr_275, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P137_275, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P137_275, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P137_specs_275 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P137_specs_275 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P138_277[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P138_277[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8199,39 +8199,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P138_277[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P138_tags_277[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P138_tags_277[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P138_specs_277 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P138), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P138, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P138_specs_277 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P138), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P138, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P138 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P138 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P138_tags_277, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P138_tags_277) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P138_tags_277[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P138_tags_277, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P138_tags_277) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P138_tags_277[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P138_tags_277, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P138_tags_277) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P138_tags_277[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P138_tags_277, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P138_tags_277) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P138_tags_277[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P138_constr_277, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P138_constr_277, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P138_277, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P138_277, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P138_specs_277 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P138_specs_277 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P139_279[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P139_279[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8250,39 +8250,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P139_279[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P139_tags_279[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P139_tags_279[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P139_specs_279 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P139), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P139, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P139_specs_279 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P139), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P139, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P139 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P139 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P139_tags_279, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P139_tags_279) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P139_tags_279[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P139_tags_279, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P139_tags_279) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P139_tags_279[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P139_tags_279, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P139_tags_279) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P139_tags_279[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P139_tags_279, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P139_tags_279) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P139_tags_279[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P139_constr_279, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P139_constr_279, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P139_279, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P139_279, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P139_specs_279 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P139_specs_279 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P140_281[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P140_281[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8301,39 +8301,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P140_281[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P140_tags_281[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P140_tags_281[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P140_specs_281 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P140), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P140, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P140_specs_281 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P140), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P140, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P140 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P140 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P140_tags_281, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P140_tags_281) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P140_tags_281[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P140_tags_281, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P140_tags_281) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P140_tags_281[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P140_tags_281, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P140_tags_281) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P140_tags_281[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P140_tags_281, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P140_tags_281) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P140_tags_281[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P140_constr_281, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P140_constr_281, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P140_281, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P140_281, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P140_specs_281 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P140_specs_281 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P141_283[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P141_283[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8352,39 +8352,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P141_283[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P141_tags_283[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P141_tags_283[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P141_specs_283 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P141), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P141, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P141_specs_283 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P141), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P141, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P141 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P141 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P141_tags_283, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P141_tags_283) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P141_tags_283[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P141_tags_283, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P141_tags_283) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P141_tags_283[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P141_tags_283, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P141_tags_283) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P141_tags_283[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P141_tags_283, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P141_tags_283) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P141_tags_283[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P141_constr_283, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P141_constr_283, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P141_283, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P141_283, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P141_specs_283 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P141_specs_283 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P142_285[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P142_285[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8403,39 +8403,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P142_285[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P142_tags_285[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P142_tags_285[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P142_specs_285 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P142), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P142, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P142_specs_285 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P142), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P142, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P142 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P142 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P142_tags_285, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P142_tags_285) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P142_tags_285[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P142_tags_285, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P142_tags_285) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P142_tags_285[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P142_tags_285, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P142_tags_285) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P142_tags_285[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P142_tags_285, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P142_tags_285) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P142_tags_285[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P142_constr_285, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P142_constr_285, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P142_285, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P142_285, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P142_specs_285 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P142_specs_285 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P143_287[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P143_287[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8454,39 +8454,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P143_287[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P143_tags_287[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P143_tags_287[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P143_specs_287 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P143), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P143, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P143_specs_287 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P143), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P143, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P143 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P143 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P143_tags_287, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P143_tags_287) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P143_tags_287[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P143_tags_287, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P143_tags_287) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P143_tags_287[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P143_tags_287, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P143_tags_287) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P143_tags_287[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P143_tags_287, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P143_tags_287) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P143_tags_287[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P143_constr_287, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P143_constr_287, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P143_287, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P143_287, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P143_specs_287 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P143_specs_287 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P144_289[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P144_289[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8505,39 +8505,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P144_289[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P144_tags_289[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P144_tags_289[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P144_specs_289 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P144), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P144, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P144_specs_289 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P144), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P144, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P144 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P144 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P144_tags_289, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P144_tags_289) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P144_tags_289[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P144_tags_289, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P144_tags_289) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P144_tags_289[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P144_tags_289, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P144_tags_289) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P144_tags_289[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P144_tags_289, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P144_tags_289) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P144_tags_289[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P144_constr_289, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P144_constr_289, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P144_289, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P144_289, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P144_specs_289 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P144_specs_289 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P145_291[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P145_291[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8556,39 +8556,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P145_291[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P145_tags_291[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P145_tags_291[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P145_specs_291 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P145), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P145, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P145_specs_291 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P145), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P145, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P145 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P145 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P145_tags_291, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P145_tags_291) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P145_tags_291[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P145_tags_291, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P145_tags_291) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P145_tags_291[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P145_tags_291, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P145_tags_291) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P145_tags_291[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P145_tags_291, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P145_tags_291) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P145_tags_291[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P145_constr_291, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P145_constr_291, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P145_291, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P145_291, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P145_specs_291 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P145_specs_291 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P146_293[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P146_293[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8607,39 +8607,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P146_293[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P146_tags_293[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P146_tags_293[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P146_specs_293 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P146), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P146, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P146_specs_293 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P146), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P146, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P146 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P146 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P146_tags_293, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P146_tags_293) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P146_tags_293[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P146_tags_293, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P146_tags_293) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P146_tags_293[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P146_tags_293, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P146_tags_293) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P146_tags_293[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P146_tags_293, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P146_tags_293) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P146_tags_293[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P146_constr_293, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P146_constr_293, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P146_293, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P146_293, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P146_specs_293 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P146_specs_293 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P147_295[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P147_295[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8658,39 +8658,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P147_295[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P147_tags_295[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P147_tags_295[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P147_specs_295 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P147), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P147, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P147_specs_295 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P147), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P147, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P147 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P147 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P147_tags_295, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P147_tags_295) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P147_tags_295[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P147_tags_295, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P147_tags_295) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P147_tags_295[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P147_tags_295, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P147_tags_295) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P147_tags_295[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P147_tags_295, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P147_tags_295) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P147_tags_295[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P147_constr_295, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P147_constr_295, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P147_295, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P147_295, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P147_specs_295 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P147_specs_295 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P148_297[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P148_297[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8709,39 +8709,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P148_297[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P148_tags_297[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P148_tags_297[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P148_specs_297 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P148), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P148, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P148_specs_297 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P148), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P148, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P148 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P148 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P148_tags_297, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P148_tags_297) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P148_tags_297[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P148_tags_297, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P148_tags_297) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P148_tags_297[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P148_tags_297, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P148_tags_297) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P148_tags_297[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P148_tags_297, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P148_tags_297) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P148_tags_297[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P148_constr_297, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P148_constr_297, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P148_297, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P148_297, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P148_specs_297 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P148_specs_297 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P149_299[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P149_299[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8760,39 +8760,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P149_299[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P149_tags_299[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P149_tags_299[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P149_specs_299 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P149), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P149, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P149_specs_299 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P149), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P149, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P149 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P149 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P149_tags_299, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P149_tags_299) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P149_tags_299[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P149_tags_299, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P149_tags_299) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P149_tags_299[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P149_tags_299, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P149_tags_299) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P149_tags_299[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P149_tags_299, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P149_tags_299) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P149_tags_299[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P149_constr_299, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P149_constr_299, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P149_299, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P149_299, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P149_specs_299 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P149_specs_299 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P150_301[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P150_301[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8811,39 +8811,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P150_301[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P150_tags_301[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P150_tags_301[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P150_specs_301 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P150), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P150, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P150_specs_301 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P150), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P150, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P150 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P150 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P150_tags_301, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P150_tags_301) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P150_tags_301[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P150_tags_301, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P150_tags_301) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P150_tags_301[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P150_tags_301, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P150_tags_301) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P150_tags_301[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P150_tags_301, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P150_tags_301) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P150_tags_301[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P150_constr_301, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P150_constr_301, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P150_301, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P150_301, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P150_specs_301 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P150_specs_301 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P151_303[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P151_303[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8862,39 +8862,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P151_303[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P151_tags_303[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P151_tags_303[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P151_specs_303 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P151), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P151, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P151_specs_303 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P151), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P151, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P151 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P151 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P151_tags_303, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P151_tags_303) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P151_tags_303[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P151_tags_303, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P151_tags_303) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P151_tags_303[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P151_tags_303, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P151_tags_303) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P151_tags_303[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P151_tags_303, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P151_tags_303) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P151_tags_303[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P151_constr_303, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P151_constr_303, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P151_303, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P151_303, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P151_specs_303 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P151_specs_303 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P152_305[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P152_305[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8913,39 +8913,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P152_305[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P152_tags_305[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P152_tags_305[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P152_specs_305 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P152), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P152, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P152_specs_305 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P152), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P152, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P152 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P152 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P152_tags_305, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P152_tags_305) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P152_tags_305[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P152_tags_305, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P152_tags_305) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P152_tags_305[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P152_tags_305, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P152_tags_305) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P152_tags_305[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P152_tags_305, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P152_tags_305) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P152_tags_305[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P152_constr_305, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P152_constr_305, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P152_305, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P152_305, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P152_specs_305 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P152_specs_305 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P153_307[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P153_307[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -8964,39 +8964,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P153_307[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P153_tags_307[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P153_tags_307[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P153_specs_307 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P153), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P153, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P153_specs_307 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P153), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P153, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P153 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P153 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P153_tags_307, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P153_tags_307) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P153_tags_307[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P153_tags_307, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P153_tags_307) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P153_tags_307[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P153_tags_307, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P153_tags_307) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P153_tags_307[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P153_tags_307, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P153_tags_307) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P153_tags_307[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P153_constr_307, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P153_constr_307, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P153_307, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P153_307, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P153_specs_307 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P153_specs_307 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P154_309[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P154_309[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9015,39 +9015,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P154_309[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P154_tags_309[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P154_tags_309[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P154_specs_309 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P154), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P154, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P154_specs_309 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P154), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P154, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P154 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P154 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P154_tags_309, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P154_tags_309) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P154_tags_309[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P154_tags_309, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P154_tags_309) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P154_tags_309[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P154_tags_309, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P154_tags_309) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P154_tags_309[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P154_tags_309, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P154_tags_309) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P154_tags_309[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P154_constr_309, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P154_constr_309, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P154_309, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P154_309, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P154_specs_309 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P154_specs_309 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P155_311[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P155_311[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9066,39 +9066,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P155_311[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P155_tags_311[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P155_tags_311[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P155_specs_311 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P155), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P155, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P155_specs_311 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P155), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P155, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P155 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P155 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P155_tags_311, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P155_tags_311) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P155_tags_311[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P155_tags_311, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P155_tags_311) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P155_tags_311[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P155_tags_311, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P155_tags_311) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P155_tags_311[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P155_tags_311, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P155_tags_311) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P155_tags_311[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P155_constr_311, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P155_constr_311, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P155_311, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P155_311, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P155_specs_311 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P155_specs_311 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P156_313[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P156_313[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9117,39 +9117,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P156_313[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P156_tags_313[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P156_tags_313[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P156_specs_313 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P156), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P156, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P156_specs_313 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P156), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P156, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P156 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P156 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P156_tags_313, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P156_tags_313) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P156_tags_313[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P156_tags_313, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P156_tags_313) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P156_tags_313[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P156_tags_313, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P156_tags_313) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P156_tags_313[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P156_tags_313, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P156_tags_313) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P156_tags_313[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P156_constr_313, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P156_constr_313, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P156_313, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P156_313, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P156_specs_313 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P156_specs_313 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P157_315[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P157_315[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9168,39 +9168,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P157_315[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P157_tags_315[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P157_tags_315[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P157_specs_315 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P157), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P157, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P157_specs_315 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P157), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P157, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P157 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P157 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P157_tags_315, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P157_tags_315) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P157_tags_315[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P157_tags_315, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P157_tags_315) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P157_tags_315[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P157_tags_315, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P157_tags_315) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P157_tags_315[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P157_tags_315, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P157_tags_315) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P157_tags_315[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P157_constr_315, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P157_constr_315, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P157_315, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P157_315, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P157_specs_315 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P157_specs_315 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P158_317[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P158_317[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9219,39 +9219,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P158_317[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P158_tags_317[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P158_tags_317[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P158_specs_317 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P158), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P158, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P158_specs_317 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P158), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P158, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P158 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P158 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P158_tags_317, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P158_tags_317) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P158_tags_317[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P158_tags_317, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P158_tags_317) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P158_tags_317[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P158_tags_317, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P158_tags_317) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P158_tags_317[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P158_tags_317, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P158_tags_317) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P158_tags_317[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P158_constr_317, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P158_constr_317, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P158_317, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P158_317, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P158_specs_317 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P158_specs_317 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P159_319[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P159_319[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9270,39 +9270,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P159_319[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P159_tags_319[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P159_tags_319[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P159_specs_319 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P159), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P159, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P159_specs_319 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P159), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P159, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P159 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P159 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P159_tags_319, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P159_tags_319) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P159_tags_319[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P159_tags_319, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P159_tags_319) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P159_tags_319[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P159_tags_319, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P159_tags_319) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P159_tags_319[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P159_tags_319, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P159_tags_319) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P159_tags_319[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P159_constr_319, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P159_constr_319, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P159_319, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P159_319, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P159_specs_319 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P159_specs_319 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P160_321[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P160_321[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9321,39 +9321,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P160_321[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P160_tags_321[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P160_tags_321[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P160_specs_321 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P160), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P160, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P160_specs_321 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P160), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P160, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P160 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P160 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P160_tags_321, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P160_tags_321) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P160_tags_321[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P160_tags_321, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P160_tags_321) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P160_tags_321[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P160_tags_321, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P160_tags_321) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P160_tags_321[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P160_tags_321, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P160_tags_321) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P160_tags_321[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P160_constr_321, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P160_constr_321, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P160_321, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P160_321, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P160_specs_321 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P160_specs_321 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P161_323[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P161_323[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -9372,35 +9372,35 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P161_323[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P161_tags_323[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P161_tags_323[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P161_specs_323 = { - sizeof(struct S1AP_ProtocolExtensionContainer_7889P161), - offsetof(struct S1AP_ProtocolExtensionContainer_7889P161, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P161_specs_323 = { + sizeof(struct S1AP_ProtocolExtensionContainer_7898P161), + offsetof(struct S1AP_ProtocolExtensionContainer_7898P161, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P161 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P161 = { "ProtocolExtensionContainer", "ProtocolExtensionContainer", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolExtensionContainer_7889P161_tags_323, - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P161_tags_323) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P161_tags_323[0]), /* 1 */ - asn_DEF_S1AP_ProtocolExtensionContainer_7889P161_tags_323, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P161_tags_323) - /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7889P161_tags_323[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P161_tags_323, + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P161_tags_323) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P161_tags_323[0]), /* 1 */ + asn_DEF_S1AP_ProtocolExtensionContainer_7898P161_tags_323, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P161_tags_323) + /sizeof(asn_DEF_S1AP_ProtocolExtensionContainer_7898P161_tags_323[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolExtensionContainer_7889P161_constr_323, + &asn_PER_type_S1AP_ProtocolExtensionContainer_7898P161_constr_323, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolExtensionContainer_7889P161_323, + asn_MBR_S1AP_ProtocolExtensionContainer_7898P161_323, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolExtensionContainer_7889P161_specs_323 /* Additional specs */ + &asn_SPC_S1AP_ProtocolExtensionContainer_7898P161_specs_323 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_ProtocolExtensionContainer.h b/lib/asn1c/s1ap/S1AP_ProtocolExtensionContainer.h index 8b3ab8cf0..e61263f1c 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolExtensionContainer.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolExtensionContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -184,1628 +184,1628 @@ struct S1AP_X2TNLConfigurationInfo_ExtIEs; struct S1AP_ENBX2ExtTLA_ExtIEs; /* S1AP_ProtocolExtensionContainer */ -typedef struct S1AP_ProtocolExtensionContainer_7889P0 { +typedef struct S1AP_ProtocolExtensionContainer_7898P0 { A_SEQUENCE_OF(struct S1AP_E_RABDataForwardingItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P0_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P1 { +} S1AP_ProtocolExtensionContainer_7898P0_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P1 { A_SEQUENCE_OF(struct S1AP_E_RABToBeSetupItemHOReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P1_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P2 { +} S1AP_ProtocolExtensionContainer_7898P1_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P2 { A_SEQUENCE_OF(struct S1AP_E_RABAdmittedItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P2_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P3 { +} S1AP_ProtocolExtensionContainer_7898P2_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P3 { A_SEQUENCE_OF(struct S1AP_E_RABFailedToSetupItemHOReqAckExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P3_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P4 { +} S1AP_ProtocolExtensionContainer_7898P3_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P4 { A_SEQUENCE_OF(struct S1AP_E_RABToBeSwitchedDLItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P4_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P5 { +} S1AP_ProtocolExtensionContainer_7898P4_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P5 { A_SEQUENCE_OF(struct S1AP_E_RABToBeSwitchedULItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P5_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P6 { +} S1AP_ProtocolExtensionContainer_7898P5_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P6 { A_SEQUENCE_OF(struct S1AP_E_RABToBeSetupItemBearerSUReqExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P6_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P7 { +} S1AP_ProtocolExtensionContainer_7898P6_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P7 { A_SEQUENCE_OF(struct S1AP_E_RABSetupItemBearerSUResExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P7_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P8 { +} S1AP_ProtocolExtensionContainer_7898P7_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P8 { A_SEQUENCE_OF(struct S1AP_E_RABToBeModifyItemBearerModReqExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P8_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P9 { +} S1AP_ProtocolExtensionContainer_7898P8_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P9 { A_SEQUENCE_OF(struct S1AP_E_RABModifyItemBearerModResExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P9_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P10 { +} S1AP_ProtocolExtensionContainer_7898P9_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P10 { A_SEQUENCE_OF(struct S1AP_E_RABReleaseItemBearerRelCompExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P10_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P11 { +} S1AP_ProtocolExtensionContainer_7898P10_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P11 { A_SEQUENCE_OF(struct S1AP_E_RABToBeSetupItemCtxtSUReqExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P11_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P12 { +} S1AP_ProtocolExtensionContainer_7898P11_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P12 { A_SEQUENCE_OF(struct S1AP_E_RABSetupItemCtxtSUResExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P12_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P13 { +} S1AP_ProtocolExtensionContainer_7898P12_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P13 { A_SEQUENCE_OF(struct S1AP_TAIItemExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P13_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P14 { +} S1AP_ProtocolExtensionContainer_7898P13_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P14 { A_SEQUENCE_OF(struct S1AP_E_RABToBeModifiedItemBearerModInd_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P14_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P15 { +} S1AP_ProtocolExtensionContainer_7898P14_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P15 { A_SEQUENCE_OF(struct S1AP_E_RABNotToBeModifiedItemBearerModInd_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P15_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P16 { +} S1AP_ProtocolExtensionContainer_7898P15_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P16 { A_SEQUENCE_OF(struct S1AP_CSGMembershipInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P16_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P17 { +} S1AP_ProtocolExtensionContainer_7898P16_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P17 { A_SEQUENCE_OF(struct S1AP_E_RABModifyItemBearerModConfExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P17_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P18 { +} S1AP_ProtocolExtensionContainer_7898P17_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P18 { A_SEQUENCE_OF(struct S1AP_E_RABFailedToResumeItemResumeReq_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P18_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P19 { +} S1AP_ProtocolExtensionContainer_7898P18_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P19 { A_SEQUENCE_OF(struct S1AP_E_RABFailedToResumeItemResumeRes_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P19_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P20 { +} S1AP_ProtocolExtensionContainer_7898P19_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P20 { A_SEQUENCE_OF(struct S1AP_Additional_GUTI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P20_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P21 { +} S1AP_ProtocolExtensionContainer_7898P20_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P21 { A_SEQUENCE_OF(struct S1AP_AllocationAndRetentionPriority_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P21_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P22 { +} S1AP_ProtocolExtensionContainer_7898P21_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P22 { A_SEQUENCE_OF(struct S1AP_InformationForCECapableUEs_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P22_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P23 { +} S1AP_ProtocolExtensionContainer_7898P22_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P23 { A_SEQUENCE_OF(struct S1AP_AssistanceDataForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P23_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P24 { +} S1AP_ProtocolExtensionContainer_7898P23_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P24 { A_SEQUENCE_OF(struct S1AP_AssistanceDataForRecommendedCells_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P24_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P25 { +} S1AP_ProtocolExtensionContainer_7898P24_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P25 { A_SEQUENCE_OF(struct S1AP_Bearers_SubjectToStatusTransfer_ItemExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P25_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P26 { +} S1AP_ProtocolExtensionContainer_7898P25_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P26 { A_SEQUENCE_OF(struct S1AP_Bearers_SubjectToEarlyStatusTransfer_ItemExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P26_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P27 { +} S1AP_ProtocolExtensionContainer_7898P26_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P27 { A_SEQUENCE_OF(struct S1AP_BluetoothMeasurementConfiguration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P27_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P28 { +} S1AP_ProtocolExtensionContainer_7898P27_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P28 { A_SEQUENCE_OF(struct S1AP_CancelledCellinEAI_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P28_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P29 { +} S1AP_ProtocolExtensionContainer_7898P28_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P29 { A_SEQUENCE_OF(struct S1AP_CancelledCellinTAI_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P29_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P30 { +} S1AP_ProtocolExtensionContainer_7898P29_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P30 { A_SEQUENCE_OF(struct S1AP_CellIdentifierAndCELevelForCECapableUEs_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P30_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P31 { +} S1AP_ProtocolExtensionContainer_7898P30_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P31 { A_SEQUENCE_OF(struct S1AP_CellID_Broadcast_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P31_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P32 { +} S1AP_ProtocolExtensionContainer_7898P31_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P32 { A_SEQUENCE_OF(struct S1AP_CellID_Cancelled_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P32_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P33 { +} S1AP_ProtocolExtensionContainer_7898P32_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P33 { A_SEQUENCE_OF(struct S1AP_CellBasedMDT_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P33_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P34 { +} S1AP_ProtocolExtensionContainer_7898P33_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P34 { A_SEQUENCE_OF(struct S1AP_CellBasedQMC_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P34_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P35 { +} S1AP_ProtocolExtensionContainer_7898P34_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P35 { A_SEQUENCE_OF(struct S1AP_Cdma2000OneXSRVCCInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P35_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P36 { +} S1AP_ProtocolExtensionContainer_7898P35_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P36 { A_SEQUENCE_OF(struct S1AP_CellType_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P36_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P37 { +} S1AP_ProtocolExtensionContainer_7898P36_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P37 { A_SEQUENCE_OF(struct S1AP_CGI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P37_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P38 { +} S1AP_ProtocolExtensionContainer_7898P37_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P38 { A_SEQUENCE_OF(struct S1AP_CNTypeRestrictions_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P38_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P39 { +} S1AP_ProtocolExtensionContainer_7898P38_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P39 { A_SEQUENCE_OF(struct S1AP_ConnectedengNBItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P39_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P40 { +} S1AP_ProtocolExtensionContainer_7898P39_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P40 { A_SEQUENCE_OF(struct S1AP_ContextatSource_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P40_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P41 { +} S1AP_ProtocolExtensionContainer_7898P40_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P41 { A_SEQUENCE_OF(struct S1AP_CSG_IdList_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P41_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P42 { +} S1AP_ProtocolExtensionContainer_7898P41_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P42 { A_SEQUENCE_OF(struct S1AP_COUNTvalue_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P42_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P43 { +} S1AP_ProtocolExtensionContainer_7898P42_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P43 { A_SEQUENCE_OF(struct S1AP_COUNTValueExtended_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P43_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P44 { +} S1AP_ProtocolExtensionContainer_7898P43_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P44 { A_SEQUENCE_OF(struct S1AP_COUNTvaluePDCP_SNlength18_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P44_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P45 { +} S1AP_ProtocolExtensionContainer_7898P44_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P45 { A_SEQUENCE_OF(struct S1AP_CriticalityDiagnostics_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P45_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P46 { +} S1AP_ProtocolExtensionContainer_7898P45_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P46 { A_SEQUENCE_OF(struct S1AP_CriticalityDiagnostics_IE_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P46_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P47 { +} S1AP_ProtocolExtensionContainer_7898P46_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P47 { A_SEQUENCE_OF(struct S1AP_DAPSRequestInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P47_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P48 { +} S1AP_ProtocolExtensionContainer_7898P47_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P48 { A_SEQUENCE_OF(struct S1AP_DAPSResponseInfoItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P48_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P49 { +} S1AP_ProtocolExtensionContainer_7898P48_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P49 { A_SEQUENCE_OF(struct S1AP_DAPSResponseInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P49_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P50 { +} S1AP_ProtocolExtensionContainer_7898P49_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P50 { A_SEQUENCE_OF(struct S1AP_ServedDCNsItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P50_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P51 { +} S1AP_ProtocolExtensionContainer_7898P50_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P51 { A_SEQUENCE_OF(struct S1AP_DL_CP_SecurityInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P51_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P52 { +} S1AP_ProtocolExtensionContainer_7898P51_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P52 { A_SEQUENCE_OF(struct S1AP_EmergencyAreaID_Broadcast_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P52_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P53 { +} S1AP_ProtocolExtensionContainer_7898P52_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P53 { A_SEQUENCE_OF(struct S1AP_EmergencyAreaID_Cancelled_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P53_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P54 { +} S1AP_ProtocolExtensionContainer_7898P53_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P54 { A_SEQUENCE_OF(struct S1AP_CompletedCellinEAI_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P54_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P55 { +} S1AP_ProtocolExtensionContainer_7898P54_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P55 { A_SEQUENCE_OF(struct S1AP_ENB_EarlyStatusTransfer_TransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P55_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P56 { +} S1AP_ProtocolExtensionContainer_7898P55_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P56 { A_SEQUENCE_OF(struct S1AP_GERAN_Cell_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P56_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P57 { +} S1AP_ProtocolExtensionContainer_7898P56_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P57 { A_SEQUENCE_OF(struct S1AP_GlobalENB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P57_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P58 { +} S1AP_ProtocolExtensionContainer_7898P57_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P58 { A_SEQUENCE_OF(struct S1AP_Global_en_gNB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P58_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P59 { +} S1AP_ProtocolExtensionContainer_7898P58_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P59 { A_SEQUENCE_OF(struct S1AP_ENB_StatusTransfer_TransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P59_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P60 { +} S1AP_ProtocolExtensionContainer_7898P59_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P60 { A_SEQUENCE_OF(struct S1AP_EN_DCSONConfigurationTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P60_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P61 { +} S1AP_ProtocolExtensionContainer_7898P60_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P61 { A_SEQUENCE_OF(struct S1AP_EN_DCTransferTypeRequest_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P61_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P62 { +} S1AP_ProtocolExtensionContainer_7898P61_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P62 { A_SEQUENCE_OF(struct S1AP_EN_DCTransferTypeReply_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P62_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P63 { +} S1AP_ProtocolExtensionContainer_7898P62_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P63 { A_SEQUENCE_OF(struct S1AP_EN_DCSONeNBIdentification_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P63_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P64 { +} S1AP_ProtocolExtensionContainer_7898P63_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P64 { A_SEQUENCE_OF(struct S1AP_EN_DCSONengNBIdentification_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P64_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P65 { +} S1AP_ProtocolExtensionContainer_7898P64_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P65 { A_SEQUENCE_OF(struct S1AP_E_RABInformationListItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P65_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P66 { +} S1AP_ProtocolExtensionContainer_7898P65_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P66 { A_SEQUENCE_OF(struct S1AP_E_RABItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P66_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P67 { +} S1AP_ProtocolExtensionContainer_7898P66_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P67 { A_SEQUENCE_OF(struct S1AP_E_RABQoSParameters_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P67_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P68 { +} S1AP_ProtocolExtensionContainer_7898P67_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P68 { A_SEQUENCE_OF(struct S1AP_E_RABUsageReportItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P68_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P69 { +} S1AP_ProtocolExtensionContainer_7898P68_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P69 { A_SEQUENCE_OF(struct S1AP_EUTRAN_CGI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P69_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P70 { +} S1AP_ProtocolExtensionContainer_7898P69_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P70 { A_SEQUENCE_OF(struct S1AP_ExpectedUEBehaviour_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P70_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P71 { +} S1AP_ProtocolExtensionContainer_7898P70_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P71 { A_SEQUENCE_OF(struct S1AP_ExpectedUEActivityBehaviour_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P71_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P72 { +} S1AP_ProtocolExtensionContainer_7898P71_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P72 { A_SEQUENCE_OF(struct S1AP_FiveGSTAI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P72_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P73 { +} S1AP_ProtocolExtensionContainer_7898P72_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P73 { A_SEQUENCE_OF(struct S1AP_ForbiddenTAs_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P73_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P74 { +} S1AP_ProtocolExtensionContainer_7898P73_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P74 { A_SEQUENCE_OF(struct S1AP_ForbiddenLAs_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P74_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P75 { +} S1AP_ProtocolExtensionContainer_7898P74_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P75 { A_SEQUENCE_OF(struct S1AP_GBR_QosInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P75_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P76 { +} S1AP_ProtocolExtensionContainer_7898P75_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P76 { A_SEQUENCE_OF(struct S1AP_GUMMEI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P76_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P77 { +} S1AP_ProtocolExtensionContainer_7898P76_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P77 { A_SEQUENCE_OF(struct S1AP_HandoverRestrictionList_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P77_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P78 { +} S1AP_ProtocolExtensionContainer_7898P77_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P78 { A_SEQUENCE_OF(struct S1AP_ImmediateMDT_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P78_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P79 { +} S1AP_ProtocolExtensionContainer_7898P78_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P79 { A_SEQUENCE_OF(struct S1AP_InformationOnRecommendedCellsAndENBsForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P79_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P80 { +} S1AP_ProtocolExtensionContainer_7898P79_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P80 { A_SEQUENCE_OF(struct S1AP_IntersystemMeasurementConfiguration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P80_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P81 { +} S1AP_ProtocolExtensionContainer_7898P80_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P81 { A_SEQUENCE_OF(struct S1AP_InterSystemMeasurementParameters_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P81_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P82 { +} S1AP_ProtocolExtensionContainer_7898P81_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P82 { A_SEQUENCE_OF(struct S1AP_InterSystemMeasurementItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P82_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P83 { +} S1AP_ProtocolExtensionContainer_7898P82_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P83 { A_SEQUENCE_OF(struct S1AP_LAI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P83_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P84 { +} S1AP_ProtocolExtensionContainer_7898P83_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P84 { A_SEQUENCE_OF(struct S1AP_LastVisitedEUTRANCellInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P84_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P85 { +} S1AP_ProtocolExtensionContainer_7898P84_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P85 { A_SEQUENCE_OF(struct S1AP_ListeningSubframePattern_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P85_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P86 { +} S1AP_ProtocolExtensionContainer_7898P85_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P86 { A_SEQUENCE_OF(struct S1AP_LoggedMDT_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P86_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P87 { +} S1AP_ProtocolExtensionContainer_7898P86_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P87 { A_SEQUENCE_OF(struct S1AP_LoggedMBSFNMDT_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P87_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P88 { +} S1AP_ProtocolExtensionContainer_7898P87_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P88 { A_SEQUENCE_OF(struct S1AP_M3Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P88_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P89 { +} S1AP_ProtocolExtensionContainer_7898P88_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P89 { A_SEQUENCE_OF(struct S1AP_M4Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P89_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P90 { +} S1AP_ProtocolExtensionContainer_7898P89_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P90 { A_SEQUENCE_OF(struct S1AP_M5Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P90_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P91 { +} S1AP_ProtocolExtensionContainer_7898P90_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P91 { A_SEQUENCE_OF(struct S1AP_M6Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P91_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P92 { +} S1AP_ProtocolExtensionContainer_7898P91_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P92 { A_SEQUENCE_OF(struct S1AP_M7Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P92_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P93 { +} S1AP_ProtocolExtensionContainer_7898P92_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P93 { A_SEQUENCE_OF(struct S1AP_MDT_Configuration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P93_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P94 { +} S1AP_ProtocolExtensionContainer_7898P93_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P94 { A_SEQUENCE_OF(struct S1AP_MBSFN_ResultToLogInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P94_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P95 { +} S1AP_ProtocolExtensionContainer_7898P94_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P95 { A_SEQUENCE_OF(struct S1AP_MutingPatternInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P95_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P96 { +} S1AP_ProtocolExtensionContainer_7898P95_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P96 { A_SEQUENCE_OF(struct S1AP_NB_IoT_Paging_eDRXInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P96_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P97 { +} S1AP_ProtocolExtensionContainer_7898P96_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P97 { A_SEQUENCE_OF(struct S1AP_NR_CGI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P97_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P98 { +} S1AP_ProtocolExtensionContainer_7898P97_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P98 { A_SEQUENCE_OF(struct S1AP_NRUESecurityCapabilities_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P98_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P99 { +} S1AP_ProtocolExtensionContainer_7898P98_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P99 { A_SEQUENCE_OF(struct S1AP_NRV2XServicesAuthorized_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P99_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P100 { +} S1AP_ProtocolExtensionContainer_7898P99_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P100 { A_SEQUENCE_OF(struct S1AP_NRUESidelinkAggregateMaximumBitrate_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P100_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P101 { +} S1AP_ProtocolExtensionContainer_7898P100_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P101 { A_SEQUENCE_OF(struct S1AP_PagingAttemptInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P101_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P102 { +} S1AP_ProtocolExtensionContainer_7898P101_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P102 { A_SEQUENCE_OF(struct S1AP_Paging_eDRXInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P102_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P103 { +} S1AP_ProtocolExtensionContainer_7898P102_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P103 { A_SEQUENCE_OF(struct S1AP_PC5QoSParameters_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P103_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P104 { +} S1AP_ProtocolExtensionContainer_7898P103_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P104 { A_SEQUENCE_OF(struct S1AP_PC5QoSFlowItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P104_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P105 { +} S1AP_ProtocolExtensionContainer_7898P104_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P105 { A_SEQUENCE_OF(struct S1AP_PC5FlowBitRates_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P105_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P106 { +} S1AP_ProtocolExtensionContainer_7898P105_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P106 { A_SEQUENCE_OF(struct S1AP_M1PeriodicReporting_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P106_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P107 { +} S1AP_ProtocolExtensionContainer_7898P106_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P107 { A_SEQUENCE_OF(struct S1AP_PLMNAreaBasedQMC_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P107_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P108 { +} S1AP_ProtocolExtensionContainer_7898P107_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P108 { A_SEQUENCE_OF(struct S1AP_ProSeAuthorized_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P108_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P109 { +} S1AP_ProtocolExtensionContainer_7898P108_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P109 { A_SEQUENCE_OF(struct S1AP_PSCellInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P109_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P110 { +} S1AP_ProtocolExtensionContainer_7898P109_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P110 { A_SEQUENCE_OF(struct S1AP_RecommendedCellsForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P110_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P111 { +} S1AP_ProtocolExtensionContainer_7898P110_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P111 { A_SEQUENCE_OF(struct S1AP_RecommendedCellsForPagingItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P111_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P112 { +} S1AP_ProtocolExtensionContainer_7898P111_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P112 { A_SEQUENCE_OF(struct S1AP_RecommendedENBsForPaging_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P112_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P113 { +} S1AP_ProtocolExtensionContainer_7898P112_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P113 { A_SEQUENCE_OF(struct S1AP_RecommendedENBItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P113_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P114 { +} S1AP_ProtocolExtensionContainer_7898P113_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P114 { A_SEQUENCE_OF(struct S1AP_RequestType_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P114_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P115 { +} S1AP_ProtocolExtensionContainer_7898P114_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P115 { A_SEQUENCE_OF(struct S1AP_RIMTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P115_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P116 { +} S1AP_ProtocolExtensionContainer_7898P115_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P116 { A_SEQUENCE_OF(struct S1AP_RLFReportInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P116_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P117 { +} S1AP_ProtocolExtensionContainer_7898P116_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P117 { A_SEQUENCE_OF(struct S1AP_SecurityContext_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P117_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P118 { +} S1AP_ProtocolExtensionContainer_7898P117_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P118 { A_SEQUENCE_OF(struct S1AP_SecondaryRATDataUsageReportItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P118_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P119 { +} S1AP_ProtocolExtensionContainer_7898P118_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P119 { A_SEQUENCE_OF(struct S1AP_SONInformationReply_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P119_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P120 { +} S1AP_ProtocolExtensionContainer_7898P119_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P120 { A_SEQUENCE_OF(struct S1AP_SONConfigurationTransfer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P120_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P121 { +} S1AP_ProtocolExtensionContainer_7898P120_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P121 { A_SEQUENCE_OF(struct S1AP_SynchronisationInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P121_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P122 { +} S1AP_ProtocolExtensionContainer_7898P121_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P122 { A_SEQUENCE_OF(struct S1AP_SourceeNB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P122_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P123 { +} S1AP_ProtocolExtensionContainer_7898P122_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P123 { A_SEQUENCE_OF(struct S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P123_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P124 { +} S1AP_ProtocolExtensionContainer_7898P123_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P124 { A_SEQUENCE_OF(struct S1AP_SourceNgRanNode_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P124_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P125 { +} S1AP_ProtocolExtensionContainer_7898P124_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P125 { A_SEQUENCE_OF(struct S1AP_ServedGUMMEIsItem_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P125_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P126 { +} S1AP_ProtocolExtensionContainer_7898P125_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P126 { A_SEQUENCE_OF(struct S1AP_Subscription_Based_UE_DifferentiationInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P126_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P127 { +} S1AP_ProtocolExtensionContainer_7898P126_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P127 { A_SEQUENCE_OF(struct S1AP_ScheduledCommunicationTime_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P127_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P128 { +} S1AP_ProtocolExtensionContainer_7898P127_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P128 { A_SEQUENCE_OF(struct S1AP_SupportedTAs_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P128_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P129 { +} S1AP_ProtocolExtensionContainer_7898P128_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P129 { A_SEQUENCE_OF(struct S1AP_TimeSynchronisationInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P129_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P130 { +} S1AP_ProtocolExtensionContainer_7898P129_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P130 { A_SEQUENCE_OF(struct S1AP_S_TMSI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P130_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P131 { +} S1AP_ProtocolExtensionContainer_7898P130_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P131 { A_SEQUENCE_OF(struct S1AP_TAIBasedMDT_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P131_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P132 { +} S1AP_ProtocolExtensionContainer_7898P131_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P132 { A_SEQUENCE_OF(struct S1AP_TAI_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P132_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P133 { +} S1AP_ProtocolExtensionContainer_7898P132_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P133 { A_SEQUENCE_OF(struct S1AP_TAI_Broadcast_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P133_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P134 { +} S1AP_ProtocolExtensionContainer_7898P133_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P134 { A_SEQUENCE_OF(struct S1AP_TAI_Cancelled_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P134_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P135 { +} S1AP_ProtocolExtensionContainer_7898P134_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P135 { A_SEQUENCE_OF(struct S1AP_TABasedMDT_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P135_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P136 { +} S1AP_ProtocolExtensionContainer_7898P135_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P136 { A_SEQUENCE_OF(struct S1AP_TABasedQMC_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P136_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P137 { +} S1AP_ProtocolExtensionContainer_7898P136_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P137 { A_SEQUENCE_OF(struct S1AP_TAIBasedQMC_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P137_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P138 { +} S1AP_ProtocolExtensionContainer_7898P137_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P138 { A_SEQUENCE_OF(struct S1AP_CompletedCellinTAI_Item_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P138_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P139 { +} S1AP_ProtocolExtensionContainer_7898P138_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P139 { A_SEQUENCE_OF(struct S1AP_TargeteNB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P139_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P140 { +} S1AP_ProtocolExtensionContainer_7898P139_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P140 { A_SEQUENCE_OF(struct S1AP_TargetRNC_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P140_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P141 { +} S1AP_ProtocolExtensionContainer_7898P140_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P141 { A_SEQUENCE_OF(struct S1AP_TargetNgRanNode_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P141_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P142 { +} S1AP_ProtocolExtensionContainer_7898P141_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P142 { A_SEQUENCE_OF(struct S1AP_GNB_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P142_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P143 { +} S1AP_ProtocolExtensionContainer_7898P142_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P143 { A_SEQUENCE_OF(struct S1AP_Global_GNB_ID_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P143_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P144 { +} S1AP_ProtocolExtensionContainer_7898P143_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P144 { A_SEQUENCE_OF(struct S1AP_NG_eNB_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P144_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P145 { +} S1AP_ProtocolExtensionContainer_7898P144_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P145 { A_SEQUENCE_OF(struct S1AP_TargeteNB_ToSourceeNB_TransparentContainer_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P145_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P146 { +} S1AP_ProtocolExtensionContainer_7898P145_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P146 { A_SEQUENCE_OF(struct S1AP_M1ThresholdEventA2_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P146_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P147 { +} S1AP_ProtocolExtensionContainer_7898P146_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P147 { A_SEQUENCE_OF(struct S1AP_TraceActivation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P147_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P148 { +} S1AP_ProtocolExtensionContainer_7898P147_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P148 { A_SEQUENCE_OF(struct S1AP_Tunnel_Information_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P148_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P149 { +} S1AP_ProtocolExtensionContainer_7898P148_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P149 { A_SEQUENCE_OF(struct S1AP_UEAggregate_MaximumBitrates_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P149_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P150 { +} S1AP_ProtocolExtensionContainer_7898P149_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P150 { A_SEQUENCE_OF(struct S1AP_UEAppLayerMeasConfig_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P150_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P151 { +} S1AP_ProtocolExtensionContainer_7898P150_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P151 { A_SEQUENCE_OF(struct S1AP_UE_S1AP_ID_pair_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P151_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P152 { +} S1AP_ProtocolExtensionContainer_7898P151_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P152 { A_SEQUENCE_OF(struct S1AP_UE_associatedLogicalS1_ConnectionItemExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P152_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P153 { +} S1AP_ProtocolExtensionContainer_7898P152_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P153 { A_SEQUENCE_OF(struct S1AP_UESecurityCapabilities_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P153_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P154 { +} S1AP_ProtocolExtensionContainer_7898P153_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P154 { A_SEQUENCE_OF(struct S1AP_UE_Sidelink_Aggregate_MaximumBitrates_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P154_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P155 { +} S1AP_ProtocolExtensionContainer_7898P154_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P155 { A_SEQUENCE_OF(struct S1AP_UL_CP_SecurityInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P155_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P156 { +} S1AP_ProtocolExtensionContainer_7898P155_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P156 { A_SEQUENCE_OF(struct S1AP_UserLocationInformation_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P156_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P157 { +} S1AP_ProtocolExtensionContainer_7898P156_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P157 { A_SEQUENCE_OF(struct S1AP_V2XServicesAuthorized_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P157_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P158 { +} S1AP_ProtocolExtensionContainer_7898P157_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P158 { A_SEQUENCE_OF(struct S1AP_WLANMeasurementConfiguration_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P158_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P159 { +} S1AP_ProtocolExtensionContainer_7898P158_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P159 { A_SEQUENCE_OF(struct S1AP_WUS_Assistance_Information_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P159_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P160 { +} S1AP_ProtocolExtensionContainer_7898P159_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P160 { A_SEQUENCE_OF(struct S1AP_X2TNLConfigurationInfo_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P160_t; -typedef struct S1AP_ProtocolExtensionContainer_7889P161 { +} S1AP_ProtocolExtensionContainer_7898P160_t; +typedef struct S1AP_ProtocolExtensionContainer_7898P161 { A_SEQUENCE_OF(struct S1AP_ENBX2ExtTLA_ExtIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolExtensionContainer_7889P161_t; +} S1AP_ProtocolExtensionContainer_7898P161_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P0; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P0_specs_1; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P0_1[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P0_constr_1; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P1; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P1_specs_3; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P1_3[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P1_constr_3; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P2; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P2_specs_5; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P2_5[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P2_constr_5; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P3; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P3_specs_7; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P3_7[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P3_constr_7; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P4; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P4_specs_9; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P4_9[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P4_constr_9; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P5; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P5_specs_11; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P5_11[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P5_constr_11; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P6; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P6_specs_13; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P6_13[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P6_constr_13; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P7; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P7_specs_15; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P7_15[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P7_constr_15; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P8; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P8_specs_17; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P8_17[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P8_constr_17; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P9; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P9_specs_19; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P9_19[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P9_constr_19; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P10; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P10_specs_21; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P10_21[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P10_constr_21; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P11; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P11_specs_23; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P11_23[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P11_constr_23; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P12; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P12_specs_25; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P12_25[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P12_constr_25; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P13; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P13_specs_27; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P13_27[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P13_constr_27; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P14; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P14_specs_29; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P14_29[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P14_constr_29; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P15; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P15_specs_31; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P15_31[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P15_constr_31; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P16; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P16_specs_33; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P16_33[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P16_constr_33; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P17; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P17_specs_35; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P17_35[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P17_constr_35; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P18; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P18_specs_37; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P18_37[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P18_constr_37; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P19; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P19_specs_39; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P19_39[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P19_constr_39; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P20; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P20_specs_41; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P20_41[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P20_constr_41; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P21; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P21_specs_43; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P21_43[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P21_constr_43; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P22; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P22_specs_45; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P22_45[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P22_constr_45; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P23; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P23_specs_47; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P23_47[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P23_constr_47; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P24; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P24_specs_49; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P24_49[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P24_constr_49; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P25; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P25_specs_51; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P25_51[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P25_constr_51; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P26; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P26_specs_53; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P26_53[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P26_constr_53; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P27; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P27_specs_55; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P27_55[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P27_constr_55; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P28; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P28_specs_57; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P28_57[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P28_constr_57; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P29; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P29_specs_59; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P29_59[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P29_constr_59; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P30; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P30_specs_61; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P30_61[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P30_constr_61; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P31; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P31_specs_63; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P31_63[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P31_constr_63; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P32; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P32_specs_65; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P32_65[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P32_constr_65; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P33; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P33_specs_67; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P33_67[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P33_constr_67; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P34; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P34_specs_69; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P34_69[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P34_constr_69; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P35; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P35_specs_71; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P35_71[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P35_constr_71; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P36; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P36_specs_73; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P36_73[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P36_constr_73; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P37; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P37_specs_75; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P37_75[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P37_constr_75; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P38; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P38_specs_77; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P38_77[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P38_constr_77; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P39; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P39_specs_79; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P39_79[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P39_constr_79; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P40; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P40_specs_81; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P40_81[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P40_constr_81; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P41; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P41_specs_83; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P41_83[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P41_constr_83; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P42; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P42_specs_85; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P42_85[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P42_constr_85; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P43; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P43_specs_87; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P43_87[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P43_constr_87; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P44; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P44_specs_89; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P44_89[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P44_constr_89; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P45; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P45_specs_91; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P45_91[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P45_constr_91; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P46; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P46_specs_93; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P46_93[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P46_constr_93; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P47; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P47_specs_95; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P47_95[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P47_constr_95; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P48; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P48_specs_97; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P48_97[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P48_constr_97; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P49; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P49_specs_99; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P49_99[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P49_constr_99; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P50; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P50_specs_101; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P50_101[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P50_constr_101; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P51; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P51_specs_103; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P51_103[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P51_constr_103; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P52; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P52_specs_105; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P52_105[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P52_constr_105; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P53; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P53_specs_107; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P53_107[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P53_constr_107; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P54; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P54_specs_109; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P54_109[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P54_constr_109; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P55; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P55_specs_111; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P55_111[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P55_constr_111; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P56; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P56_specs_113; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P56_113[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P56_constr_113; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P57; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P57_specs_115; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P57_115[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P57_constr_115; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P58; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P58_specs_117; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P58_117[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P58_constr_117; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P59; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P59_specs_119; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P59_119[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P59_constr_119; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P60; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P60_specs_121; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P60_121[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P60_constr_121; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P61; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P61_specs_123; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P61_123[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P61_constr_123; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P62; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P62_specs_125; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P62_125[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P62_constr_125; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P63; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P63_specs_127; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P63_127[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P63_constr_127; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P64; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P64_specs_129; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P64_129[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P64_constr_129; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P65; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P65_specs_131; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P65_131[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P65_constr_131; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P66; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P66_specs_133; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P66_133[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P66_constr_133; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P67; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P67_specs_135; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P67_135[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P67_constr_135; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P68; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P68_specs_137; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P68_137[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P68_constr_137; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P69; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P69_specs_139; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P69_139[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P69_constr_139; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P70; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P70_specs_141; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P70_141[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P70_constr_141; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P71; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P71_specs_143; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P71_143[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P71_constr_143; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P72; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P72_specs_145; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P72_145[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P72_constr_145; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P73; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P73_specs_147; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P73_147[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P73_constr_147; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P74; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P74_specs_149; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P74_149[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P74_constr_149; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P75; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P75_specs_151; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P75_151[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P75_constr_151; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P76; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P76_specs_153; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P76_153[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P76_constr_153; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P77; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P77_specs_155; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P77_155[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P77_constr_155; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P78; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P78_specs_157; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P78_157[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P78_constr_157; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P79; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P79_specs_159; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P79_159[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P79_constr_159; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P80; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P80_specs_161; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P80_161[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P80_constr_161; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P81; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P81_specs_163; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P81_163[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P81_constr_163; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P82; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P82_specs_165; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P82_165[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P82_constr_165; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P83; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P83_specs_167; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P83_167[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P83_constr_167; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P84; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P84_specs_169; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P84_169[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P84_constr_169; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P85; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P85_specs_171; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P85_171[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P85_constr_171; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P86; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P86_specs_173; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P86_173[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P86_constr_173; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P87; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P87_specs_175; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P87_175[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P87_constr_175; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P88; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P88_specs_177; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P88_177[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P88_constr_177; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P89; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P89_specs_179; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P89_179[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P89_constr_179; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P90; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P90_specs_181; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P90_181[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P90_constr_181; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P91; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P91_specs_183; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P91_183[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P91_constr_183; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P92; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P92_specs_185; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P92_185[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P92_constr_185; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P93; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P93_specs_187; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P93_187[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P93_constr_187; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P94; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P94_specs_189; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P94_189[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P94_constr_189; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P95; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P95_specs_191; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P95_191[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P95_constr_191; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P96; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P96_specs_193; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P96_193[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P96_constr_193; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P97; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P97_specs_195; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P97_195[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P97_constr_195; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P98; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P98_specs_197; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P98_197[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P98_constr_197; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P99; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P99_specs_199; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P99_199[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P99_constr_199; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P100; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P100_specs_201; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P100_201[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P100_constr_201; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P101; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P101_specs_203; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P101_203[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P101_constr_203; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P102; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P102_specs_205; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P102_205[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P102_constr_205; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P103; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P103_specs_207; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P103_207[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P103_constr_207; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P104; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P104_specs_209; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P104_209[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P104_constr_209; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P105; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P105_specs_211; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P105_211[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P105_constr_211; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P106; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P106_specs_213; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P106_213[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P106_constr_213; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P107; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P107_specs_215; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P107_215[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P107_constr_215; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P108; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P108_specs_217; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P108_217[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P108_constr_217; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P109; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P109_specs_219; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P109_219[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P109_constr_219; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P110; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P110_specs_221; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P110_221[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P110_constr_221; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P111; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P111_specs_223; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P111_223[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P111_constr_223; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P112; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P112_specs_225; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P112_225[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P112_constr_225; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P113; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P113_specs_227; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P113_227[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P113_constr_227; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P114; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P114_specs_229; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P114_229[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P114_constr_229; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P115; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P115_specs_231; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P115_231[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P115_constr_231; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P116; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P116_specs_233; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P116_233[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P116_constr_233; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P117; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P117_specs_235; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P117_235[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P117_constr_235; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P118; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P118_specs_237; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P118_237[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P118_constr_237; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P119; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P119_specs_239; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P119_239[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P119_constr_239; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P120; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P120_specs_241; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P120_241[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P120_constr_241; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P121; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P121_specs_243; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P121_243[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P121_constr_243; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P122; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P122_specs_245; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P122_245[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P122_constr_245; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P123; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P123_specs_247; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P123_247[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P123_constr_247; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P124; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P124_specs_249; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P124_249[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P124_constr_249; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P125; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P125_specs_251; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P125_251[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P125_constr_251; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P126; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P126_specs_253; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P126_253[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P126_constr_253; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P127; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P127_specs_255; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P127_255[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P127_constr_255; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P128; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P128_specs_257; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P128_257[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P128_constr_257; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P129; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P129_specs_259; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P129_259[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P129_constr_259; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P130; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P130_specs_261; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P130_261[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P130_constr_261; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P131; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P131_specs_263; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P131_263[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P131_constr_263; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P132; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P132_specs_265; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P132_265[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P132_constr_265; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P133; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P133_specs_267; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P133_267[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P133_constr_267; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P134; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P134_specs_269; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P134_269[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P134_constr_269; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P135; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P135_specs_271; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P135_271[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P135_constr_271; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P136; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P136_specs_273; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P136_273[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P136_constr_273; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P137; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P137_specs_275; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P137_275[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P137_constr_275; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P138; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P138_specs_277; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P138_277[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P138_constr_277; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P139; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P139_specs_279; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P139_279[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P139_constr_279; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P140; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P140_specs_281; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P140_281[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P140_constr_281; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P141; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P141_specs_283; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P141_283[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P141_constr_283; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P142; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P142_specs_285; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P142_285[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P142_constr_285; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P143; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P143_specs_287; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P143_287[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P143_constr_287; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P144; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P144_specs_289; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P144_289[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P144_constr_289; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P145; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P145_specs_291; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P145_291[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P145_constr_291; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P146; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P146_specs_293; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P146_293[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P146_constr_293; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P147; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P147_specs_295; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P147_295[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P147_constr_295; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P148; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P148_specs_297; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P148_297[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P148_constr_297; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P149; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P149_specs_299; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P149_299[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P149_constr_299; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P150; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P150_specs_301; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P150_301[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P150_constr_301; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P151; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P151_specs_303; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P151_303[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P151_constr_303; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P152; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P152_specs_305; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P152_305[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P152_constr_305; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P153; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P153_specs_307; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P153_307[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P153_constr_307; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P154; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P154_specs_309; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P154_309[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P154_constr_309; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P155; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P155_specs_311; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P155_311[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P155_constr_311; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P156; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P156_specs_313; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P156_313[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P156_constr_313; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P157; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P157_specs_315; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P157_315[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P157_constr_315; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P158; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P158_specs_317; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P158_317[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P158_constr_317; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P159; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P159_specs_319; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P159_319[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P159_constr_319; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P160; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P160_specs_321; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P160_321[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P160_constr_321; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7889P161; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7889P161_specs_323; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7889P161_323[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7889P161_constr_323; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P0; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P0_specs_1; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P0_1[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P0_constr_1; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P1; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P1_specs_3; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P1_3[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P1_constr_3; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P2; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P2_specs_5; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P2_5[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P2_constr_5; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P3; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P3_specs_7; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P3_7[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P3_constr_7; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P4; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P4_specs_9; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P4_9[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P4_constr_9; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P5; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P5_specs_11; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P5_11[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P5_constr_11; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P6; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P6_specs_13; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P6_13[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P6_constr_13; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P7; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P7_specs_15; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P7_15[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P7_constr_15; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P8; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P8_specs_17; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P8_17[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P8_constr_17; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P9; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P9_specs_19; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P9_19[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P9_constr_19; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P10; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P10_specs_21; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P10_21[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P10_constr_21; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P11; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P11_specs_23; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P11_23[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P11_constr_23; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P12; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P12_specs_25; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P12_25[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P12_constr_25; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P13; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P13_specs_27; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P13_27[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P13_constr_27; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P14; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P14_specs_29; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P14_29[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P14_constr_29; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P15; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P15_specs_31; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P15_31[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P15_constr_31; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P16; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P16_specs_33; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P16_33[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P16_constr_33; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P17; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P17_specs_35; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P17_35[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P17_constr_35; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P18; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P18_specs_37; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P18_37[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P18_constr_37; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P19; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P19_specs_39; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P19_39[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P19_constr_39; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P20; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P20_specs_41; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P20_41[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P20_constr_41; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P21; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P21_specs_43; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P21_43[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P21_constr_43; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P22; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P22_specs_45; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P22_45[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P22_constr_45; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P23; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P23_specs_47; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P23_47[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P23_constr_47; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P24; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P24_specs_49; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P24_49[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P24_constr_49; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P25; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P25_specs_51; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P25_51[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P25_constr_51; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P26; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P26_specs_53; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P26_53[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P26_constr_53; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P27; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P27_specs_55; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P27_55[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P27_constr_55; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P28; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P28_specs_57; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P28_57[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P28_constr_57; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P29; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P29_specs_59; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P29_59[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P29_constr_59; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P30; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P30_specs_61; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P30_61[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P30_constr_61; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P31; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P31_specs_63; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P31_63[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P31_constr_63; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P32; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P32_specs_65; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P32_65[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P32_constr_65; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P33; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P33_specs_67; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P33_67[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P33_constr_67; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P34; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P34_specs_69; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P34_69[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P34_constr_69; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P35; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P35_specs_71; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P35_71[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P35_constr_71; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P36; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P36_specs_73; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P36_73[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P36_constr_73; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P37; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P37_specs_75; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P37_75[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P37_constr_75; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P38; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P38_specs_77; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P38_77[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P38_constr_77; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P39; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P39_specs_79; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P39_79[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P39_constr_79; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P40; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P40_specs_81; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P40_81[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P40_constr_81; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P41; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P41_specs_83; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P41_83[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P41_constr_83; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P42; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P42_specs_85; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P42_85[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P42_constr_85; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P43; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P43_specs_87; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P43_87[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P43_constr_87; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P44; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P44_specs_89; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P44_89[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P44_constr_89; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P45; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P45_specs_91; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P45_91[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P45_constr_91; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P46; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P46_specs_93; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P46_93[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P46_constr_93; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P47; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P47_specs_95; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P47_95[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P47_constr_95; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P48; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P48_specs_97; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P48_97[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P48_constr_97; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P49; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P49_specs_99; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P49_99[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P49_constr_99; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P50; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P50_specs_101; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P50_101[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P50_constr_101; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P51; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P51_specs_103; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P51_103[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P51_constr_103; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P52; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P52_specs_105; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P52_105[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P52_constr_105; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P53; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P53_specs_107; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P53_107[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P53_constr_107; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P54; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P54_specs_109; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P54_109[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P54_constr_109; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P55; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P55_specs_111; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P55_111[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P55_constr_111; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P56; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P56_specs_113; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P56_113[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P56_constr_113; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P57; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P57_specs_115; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P57_115[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P57_constr_115; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P58; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P58_specs_117; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P58_117[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P58_constr_117; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P59; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P59_specs_119; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P59_119[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P59_constr_119; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P60; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P60_specs_121; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P60_121[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P60_constr_121; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P61; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P61_specs_123; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P61_123[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P61_constr_123; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P62; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P62_specs_125; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P62_125[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P62_constr_125; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P63; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P63_specs_127; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P63_127[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P63_constr_127; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P64; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P64_specs_129; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P64_129[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P64_constr_129; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P65; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P65_specs_131; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P65_131[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P65_constr_131; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P66; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P66_specs_133; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P66_133[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P66_constr_133; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P67; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P67_specs_135; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P67_135[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P67_constr_135; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P68; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P68_specs_137; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P68_137[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P68_constr_137; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P69; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P69_specs_139; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P69_139[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P69_constr_139; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P70; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P70_specs_141; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P70_141[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P70_constr_141; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P71; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P71_specs_143; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P71_143[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P71_constr_143; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P72; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P72_specs_145; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P72_145[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P72_constr_145; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P73; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P73_specs_147; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P73_147[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P73_constr_147; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P74; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P74_specs_149; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P74_149[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P74_constr_149; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P75; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P75_specs_151; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P75_151[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P75_constr_151; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P76; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P76_specs_153; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P76_153[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P76_constr_153; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P77; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P77_specs_155; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P77_155[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P77_constr_155; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P78; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P78_specs_157; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P78_157[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P78_constr_157; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P79; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P79_specs_159; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P79_159[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P79_constr_159; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P80; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P80_specs_161; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P80_161[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P80_constr_161; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P81; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P81_specs_163; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P81_163[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P81_constr_163; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P82; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P82_specs_165; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P82_165[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P82_constr_165; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P83; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P83_specs_167; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P83_167[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P83_constr_167; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P84; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P84_specs_169; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P84_169[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P84_constr_169; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P85; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P85_specs_171; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P85_171[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P85_constr_171; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P86; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P86_specs_173; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P86_173[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P86_constr_173; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P87; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P87_specs_175; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P87_175[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P87_constr_175; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P88; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P88_specs_177; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P88_177[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P88_constr_177; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P89; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P89_specs_179; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P89_179[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P89_constr_179; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P90; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P90_specs_181; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P90_181[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P90_constr_181; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P91; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P91_specs_183; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P91_183[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P91_constr_183; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P92; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P92_specs_185; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P92_185[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P92_constr_185; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P93; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P93_specs_187; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P93_187[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P93_constr_187; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P94; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P94_specs_189; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P94_189[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P94_constr_189; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P95; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P95_specs_191; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P95_191[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P95_constr_191; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P96; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P96_specs_193; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P96_193[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P96_constr_193; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P97; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P97_specs_195; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P97_195[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P97_constr_195; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P98; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P98_specs_197; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P98_197[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P98_constr_197; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P99; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P99_specs_199; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P99_199[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P99_constr_199; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P100; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P100_specs_201; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P100_201[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P100_constr_201; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P101; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P101_specs_203; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P101_203[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P101_constr_203; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P102; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P102_specs_205; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P102_205[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P102_constr_205; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P103; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P103_specs_207; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P103_207[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P103_constr_207; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P104; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P104_specs_209; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P104_209[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P104_constr_209; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P105; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P105_specs_211; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P105_211[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P105_constr_211; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P106; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P106_specs_213; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P106_213[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P106_constr_213; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P107; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P107_specs_215; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P107_215[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P107_constr_215; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P108; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P108_specs_217; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P108_217[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P108_constr_217; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P109; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P109_specs_219; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P109_219[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P109_constr_219; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P110; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P110_specs_221; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P110_221[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P110_constr_221; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P111; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P111_specs_223; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P111_223[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P111_constr_223; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P112; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P112_specs_225; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P112_225[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P112_constr_225; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P113; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P113_specs_227; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P113_227[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P113_constr_227; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P114; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P114_specs_229; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P114_229[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P114_constr_229; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P115; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P115_specs_231; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P115_231[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P115_constr_231; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P116; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P116_specs_233; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P116_233[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P116_constr_233; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P117; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P117_specs_235; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P117_235[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P117_constr_235; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P118; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P118_specs_237; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P118_237[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P118_constr_237; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P119; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P119_specs_239; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P119_239[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P119_constr_239; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P120; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P120_specs_241; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P120_241[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P120_constr_241; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P121; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P121_specs_243; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P121_243[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P121_constr_243; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P122; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P122_specs_245; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P122_245[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P122_constr_245; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P123; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P123_specs_247; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P123_247[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P123_constr_247; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P124; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P124_specs_249; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P124_249[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P124_constr_249; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P125; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P125_specs_251; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P125_251[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P125_constr_251; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P126; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P126_specs_253; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P126_253[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P126_constr_253; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P127; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P127_specs_255; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P127_255[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P127_constr_255; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P128; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P128_specs_257; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P128_257[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P128_constr_257; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P129; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P129_specs_259; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P129_259[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P129_constr_259; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P130; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P130_specs_261; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P130_261[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P130_constr_261; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P131; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P131_specs_263; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P131_263[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P131_constr_263; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P132; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P132_specs_265; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P132_265[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P132_constr_265; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P133; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P133_specs_267; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P133_267[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P133_constr_267; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P134; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P134_specs_269; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P134_269[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P134_constr_269; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P135; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P135_specs_271; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P135_271[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P135_constr_271; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P136; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P136_specs_273; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P136_273[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P136_constr_273; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P137; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P137_specs_275; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P137_275[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P137_constr_275; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P138; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P138_specs_277; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P138_277[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P138_constr_277; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P139; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P139_specs_279; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P139_279[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P139_constr_279; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P140; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P140_specs_281; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P140_281[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P140_constr_281; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P141; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P141_specs_283; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P141_283[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P141_constr_283; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P142; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P142_specs_285; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P142_285[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P142_constr_285; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P143; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P143_specs_287; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P143_287[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P143_constr_287; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P144; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P144_specs_289; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P144_289[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P144_constr_289; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P145; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P145_specs_291; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P145_291[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P145_constr_291; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P146; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P146_specs_293; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P146_293[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P146_constr_293; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P147; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P147_specs_295; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P147_295[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P147_constr_295; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P148; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P148_specs_297; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P148_297[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P148_constr_297; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P149; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P149_specs_299; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P149_299[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P149_constr_299; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P150; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P150_specs_301; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P150_301[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P150_constr_301; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P151; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P151_specs_303; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P151_303[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P151_constr_303; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P152; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P152_specs_305; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P152_305[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P152_constr_305; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P153; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P153_specs_307; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P153_307[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P153_constr_307; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P154; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P154_specs_309; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P154_309[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P154_constr_309; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P155; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P155_specs_311; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P155_311[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P155_constr_311; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P156; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P156_specs_313; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P156_313[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P156_constr_313; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P157; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P157_specs_315; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P157_315[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P157_constr_315; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P158; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P158_specs_317; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P158_317[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P158_constr_317; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P159; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P159_specs_319; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P159_319[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P159_constr_319; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P160; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P160_specs_321; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P160_321[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P160_constr_321; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolExtensionContainer_7898P161; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolExtensionContainer_7898P161_specs_323; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolExtensionContainer_7898P161_323[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolExtensionContainer_7898P161_constr_323; #ifdef __cplusplus } diff --git a/lib/asn1c/s1ap/S1AP_ProtocolExtensionField.c b/lib/asn1c/s1ap/S1AP_ProtocolExtensionField.c index 0d0b50ebb..f0a457299 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolExtensionField.c +++ b/lib/asn1c/s1ap/S1AP_ProtocolExtensionField.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -468,6 +468,9 @@ static const long asn_VAL_56_S1AP_optional = 0; static const long asn_VAL_57_S1AP_id_SourceNodeID = 312; static const long asn_VAL_57_S1AP_ignore = 1; static const long asn_VAL_57_S1AP_optional = 0; +static const long asn_VAL_58_S1AP_id_EmergencyIndicator = 326; +static const long asn_VAL_58_S1AP_ignore = 1; +static const long asn_VAL_58_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs_1_rows[] = { { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_51_S1AP_id_MobilityInformation }, { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_51_S1AP_ignore }, @@ -496,150 +499,154 @@ static const asn_ioc_cell_t asn_IOS_S1AP_SourceeNB_ToTargeteNB_TransparentContai { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_57_S1AP_id_SourceNodeID }, { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_57_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_SourceNodeID }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_57_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_57_S1AP_optional }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_58_S1AP_id_EmergencyIndicator }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_58_S1AP_ignore }, + { "&Extension", aioc__type, &asn_DEF_S1AP_EmergencyIndicator }, + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_58_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs_1[] = { - { 7, 4, asn_IOS_S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs_1_rows } + { 8, 4, asn_IOS_S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs_1_rows } }; -static const long asn_VAL_58_S1AP_id_GUMMEIType = 170; -static const long asn_VAL_58_S1AP_ignore = 1; -static const long asn_VAL_58_S1AP_optional = 0; +static const long asn_VAL_59_S1AP_id_GUMMEIType = 170; +static const long asn_VAL_59_S1AP_ignore = 1; +static const long asn_VAL_59_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_ServedGUMMEIsItem_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_58_S1AP_id_GUMMEIType }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_58_S1AP_ignore }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_59_S1AP_id_GUMMEIType }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_59_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_GUMMEIType }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_58_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_59_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_ServedGUMMEIsItem_ExtIEs_1[] = { { 1, 4, asn_IOS_S1AP_ServedGUMMEIsItem_ExtIEs_1_rows } }; -static const long asn_VAL_59_S1AP_id_RAT_Type = 232; -static const long asn_VAL_59_S1AP_reject = 0; -static const long asn_VAL_59_S1AP_optional = 0; +static const long asn_VAL_60_S1AP_id_RAT_Type = 232; +static const long asn_VAL_60_S1AP_reject = 0; +static const long asn_VAL_60_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_SupportedTAs_Item_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_59_S1AP_id_RAT_Type }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_59_S1AP_reject }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_60_S1AP_id_RAT_Type }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_60_S1AP_reject }, { "&Extension", aioc__type, &asn_DEF_S1AP_RAT_Type }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_59_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_60_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_SupportedTAs_Item_ExtIEs_1[] = { { 1, 4, asn_IOS_S1AP_SupportedTAs_Item_ExtIEs_1_rows } }; -static const long asn_VAL_60_S1AP_id_Muting_Availability_Indication = 207; -static const long asn_VAL_60_S1AP_ignore = 1; -static const long asn_VAL_60_S1AP_optional = 0; +static const long asn_VAL_61_S1AP_id_Muting_Availability_Indication = 207; +static const long asn_VAL_61_S1AP_ignore = 1; +static const long asn_VAL_61_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_TimeSynchronisationInfo_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_60_S1AP_id_Muting_Availability_Indication }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_60_S1AP_ignore }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_61_S1AP_id_Muting_Availability_Indication }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_61_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_MutingAvailabilityIndication }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_60_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_61_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_TimeSynchronisationInfo_ExtIEs_1[] = { { 1, 4, asn_IOS_S1AP_TimeSynchronisationInfo_ExtIEs_1_rows } }; -static const long asn_VAL_61_S1AP_id_DAPSResponseInfoList = 318; -static const long asn_VAL_61_S1AP_reject = 0; -static const long asn_VAL_61_S1AP_optional = 0; +static const long asn_VAL_62_S1AP_id_DAPSResponseInfoList = 318; +static const long asn_VAL_62_S1AP_ignore = 1; +static const long asn_VAL_62_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_TargeteNB_ToSourceeNB_TransparentContainer_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_61_S1AP_id_DAPSResponseInfoList }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_61_S1AP_reject }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_62_S1AP_id_DAPSResponseInfoList }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_62_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_DAPSResponseInfoList }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_61_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_62_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_TargeteNB_ToSourceeNB_TransparentContainer_ExtIEs_1[] = { { 1, 4, asn_IOS_S1AP_TargeteNB_ToSourceeNB_TransparentContainer_ExtIEs_1_rows } }; -static const long asn_VAL_62_S1AP_id_MDTConfiguration = 162; -static const long asn_VAL_62_S1AP_ignore = 1; -static const long asn_VAL_62_S1AP_optional = 0; -static const long asn_VAL_63_S1AP_id_UEAppLayerMeasConfig = 262; +static const long asn_VAL_63_S1AP_id_MDTConfiguration = 162; static const long asn_VAL_63_S1AP_ignore = 1; static const long asn_VAL_63_S1AP_optional = 0; -static const long asn_VAL_64_S1AP_id_MDTConfigurationNR = 316; +static const long asn_VAL_64_S1AP_id_UEAppLayerMeasConfig = 262; static const long asn_VAL_64_S1AP_ignore = 1; static const long asn_VAL_64_S1AP_optional = 0; -static const long asn_VAL_65_S1AP_id_TraceCollectionEntityURI = 325; +static const long asn_VAL_65_S1AP_id_MDTConfigurationNR = 316; static const long asn_VAL_65_S1AP_ignore = 1; static const long asn_VAL_65_S1AP_optional = 0; +static const long asn_VAL_66_S1AP_id_TraceCollectionEntityURI = 325; +static const long asn_VAL_66_S1AP_ignore = 1; +static const long asn_VAL_66_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_TraceActivation_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_62_S1AP_id_MDTConfiguration }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_62_S1AP_ignore }, - { "&Extension", aioc__type, &asn_DEF_S1AP_MDT_Configuration }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_62_S1AP_optional }, - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_63_S1AP_id_UEAppLayerMeasConfig }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_63_S1AP_id_MDTConfiguration }, { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_63_S1AP_ignore }, - { "&Extension", aioc__type, &asn_DEF_S1AP_UEAppLayerMeasConfig }, + { "&Extension", aioc__type, &asn_DEF_S1AP_MDT_Configuration }, { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_63_S1AP_optional }, - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_64_S1AP_id_MDTConfigurationNR }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_64_S1AP_id_UEAppLayerMeasConfig }, { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_64_S1AP_ignore }, - { "&Extension", aioc__type, &asn_DEF_S1AP_MDT_ConfigurationNR }, + { "&Extension", aioc__type, &asn_DEF_S1AP_UEAppLayerMeasConfig }, { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_64_S1AP_optional }, - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_65_S1AP_id_TraceCollectionEntityURI }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_65_S1AP_id_MDTConfigurationNR }, { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_65_S1AP_ignore }, + { "&Extension", aioc__type, &asn_DEF_S1AP_MDT_ConfigurationNR }, + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_65_S1AP_optional }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_66_S1AP_id_TraceCollectionEntityURI }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_66_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_URI_Address }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_65_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_66_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_TraceActivation_ExtIEs_1[] = { { 4, 4, asn_IOS_S1AP_TraceActivation_ExtIEs_1_rows } }; -static const long asn_VAL_66_S1AP_id_extended_uEaggregateMaximumBitRateDL = 259; -static const long asn_VAL_66_S1AP_ignore = 1; -static const long asn_VAL_66_S1AP_optional = 0; -static const long asn_VAL_67_S1AP_id_extended_uEaggregateMaximumBitRateUL = 260; +static const long asn_VAL_67_S1AP_id_extended_uEaggregateMaximumBitRateDL = 259; static const long asn_VAL_67_S1AP_ignore = 1; static const long asn_VAL_67_S1AP_optional = 0; +static const long asn_VAL_68_S1AP_id_extended_uEaggregateMaximumBitRateUL = 260; +static const long asn_VAL_68_S1AP_ignore = 1; +static const long asn_VAL_68_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_UEAggregate_MaximumBitrates_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_66_S1AP_id_extended_uEaggregateMaximumBitRateDL }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_66_S1AP_ignore }, - { "&Extension", aioc__type, &asn_DEF_S1AP_ExtendedBitRate }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_66_S1AP_optional }, - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_67_S1AP_id_extended_uEaggregateMaximumBitRateUL }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_67_S1AP_id_extended_uEaggregateMaximumBitRateDL }, { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_67_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_ExtendedBitRate }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_67_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_67_S1AP_optional }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_68_S1AP_id_extended_uEaggregateMaximumBitRateUL }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_68_S1AP_ignore }, + { "&Extension", aioc__type, &asn_DEF_S1AP_ExtendedBitRate }, + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_68_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_UEAggregate_MaximumBitrates_ExtIEs_1[] = { { 2, 4, asn_IOS_S1AP_UEAggregate_MaximumBitrates_ExtIEs_1_rows } }; -static const long asn_VAL_68_S1AP_id_serviceType = 276; -static const long asn_VAL_68_S1AP_ignore = 1; -static const long asn_VAL_68_S1AP_optional = 0; +static const long asn_VAL_69_S1AP_id_serviceType = 276; +static const long asn_VAL_69_S1AP_ignore = 1; +static const long asn_VAL_69_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_UEAppLayerMeasConfig_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_68_S1AP_id_serviceType }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_68_S1AP_ignore }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_69_S1AP_id_serviceType }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_69_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_ServiceType }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_68_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_69_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_UEAppLayerMeasConfig_ExtIEs_1[] = { { 1, 4, asn_IOS_S1AP_UEAppLayerMeasConfig_ExtIEs_1_rows } }; -static const long asn_VAL_69_S1AP_id_PSCellInformation = 288; -static const long asn_VAL_69_S1AP_ignore = 1; -static const long asn_VAL_69_S1AP_optional = 0; +static const long asn_VAL_70_S1AP_id_PSCellInformation = 288; +static const long asn_VAL_70_S1AP_ignore = 1; +static const long asn_VAL_70_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_UserLocationInformation_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_69_S1AP_id_PSCellInformation }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_69_S1AP_ignore }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_70_S1AP_id_PSCellInformation }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_70_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_PSCellInformation }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_69_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_70_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_UserLocationInformation_ExtIEs_1[] = { { 1, 4, asn_IOS_S1AP_UserLocationInformation_ExtIEs_1_rows } }; -static const long asn_VAL_70_S1AP_id_eNBX2ExtendedTransportLayerAddresses = 153; -static const long asn_VAL_70_S1AP_ignore = 1; -static const long asn_VAL_70_S1AP_optional = 0; -static const long asn_VAL_71_S1AP_id_eNBIndirectX2TransportLayerAddresses = 193; +static const long asn_VAL_71_S1AP_id_eNBX2ExtendedTransportLayerAddresses = 153; static const long asn_VAL_71_S1AP_ignore = 1; static const long asn_VAL_71_S1AP_optional = 0; +static const long asn_VAL_72_S1AP_id_eNBIndirectX2TransportLayerAddresses = 193; +static const long asn_VAL_72_S1AP_ignore = 1; +static const long asn_VAL_72_S1AP_optional = 0; static const asn_ioc_cell_t asn_IOS_S1AP_X2TNLConfigurationInfo_ExtIEs_1_rows[] = { - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_70_S1AP_id_eNBX2ExtendedTransportLayerAddresses }, - { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_70_S1AP_ignore }, - { "&Extension", aioc__type, &asn_DEF_S1AP_ENBX2ExtTLAs }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_70_S1AP_optional }, - { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_71_S1AP_id_eNBIndirectX2TransportLayerAddresses }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_71_S1AP_id_eNBX2ExtendedTransportLayerAddresses }, { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_71_S1AP_ignore }, + { "&Extension", aioc__type, &asn_DEF_S1AP_ENBX2ExtTLAs }, + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_71_S1AP_optional }, + { "&id", aioc__value, &asn_DEF_S1AP_ProtocolExtensionID, &asn_VAL_72_S1AP_id_eNBIndirectX2TransportLayerAddresses }, + { "&criticality", aioc__value, &asn_DEF_S1AP_Criticality, &asn_VAL_72_S1AP_ignore }, { "&Extension", aioc__type, &asn_DEF_S1AP_ENBIndirectX2TransportLayerAddresses }, - { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_71_S1AP_optional } + { "&presence", aioc__value, &asn_DEF_S1AP_Presence, &asn_VAL_72_S1AP_optional } }; static const asn_ioc_set_t asn_IOS_S1AP_X2TNLConfigurationInfo_ExtIEs_1[] = { { 2, 4, asn_IOS_S1AP_X2TNLConfigurationInfo_ExtIEs_1_rows } @@ -32262,14 +32269,32 @@ static asn_TYPE_member_t asn_MBR_S1AP_extensionValue_496[] = { 0, 0, /* No default value */ "SourceNodeID" }, + { ATF_NOFLAGS, 0, offsetof(struct S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue, choice.EmergencyIndicator), + (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), + 0, + &asn_DEF_S1AP_EmergencyIndicator, + 0, + { +#if !defined(ASN_DISABLE_OER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ +#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) + 0, +#endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ + 0 + }, + 0, 0, /* No default value */ + "EmergencyIndicator" + }, }; -static const unsigned asn_MAP_S1AP_extensionValue_to_canonical_496[] = { 0, 3, 1, 2, 4, 5, 6 }; -static const unsigned asn_MAP_S1AP_extensionValue_from_canonical_496[] = { 0, 2, 3, 1, 4, 5, 6 }; +static const unsigned asn_MAP_S1AP_extensionValue_to_canonical_496[] = { 0, 3, 1, 2, 7, 4, 5, 6 }; +static const unsigned asn_MAP_S1AP_extensionValue_from_canonical_496[] = { 0, 2, 3, 1, 5, 6, 7, 4 }; static const asn_TYPE_tag2member_t asn_MAP_S1AP_extensionValue_tag2el_496[] = { { (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)), 0, 0, 1 }, /* MobilityInformation */ { (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)), 3, -1, 0 }, /* AdditionalRRMPriorityIndex */ { (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 1, 0, 0 }, /* UE-HistoryInformationFromTheUE */ - { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, 0, 0 }, /* IMSvoiceEPSfallbackfrom5G */ + { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, 0, 1 }, /* IMSvoiceEPSfallbackfrom5G */ + { (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 7, -1, 0 }, /* EmergencyIndicator */ { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 4, 0, 1 }, /* ContextatSource */ { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 5, -1, 0 }, /* IntersystemMeasurementConfiguration */ { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 6, 0, 0 }, /* sourceNgRanNode-ID */ @@ -32281,7 +32306,7 @@ static asn_CHOICE_specifics_t asn_SPC_S1AP_extensionValue_specs_496 = { offsetof(struct S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue, present), sizeof(((struct S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue *)0)->present), asn_MAP_S1AP_extensionValue_tag2el_496, - 8, /* Count of tags in the map */ + 9, /* Count of tags in the map */ asn_MAP_S1AP_extensionValue_to_canonical_496, asn_MAP_S1AP_extensionValue_from_canonical_496, -1 /* Extensions start */ @@ -32305,7 +32330,7 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_extensionValue_496 = { OPEN_TYPE_constraint }, asn_MBR_S1AP_extensionValue_496, - 7, /* Elements count */ + 8, /* Elements count */ &asn_SPC_S1AP_extensionValue_specs_496 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_ProtocolExtensionField.h b/lib/asn1c/s1ap/S1AP_ProtocolExtensionField.h index f1332181e..0da1dd780 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolExtensionField.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolExtensionField.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -62,6 +62,7 @@ #include "S1AP_ContextatSource.h" #include "S1AP_IntersystemMeasurementConfiguration.h" #include "S1AP_SourceNodeID.h" +#include "S1AP_EmergencyIndicator.h" #include "S1AP_GUMMEIType.h" #include "S1AP_RAT-Type.h" #include "S1AP_MutingAvailabilityIndication.h" @@ -612,7 +613,8 @@ typedef enum S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionVa S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue_PR_AdditionalRRMPriorityIndex, S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue_PR_ContextatSource, S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue_PR_IntersystemMeasurementConfiguration, - S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue_PR_SourceNodeID + S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue_PR_SourceNodeID, + S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue_PR_EmergencyIndicator } S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs__extensionValue_PR; typedef enum S1AP_SourceNgRanNode_ID_ExtIEs__extensionValue_PR { S1AP_SourceNgRanNode_ID_ExtIEs__extensionValue_PR_NOTHING /* No components present */ @@ -2681,6 +2683,7 @@ typedef struct S1AP_SourceeNB_ToTargeteNB_TransparentContainer_ExtIEs { S1AP_ContextatSource_t ContextatSource; S1AP_IntersystemMeasurementConfiguration_t IntersystemMeasurementConfiguration; S1AP_SourceNodeID_t SourceNodeID; + S1AP_EmergencyIndicator_t EmergencyIndicator; } choice; /* Context for parsing across buffer boundaries */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolExtensionID.c b/lib/asn1c/s1ap/S1AP_ProtocolExtensionID.c index 4748f2b53..a731138d0 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolExtensionID.c +++ b/lib/asn1c/s1ap/S1AP_ProtocolExtensionID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolExtensionID.h b/lib/asn1c/s1ap/S1AP_ProtocolExtensionID.h index 6fd412803..5104a1804 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolExtensionID.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolExtensionID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-Container.c b/lib/asn1c/s1ap/S1AP_ProtocolIE-Container.c index f162f9534..66c655426 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-Container.c +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-Container.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -9,685 +9,685 @@ #include "S1AP_ProtocolIE-Field.h" #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P0_constr_1 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P0_constr_1 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P1_constr_3 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P1_constr_3 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P2_constr_5 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P2_constr_5 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P3_constr_7 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P3_constr_7 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P4_constr_9 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P4_constr_9 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P5_constr_11 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P5_constr_11 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P6_constr_13 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P6_constr_13 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P7_constr_15 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P7_constr_15 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P8_constr_17 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P8_constr_17 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P9_constr_19 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P9_constr_19 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P10_constr_21 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P10_constr_21 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P11_constr_23 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P11_constr_23 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P12_constr_25 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P12_constr_25 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P13_constr_27 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P13_constr_27 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P14_constr_29 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P14_constr_29 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P15_constr_31 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P15_constr_31 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P16_constr_33 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P16_constr_33 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P17_constr_35 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P17_constr_35 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P18_constr_37 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P18_constr_37 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P19_constr_39 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P19_constr_39 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P20_constr_41 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P20_constr_41 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P21_constr_43 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P21_constr_43 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P22_constr_45 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P22_constr_45 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P23_constr_47 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P23_constr_47 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P24_constr_49 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P24_constr_49 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P25_constr_51 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P25_constr_51 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P26_constr_53 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P26_constr_53 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P27_constr_55 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P27_constr_55 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P28_constr_57 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P28_constr_57 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P29_constr_59 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P29_constr_59 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P30_constr_61 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P30_constr_61 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P31_constr_63 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P31_constr_63 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P32_constr_65 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P32_constr_65 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P33_constr_67 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P33_constr_67 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P34_constr_69 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P34_constr_69 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P35_constr_71 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P35_constr_71 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P36_constr_73 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P36_constr_73 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P37_constr_75 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P37_constr_75 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P38_constr_77 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P38_constr_77 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P39_constr_79 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P39_constr_79 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P40_constr_81 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P40_constr_81 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P41_constr_83 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P41_constr_83 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P42_constr_85 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P42_constr_85 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P43_constr_87 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P43_constr_87 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P44_constr_89 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P44_constr_89 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P45_constr_91 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P45_constr_91 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P46_constr_93 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P46_constr_93 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P47_constr_95 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P47_constr_95 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P48_constr_97 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P48_constr_97 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P49_constr_99 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P49_constr_99 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P50_constr_101 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P50_constr_101 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P51_constr_103 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P51_constr_103 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P52_constr_105 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P52_constr_105 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P53_constr_107 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P53_constr_107 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P54_constr_109 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P54_constr_109 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P55_constr_111 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P55_constr_111 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P56_constr_113 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P56_constr_113 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P57_constr_115 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P57_constr_115 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P58_constr_117 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P58_constr_117 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P59_constr_119 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P59_constr_119 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P60_constr_121 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P60_constr_121 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P61_constr_123 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P61_constr_123 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P62_constr_125 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P62_constr_125 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P63_constr_127 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P63_constr_127 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P64_constr_129 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P64_constr_129 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P65_constr_131 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P65_constr_131 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P66_constr_133 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P66_constr_133 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P67_constr_135 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P67_constr_135 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P68_constr_137 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P68_constr_137 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P69_constr_139 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P69_constr_139 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P70_constr_141 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P70_constr_141 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P71_constr_143 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P71_constr_143 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P72_constr_145 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P72_constr_145 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P73_constr_147 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P73_constr_147 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P74_constr_149 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P74_constr_149 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P75_constr_151 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P75_constr_151 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P76_constr_153 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P76_constr_153 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P77_constr_155 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P77_constr_155 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P78_constr_157 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P78_constr_157 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P79_constr_159 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P79_constr_159 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P80_constr_161 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P80_constr_161 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P81_constr_163 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P81_constr_163 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P82_constr_165 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P82_constr_165 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P83_constr_167 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P83_constr_167 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P84_constr_169 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P84_constr_169 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P85_constr_171 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P85_constr_171 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P86_constr_173 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P86_constr_173 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P87_constr_175 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P87_constr_175 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P88_constr_177 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P88_constr_177 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P89_constr_179 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P89_constr_179 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P90_constr_181 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P90_constr_181 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P91_constr_183 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P91_constr_183 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P92_constr_185 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P92_constr_185 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P93_constr_187 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P93_constr_187 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P94_constr_189 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P94_constr_189 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P95_constr_191 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P95_constr_191 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P96_constr_193 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P96_constr_193 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 16, 16, 0, 65535 } /* (SIZE(0..65535)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P0_1[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P0_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -706,39 +706,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P0_1[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P0_specs_1 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P0), - offsetof(struct S1AP_ProtocolIE_Container_7838P0, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P0_specs_1 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P0), + offsetof(struct S1AP_ProtocolIE_Container_7847P0, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P0 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P0 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P0_tags_1, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P0_tags_1) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P0_tags_1[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P0_tags_1, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P0_tags_1) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P0_tags_1, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P0_tags_1) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P0_tags_1, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P0_tags_1) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P0_constr_1, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P0_constr_1, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P0_1, + asn_MBR_S1AP_ProtocolIE_Container_7847P0_1, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P0_specs_1 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P0_specs_1 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P1_3[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P1_3[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -757,39 +757,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P1_3[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P1_tags_3[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P1_tags_3[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P1_specs_3 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P1), - offsetof(struct S1AP_ProtocolIE_Container_7838P1, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P1_specs_3 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P1), + offsetof(struct S1AP_ProtocolIE_Container_7847P1, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P1 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P1 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P1_tags_3, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P1_tags_3) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P1_tags_3[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P1_tags_3, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P1_tags_3) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P1_tags_3[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P1_tags_3, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P1_tags_3) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P1_tags_3[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P1_tags_3, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P1_tags_3) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P1_tags_3[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P1_constr_3, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P1_constr_3, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P1_3, + asn_MBR_S1AP_ProtocolIE_Container_7847P1_3, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P1_specs_3 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P1_specs_3 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P2_5[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P2_5[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -808,39 +808,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P2_5[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P2_tags_5[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P2_tags_5[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P2_specs_5 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P2), - offsetof(struct S1AP_ProtocolIE_Container_7838P2, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P2_specs_5 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P2), + offsetof(struct S1AP_ProtocolIE_Container_7847P2, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P2 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P2 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P2_tags_5, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P2_tags_5) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P2_tags_5[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P2_tags_5, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P2_tags_5) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P2_tags_5[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P2_tags_5, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P2_tags_5) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P2_tags_5[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P2_tags_5, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P2_tags_5) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P2_tags_5[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P2_constr_5, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P2_constr_5, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P2_5, + asn_MBR_S1AP_ProtocolIE_Container_7847P2_5, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P2_specs_5 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P2_specs_5 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P3_7[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P3_7[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -859,39 +859,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P3_7[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P3_tags_7[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P3_tags_7[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P3_specs_7 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P3), - offsetof(struct S1AP_ProtocolIE_Container_7838P3, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P3_specs_7 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P3), + offsetof(struct S1AP_ProtocolIE_Container_7847P3, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P3 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P3 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P3_tags_7, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P3_tags_7) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P3_tags_7[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P3_tags_7, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P3_tags_7) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P3_tags_7[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P3_tags_7, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P3_tags_7) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P3_tags_7[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P3_tags_7, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P3_tags_7) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P3_tags_7[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P3_constr_7, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P3_constr_7, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P3_7, + asn_MBR_S1AP_ProtocolIE_Container_7847P3_7, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P3_specs_7 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P3_specs_7 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P4_9[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P4_9[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -910,39 +910,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P4_9[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P4_tags_9[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P4_tags_9[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P4_specs_9 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P4), - offsetof(struct S1AP_ProtocolIE_Container_7838P4, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P4_specs_9 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P4), + offsetof(struct S1AP_ProtocolIE_Container_7847P4, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P4 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P4 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P4_tags_9, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P4_tags_9) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P4_tags_9[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P4_tags_9, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P4_tags_9) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P4_tags_9[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P4_tags_9, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P4_tags_9) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P4_tags_9[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P4_tags_9, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P4_tags_9) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P4_tags_9[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P4_constr_9, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P4_constr_9, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P4_9, + asn_MBR_S1AP_ProtocolIE_Container_7847P4_9, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P4_specs_9 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P4_specs_9 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P5_11[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P5_11[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -961,39 +961,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P5_11[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P5_tags_11[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P5_tags_11[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P5_specs_11 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P5), - offsetof(struct S1AP_ProtocolIE_Container_7838P5, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P5_specs_11 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P5), + offsetof(struct S1AP_ProtocolIE_Container_7847P5, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P5 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P5 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P5_tags_11, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P5_tags_11) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P5_tags_11[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P5_tags_11, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P5_tags_11) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P5_tags_11[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P5_tags_11, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P5_tags_11) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P5_tags_11[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P5_tags_11, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P5_tags_11) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P5_tags_11[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P5_constr_11, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P5_constr_11, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P5_11, + asn_MBR_S1AP_ProtocolIE_Container_7847P5_11, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P5_specs_11 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P5_specs_11 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P6_13[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P6_13[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1012,39 +1012,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P6_13[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P6_tags_13[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P6_tags_13[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P6_specs_13 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P6), - offsetof(struct S1AP_ProtocolIE_Container_7838P6, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P6_specs_13 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P6), + offsetof(struct S1AP_ProtocolIE_Container_7847P6, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P6 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P6 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P6_tags_13, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P6_tags_13) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P6_tags_13[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P6_tags_13, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P6_tags_13) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P6_tags_13[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P6_tags_13, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P6_tags_13) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P6_tags_13[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P6_tags_13, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P6_tags_13) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P6_tags_13[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P6_constr_13, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P6_constr_13, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P6_13, + asn_MBR_S1AP_ProtocolIE_Container_7847P6_13, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P6_specs_13 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P6_specs_13 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P7_15[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P7_15[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1063,39 +1063,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P7_15[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P7_tags_15[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P7_tags_15[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P7_specs_15 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P7), - offsetof(struct S1AP_ProtocolIE_Container_7838P7, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P7_specs_15 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P7), + offsetof(struct S1AP_ProtocolIE_Container_7847P7, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P7 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P7 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P7_tags_15, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P7_tags_15) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P7_tags_15[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P7_tags_15, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P7_tags_15) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P7_tags_15[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P7_tags_15, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P7_tags_15) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P7_tags_15[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P7_tags_15, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P7_tags_15) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P7_tags_15[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P7_constr_15, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P7_constr_15, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P7_15, + asn_MBR_S1AP_ProtocolIE_Container_7847P7_15, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P7_specs_15 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P7_specs_15 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P8_17[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P8_17[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1114,39 +1114,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P8_17[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P8_tags_17[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P8_tags_17[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P8_specs_17 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P8), - offsetof(struct S1AP_ProtocolIE_Container_7838P8, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P8_specs_17 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P8), + offsetof(struct S1AP_ProtocolIE_Container_7847P8, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P8 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P8 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P8_tags_17, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P8_tags_17) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P8_tags_17[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P8_tags_17, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P8_tags_17) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P8_tags_17[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P8_tags_17, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P8_tags_17) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P8_tags_17[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P8_tags_17, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P8_tags_17) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P8_tags_17[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P8_constr_17, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P8_constr_17, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P8_17, + asn_MBR_S1AP_ProtocolIE_Container_7847P8_17, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P8_specs_17 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P8_specs_17 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P9_19[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P9_19[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1165,39 +1165,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P9_19[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P9_tags_19[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P9_tags_19[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P9_specs_19 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P9), - offsetof(struct S1AP_ProtocolIE_Container_7838P9, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P9_specs_19 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P9), + offsetof(struct S1AP_ProtocolIE_Container_7847P9, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P9 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P9 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P9_tags_19, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P9_tags_19) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P9_tags_19[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P9_tags_19, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P9_tags_19) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P9_tags_19[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P9_tags_19, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P9_tags_19) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P9_tags_19[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P9_tags_19, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P9_tags_19) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P9_tags_19[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P9_constr_19, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P9_constr_19, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P9_19, + asn_MBR_S1AP_ProtocolIE_Container_7847P9_19, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P9_specs_19 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P9_specs_19 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P10_21[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P10_21[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1216,39 +1216,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P10_21[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P10_tags_21[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P10_tags_21[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P10_specs_21 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P10), - offsetof(struct S1AP_ProtocolIE_Container_7838P10, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P10_specs_21 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P10), + offsetof(struct S1AP_ProtocolIE_Container_7847P10, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P10 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P10 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P10_tags_21, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P10_tags_21) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P10_tags_21[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P10_tags_21, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P10_tags_21) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P10_tags_21[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P10_tags_21, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P10_tags_21) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P10_tags_21[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P10_tags_21, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P10_tags_21) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P10_tags_21[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P10_constr_21, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P10_constr_21, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P10_21, + asn_MBR_S1AP_ProtocolIE_Container_7847P10_21, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P10_specs_21 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P10_specs_21 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P11_23[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P11_23[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1267,39 +1267,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P11_23[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P11_tags_23[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P11_tags_23[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P11_specs_23 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P11), - offsetof(struct S1AP_ProtocolIE_Container_7838P11, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P11_specs_23 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P11), + offsetof(struct S1AP_ProtocolIE_Container_7847P11, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P11 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P11 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P11_tags_23, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P11_tags_23) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P11_tags_23[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P11_tags_23, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P11_tags_23) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P11_tags_23[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P11_tags_23, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P11_tags_23) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P11_tags_23[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P11_tags_23, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P11_tags_23) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P11_tags_23[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P11_constr_23, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P11_constr_23, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P11_23, + asn_MBR_S1AP_ProtocolIE_Container_7847P11_23, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P11_specs_23 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P11_specs_23 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P12_25[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P12_25[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1318,39 +1318,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P12_25[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P12_tags_25[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P12_tags_25[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P12_specs_25 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P12), - offsetof(struct S1AP_ProtocolIE_Container_7838P12, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P12_specs_25 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P12), + offsetof(struct S1AP_ProtocolIE_Container_7847P12, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P12 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P12 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P12_tags_25, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P12_tags_25) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P12_tags_25[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P12_tags_25, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P12_tags_25) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P12_tags_25[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P12_tags_25, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P12_tags_25) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P12_tags_25[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P12_tags_25, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P12_tags_25) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P12_tags_25[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P12_constr_25, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P12_constr_25, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P12_25, + asn_MBR_S1AP_ProtocolIE_Container_7847P12_25, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P12_specs_25 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P12_specs_25 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P13_27[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P13_27[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1369,39 +1369,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P13_27[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P13_tags_27[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P13_tags_27[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P13_specs_27 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P13), - offsetof(struct S1AP_ProtocolIE_Container_7838P13, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P13_specs_27 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P13), + offsetof(struct S1AP_ProtocolIE_Container_7847P13, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P13 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P13 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P13_tags_27, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P13_tags_27) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P13_tags_27[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P13_tags_27, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P13_tags_27) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P13_tags_27[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P13_tags_27, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P13_tags_27) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P13_tags_27[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P13_tags_27, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P13_tags_27) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P13_tags_27[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P13_constr_27, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P13_constr_27, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P13_27, + asn_MBR_S1AP_ProtocolIE_Container_7847P13_27, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P13_specs_27 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P13_specs_27 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P14_29[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P14_29[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1420,39 +1420,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P14_29[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P14_tags_29[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P14_tags_29[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P14_specs_29 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P14), - offsetof(struct S1AP_ProtocolIE_Container_7838P14, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P14_specs_29 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P14), + offsetof(struct S1AP_ProtocolIE_Container_7847P14, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P14 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P14 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P14_tags_29, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P14_tags_29) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P14_tags_29[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P14_tags_29, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P14_tags_29) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P14_tags_29[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P14_tags_29, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P14_tags_29) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P14_tags_29[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P14_tags_29, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P14_tags_29) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P14_tags_29[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P14_constr_29, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P14_constr_29, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P14_29, + asn_MBR_S1AP_ProtocolIE_Container_7847P14_29, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P14_specs_29 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P14_specs_29 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P15_31[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P15_31[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1471,39 +1471,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P15_31[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P15_tags_31[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P15_tags_31[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P15_specs_31 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P15), - offsetof(struct S1AP_ProtocolIE_Container_7838P15, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P15_specs_31 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P15), + offsetof(struct S1AP_ProtocolIE_Container_7847P15, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P15 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P15 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P15_tags_31, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P15_tags_31) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P15_tags_31[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P15_tags_31, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P15_tags_31) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P15_tags_31[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P15_tags_31, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P15_tags_31) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P15_tags_31[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P15_tags_31, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P15_tags_31) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P15_tags_31[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P15_constr_31, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P15_constr_31, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P15_31, + asn_MBR_S1AP_ProtocolIE_Container_7847P15_31, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P15_specs_31 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P15_specs_31 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P16_33[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P16_33[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1522,39 +1522,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P16_33[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P16_tags_33[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P16_tags_33[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P16_specs_33 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P16), - offsetof(struct S1AP_ProtocolIE_Container_7838P16, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P16_specs_33 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P16), + offsetof(struct S1AP_ProtocolIE_Container_7847P16, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P16 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P16 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P16_tags_33, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P16_tags_33) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P16_tags_33[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P16_tags_33, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P16_tags_33) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P16_tags_33[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P16_tags_33, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P16_tags_33) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P16_tags_33[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P16_tags_33, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P16_tags_33) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P16_tags_33[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P16_constr_33, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P16_constr_33, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P16_33, + asn_MBR_S1AP_ProtocolIE_Container_7847P16_33, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P16_specs_33 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P16_specs_33 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P17_35[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P17_35[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1573,39 +1573,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P17_35[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P17_tags_35[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P17_tags_35[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P17_specs_35 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P17), - offsetof(struct S1AP_ProtocolIE_Container_7838P17, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P17_specs_35 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P17), + offsetof(struct S1AP_ProtocolIE_Container_7847P17, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P17 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P17 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P17_tags_35, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P17_tags_35) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P17_tags_35[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P17_tags_35, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P17_tags_35) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P17_tags_35[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P17_tags_35, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P17_tags_35) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P17_tags_35[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P17_tags_35, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P17_tags_35) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P17_tags_35[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P17_constr_35, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P17_constr_35, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P17_35, + asn_MBR_S1AP_ProtocolIE_Container_7847P17_35, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P17_specs_35 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P17_specs_35 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P18_37[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P18_37[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1624,39 +1624,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P18_37[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P18_tags_37[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P18_tags_37[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P18_specs_37 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P18), - offsetof(struct S1AP_ProtocolIE_Container_7838P18, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P18_specs_37 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P18), + offsetof(struct S1AP_ProtocolIE_Container_7847P18, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P18 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P18 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P18_tags_37, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P18_tags_37) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P18_tags_37[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P18_tags_37, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P18_tags_37) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P18_tags_37[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P18_tags_37, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P18_tags_37) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P18_tags_37[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P18_tags_37, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P18_tags_37) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P18_tags_37[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P18_constr_37, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P18_constr_37, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P18_37, + asn_MBR_S1AP_ProtocolIE_Container_7847P18_37, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P18_specs_37 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P18_specs_37 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P19_39[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P19_39[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1675,39 +1675,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P19_39[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P19_tags_39[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P19_tags_39[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P19_specs_39 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P19), - offsetof(struct S1AP_ProtocolIE_Container_7838P19, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P19_specs_39 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P19), + offsetof(struct S1AP_ProtocolIE_Container_7847P19, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P19 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P19 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P19_tags_39, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P19_tags_39) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P19_tags_39[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P19_tags_39, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P19_tags_39) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P19_tags_39[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P19_tags_39, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P19_tags_39) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P19_tags_39[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P19_tags_39, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P19_tags_39) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P19_tags_39[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P19_constr_39, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P19_constr_39, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P19_39, + asn_MBR_S1AP_ProtocolIE_Container_7847P19_39, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P19_specs_39 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P19_specs_39 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P20_41[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P20_41[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1726,39 +1726,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P20_41[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P20_tags_41[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P20_tags_41[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P20_specs_41 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P20), - offsetof(struct S1AP_ProtocolIE_Container_7838P20, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P20_specs_41 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P20), + offsetof(struct S1AP_ProtocolIE_Container_7847P20, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P20 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P20 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P20_tags_41, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P20_tags_41) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P20_tags_41[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P20_tags_41, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P20_tags_41) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P20_tags_41[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P20_tags_41, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P20_tags_41) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P20_tags_41[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P20_tags_41, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P20_tags_41) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P20_tags_41[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P20_constr_41, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P20_constr_41, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P20_41, + asn_MBR_S1AP_ProtocolIE_Container_7847P20_41, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P20_specs_41 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P20_specs_41 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P21_43[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P21_43[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1777,39 +1777,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P21_43[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P21_tags_43[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P21_tags_43[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P21_specs_43 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P21), - offsetof(struct S1AP_ProtocolIE_Container_7838P21, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P21_specs_43 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P21), + offsetof(struct S1AP_ProtocolIE_Container_7847P21, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P21 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P21 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P21_tags_43, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P21_tags_43) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P21_tags_43[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P21_tags_43, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P21_tags_43) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P21_tags_43[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P21_tags_43, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P21_tags_43) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P21_tags_43[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P21_tags_43, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P21_tags_43) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P21_tags_43[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P21_constr_43, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P21_constr_43, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P21_43, + asn_MBR_S1AP_ProtocolIE_Container_7847P21_43, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P21_specs_43 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P21_specs_43 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P22_45[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P22_45[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1828,39 +1828,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P22_45[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P22_tags_45[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P22_tags_45[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P22_specs_45 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P22), - offsetof(struct S1AP_ProtocolIE_Container_7838P22, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P22_specs_45 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P22), + offsetof(struct S1AP_ProtocolIE_Container_7847P22, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P22 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P22 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P22_tags_45, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P22_tags_45) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P22_tags_45[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P22_tags_45, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P22_tags_45) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P22_tags_45[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P22_tags_45, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P22_tags_45) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P22_tags_45[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P22_tags_45, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P22_tags_45) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P22_tags_45[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P22_constr_45, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P22_constr_45, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P22_45, + asn_MBR_S1AP_ProtocolIE_Container_7847P22_45, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P22_specs_45 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P22_specs_45 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P23_47[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P23_47[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1879,39 +1879,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P23_47[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P23_tags_47[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P23_tags_47[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P23_specs_47 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P23), - offsetof(struct S1AP_ProtocolIE_Container_7838P23, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P23_specs_47 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P23), + offsetof(struct S1AP_ProtocolIE_Container_7847P23, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P23 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P23 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P23_tags_47, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P23_tags_47) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P23_tags_47[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P23_tags_47, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P23_tags_47) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P23_tags_47[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P23_tags_47, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P23_tags_47) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P23_tags_47[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P23_tags_47, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P23_tags_47) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P23_tags_47[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P23_constr_47, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P23_constr_47, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P23_47, + asn_MBR_S1AP_ProtocolIE_Container_7847P23_47, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P23_specs_47 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P23_specs_47 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P24_49[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P24_49[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1930,39 +1930,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P24_49[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P24_tags_49[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P24_tags_49[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P24_specs_49 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P24), - offsetof(struct S1AP_ProtocolIE_Container_7838P24, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P24_specs_49 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P24), + offsetof(struct S1AP_ProtocolIE_Container_7847P24, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P24 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P24 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P24_tags_49, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P24_tags_49) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P24_tags_49[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P24_tags_49, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P24_tags_49) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P24_tags_49[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P24_tags_49, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P24_tags_49) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P24_tags_49[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P24_tags_49, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P24_tags_49) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P24_tags_49[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P24_constr_49, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P24_constr_49, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P24_49, + asn_MBR_S1AP_ProtocolIE_Container_7847P24_49, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P24_specs_49 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P24_specs_49 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P25_51[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P25_51[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -1981,39 +1981,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P25_51[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P25_tags_51[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P25_tags_51[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P25_specs_51 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P25), - offsetof(struct S1AP_ProtocolIE_Container_7838P25, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P25_specs_51 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P25), + offsetof(struct S1AP_ProtocolIE_Container_7847P25, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P25 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P25 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P25_tags_51, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P25_tags_51) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P25_tags_51[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P25_tags_51, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P25_tags_51) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P25_tags_51[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P25_tags_51, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P25_tags_51) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P25_tags_51[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P25_tags_51, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P25_tags_51) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P25_tags_51[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P25_constr_51, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P25_constr_51, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P25_51, + asn_MBR_S1AP_ProtocolIE_Container_7847P25_51, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P25_specs_51 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P25_specs_51 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P26_53[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P26_53[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2032,39 +2032,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P26_53[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P26_tags_53[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P26_tags_53[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P26_specs_53 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P26), - offsetof(struct S1AP_ProtocolIE_Container_7838P26, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P26_specs_53 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P26), + offsetof(struct S1AP_ProtocolIE_Container_7847P26, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P26 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P26 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P26_tags_53, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P26_tags_53) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P26_tags_53[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P26_tags_53, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P26_tags_53) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P26_tags_53[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P26_tags_53, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P26_tags_53) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P26_tags_53[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P26_tags_53, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P26_tags_53) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P26_tags_53[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P26_constr_53, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P26_constr_53, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P26_53, + asn_MBR_S1AP_ProtocolIE_Container_7847P26_53, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P26_specs_53 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P26_specs_53 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P27_55[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P27_55[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2083,39 +2083,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P27_55[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P27_tags_55[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P27_tags_55[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P27_specs_55 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P27), - offsetof(struct S1AP_ProtocolIE_Container_7838P27, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P27_specs_55 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P27), + offsetof(struct S1AP_ProtocolIE_Container_7847P27, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P27 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P27 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P27_tags_55, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P27_tags_55) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P27_tags_55[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P27_tags_55, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P27_tags_55) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P27_tags_55[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P27_tags_55, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P27_tags_55) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P27_tags_55[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P27_tags_55, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P27_tags_55) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P27_tags_55[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P27_constr_55, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P27_constr_55, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P27_55, + asn_MBR_S1AP_ProtocolIE_Container_7847P27_55, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P27_specs_55 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P27_specs_55 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P28_57[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P28_57[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2134,39 +2134,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P28_57[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P28_tags_57[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P28_tags_57[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P28_specs_57 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P28), - offsetof(struct S1AP_ProtocolIE_Container_7838P28, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P28_specs_57 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P28), + offsetof(struct S1AP_ProtocolIE_Container_7847P28, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P28 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P28 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P28_tags_57, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P28_tags_57) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P28_tags_57[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P28_tags_57, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P28_tags_57) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P28_tags_57[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P28_tags_57, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P28_tags_57) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P28_tags_57[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P28_tags_57, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P28_tags_57) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P28_tags_57[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P28_constr_57, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P28_constr_57, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P28_57, + asn_MBR_S1AP_ProtocolIE_Container_7847P28_57, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P28_specs_57 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P28_specs_57 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P29_59[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P29_59[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2185,39 +2185,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P29_59[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P29_tags_59[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P29_tags_59[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P29_specs_59 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P29), - offsetof(struct S1AP_ProtocolIE_Container_7838P29, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P29_specs_59 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P29), + offsetof(struct S1AP_ProtocolIE_Container_7847P29, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P29 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P29 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P29_tags_59, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P29_tags_59) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P29_tags_59[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P29_tags_59, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P29_tags_59) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P29_tags_59[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P29_tags_59, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P29_tags_59) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P29_tags_59[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P29_tags_59, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P29_tags_59) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P29_tags_59[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P29_constr_59, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P29_constr_59, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P29_59, + asn_MBR_S1AP_ProtocolIE_Container_7847P29_59, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P29_specs_59 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P29_specs_59 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P30_61[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P30_61[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2236,39 +2236,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P30_61[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P30_tags_61[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P30_tags_61[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P30_specs_61 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P30), - offsetof(struct S1AP_ProtocolIE_Container_7838P30, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P30_specs_61 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P30), + offsetof(struct S1AP_ProtocolIE_Container_7847P30, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P30 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P30 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P30_tags_61, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P30_tags_61) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P30_tags_61[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P30_tags_61, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P30_tags_61) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P30_tags_61[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P30_tags_61, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P30_tags_61) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P30_tags_61[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P30_tags_61, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P30_tags_61) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P30_tags_61[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P30_constr_61, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P30_constr_61, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P30_61, + asn_MBR_S1AP_ProtocolIE_Container_7847P30_61, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P30_specs_61 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P30_specs_61 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P31_63[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P31_63[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2287,39 +2287,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P31_63[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P31_tags_63[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P31_tags_63[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P31_specs_63 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P31), - offsetof(struct S1AP_ProtocolIE_Container_7838P31, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P31_specs_63 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P31), + offsetof(struct S1AP_ProtocolIE_Container_7847P31, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P31 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P31 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P31_tags_63, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P31_tags_63) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P31_tags_63[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P31_tags_63, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P31_tags_63) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P31_tags_63[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P31_tags_63, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P31_tags_63) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P31_tags_63[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P31_tags_63, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P31_tags_63) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P31_tags_63[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P31_constr_63, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P31_constr_63, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P31_63, + asn_MBR_S1AP_ProtocolIE_Container_7847P31_63, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P31_specs_63 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P31_specs_63 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P32_65[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P32_65[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2338,39 +2338,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P32_65[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P32_tags_65[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P32_tags_65[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P32_specs_65 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P32), - offsetof(struct S1AP_ProtocolIE_Container_7838P32, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P32_specs_65 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P32), + offsetof(struct S1AP_ProtocolIE_Container_7847P32, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P32 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P32 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P32_tags_65, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P32_tags_65) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P32_tags_65[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P32_tags_65, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P32_tags_65) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P32_tags_65[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P32_tags_65, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P32_tags_65) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P32_tags_65[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P32_tags_65, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P32_tags_65) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P32_tags_65[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P32_constr_65, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P32_constr_65, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P32_65, + asn_MBR_S1AP_ProtocolIE_Container_7847P32_65, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P32_specs_65 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P32_specs_65 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P33_67[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P33_67[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2389,39 +2389,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P33_67[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P33_tags_67[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P33_tags_67[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P33_specs_67 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P33), - offsetof(struct S1AP_ProtocolIE_Container_7838P33, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P33_specs_67 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P33), + offsetof(struct S1AP_ProtocolIE_Container_7847P33, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P33 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P33 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P33_tags_67, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P33_tags_67) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P33_tags_67[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P33_tags_67, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P33_tags_67) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P33_tags_67[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P33_tags_67, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P33_tags_67) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P33_tags_67[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P33_tags_67, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P33_tags_67) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P33_tags_67[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P33_constr_67, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P33_constr_67, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P33_67, + asn_MBR_S1AP_ProtocolIE_Container_7847P33_67, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P33_specs_67 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P33_specs_67 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P34_69[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P34_69[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2440,39 +2440,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P34_69[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P34_tags_69[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P34_tags_69[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P34_specs_69 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P34), - offsetof(struct S1AP_ProtocolIE_Container_7838P34, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P34_specs_69 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P34), + offsetof(struct S1AP_ProtocolIE_Container_7847P34, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P34 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P34 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P34_tags_69, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P34_tags_69) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P34_tags_69[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P34_tags_69, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P34_tags_69) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P34_tags_69[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P34_tags_69, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P34_tags_69) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P34_tags_69[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P34_tags_69, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P34_tags_69) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P34_tags_69[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P34_constr_69, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P34_constr_69, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P34_69, + asn_MBR_S1AP_ProtocolIE_Container_7847P34_69, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P34_specs_69 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P34_specs_69 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P35_71[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P35_71[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2491,39 +2491,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P35_71[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P35_tags_71[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P35_tags_71[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P35_specs_71 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P35), - offsetof(struct S1AP_ProtocolIE_Container_7838P35, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P35_specs_71 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P35), + offsetof(struct S1AP_ProtocolIE_Container_7847P35, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P35 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P35 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P35_tags_71, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P35_tags_71) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P35_tags_71[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P35_tags_71, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P35_tags_71) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P35_tags_71[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P35_tags_71, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P35_tags_71) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P35_tags_71[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P35_tags_71, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P35_tags_71) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P35_tags_71[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P35_constr_71, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P35_constr_71, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P35_71, + asn_MBR_S1AP_ProtocolIE_Container_7847P35_71, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P35_specs_71 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P35_specs_71 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P36_73[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P36_73[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2542,39 +2542,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P36_73[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P36_tags_73[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P36_tags_73[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P36_specs_73 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P36), - offsetof(struct S1AP_ProtocolIE_Container_7838P36, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P36_specs_73 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P36), + offsetof(struct S1AP_ProtocolIE_Container_7847P36, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P36 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P36 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P36_tags_73, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P36_tags_73) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P36_tags_73[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P36_tags_73, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P36_tags_73) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P36_tags_73[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P36_tags_73, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P36_tags_73) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P36_tags_73[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P36_tags_73, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P36_tags_73) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P36_tags_73[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P36_constr_73, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P36_constr_73, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P36_73, + asn_MBR_S1AP_ProtocolIE_Container_7847P36_73, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P36_specs_73 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P36_specs_73 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P37_75[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P37_75[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2593,39 +2593,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P37_75[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P37_tags_75[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P37_tags_75[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P37_specs_75 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P37), - offsetof(struct S1AP_ProtocolIE_Container_7838P37, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P37_specs_75 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P37), + offsetof(struct S1AP_ProtocolIE_Container_7847P37, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P37 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P37 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P37_tags_75, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P37_tags_75) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P37_tags_75[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P37_tags_75, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P37_tags_75) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P37_tags_75[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P37_tags_75, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P37_tags_75) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P37_tags_75[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P37_tags_75, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P37_tags_75) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P37_tags_75[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P37_constr_75, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P37_constr_75, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P37_75, + asn_MBR_S1AP_ProtocolIE_Container_7847P37_75, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P37_specs_75 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P37_specs_75 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P38_77[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P38_77[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2644,39 +2644,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P38_77[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P38_tags_77[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P38_tags_77[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P38_specs_77 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P38), - offsetof(struct S1AP_ProtocolIE_Container_7838P38, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P38_specs_77 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P38), + offsetof(struct S1AP_ProtocolIE_Container_7847P38, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P38 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P38 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P38_tags_77, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P38_tags_77) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P38_tags_77[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P38_tags_77, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P38_tags_77) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P38_tags_77[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P38_tags_77, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P38_tags_77) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P38_tags_77[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P38_tags_77, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P38_tags_77) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P38_tags_77[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P38_constr_77, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P38_constr_77, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P38_77, + asn_MBR_S1AP_ProtocolIE_Container_7847P38_77, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P38_specs_77 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P38_specs_77 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P39_79[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P39_79[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2695,39 +2695,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P39_79[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P39_tags_79[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P39_tags_79[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P39_specs_79 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P39), - offsetof(struct S1AP_ProtocolIE_Container_7838P39, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P39_specs_79 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P39), + offsetof(struct S1AP_ProtocolIE_Container_7847P39, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P39 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P39 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P39_tags_79, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P39_tags_79) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P39_tags_79[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P39_tags_79, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P39_tags_79) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P39_tags_79[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P39_tags_79, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P39_tags_79) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P39_tags_79[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P39_tags_79, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P39_tags_79) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P39_tags_79[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P39_constr_79, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P39_constr_79, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P39_79, + asn_MBR_S1AP_ProtocolIE_Container_7847P39_79, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P39_specs_79 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P39_specs_79 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P40_81[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P40_81[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2746,39 +2746,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P40_81[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P40_tags_81[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P40_tags_81[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P40_specs_81 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P40), - offsetof(struct S1AP_ProtocolIE_Container_7838P40, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P40_specs_81 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P40), + offsetof(struct S1AP_ProtocolIE_Container_7847P40, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P40 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P40 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P40_tags_81, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P40_tags_81) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P40_tags_81[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P40_tags_81, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P40_tags_81) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P40_tags_81[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P40_tags_81, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P40_tags_81) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P40_tags_81[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P40_tags_81, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P40_tags_81) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P40_tags_81[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P40_constr_81, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P40_constr_81, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P40_81, + asn_MBR_S1AP_ProtocolIE_Container_7847P40_81, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P40_specs_81 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P40_specs_81 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P41_83[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P41_83[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2797,39 +2797,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P41_83[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P41_tags_83[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P41_tags_83[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P41_specs_83 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P41), - offsetof(struct S1AP_ProtocolIE_Container_7838P41, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P41_specs_83 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P41), + offsetof(struct S1AP_ProtocolIE_Container_7847P41, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P41 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P41 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P41_tags_83, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P41_tags_83) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P41_tags_83[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P41_tags_83, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P41_tags_83) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P41_tags_83[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P41_tags_83, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P41_tags_83) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P41_tags_83[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P41_tags_83, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P41_tags_83) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P41_tags_83[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P41_constr_83, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P41_constr_83, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P41_83, + asn_MBR_S1AP_ProtocolIE_Container_7847P41_83, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P41_specs_83 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P41_specs_83 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P42_85[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P42_85[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2848,39 +2848,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P42_85[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P42_tags_85[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P42_tags_85[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P42_specs_85 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P42), - offsetof(struct S1AP_ProtocolIE_Container_7838P42, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P42_specs_85 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P42), + offsetof(struct S1AP_ProtocolIE_Container_7847P42, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P42 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P42 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P42_tags_85, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P42_tags_85) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P42_tags_85[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P42_tags_85, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P42_tags_85) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P42_tags_85[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P42_tags_85, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P42_tags_85) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P42_tags_85[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P42_tags_85, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P42_tags_85) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P42_tags_85[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P42_constr_85, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P42_constr_85, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P42_85, + asn_MBR_S1AP_ProtocolIE_Container_7847P42_85, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P42_specs_85 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P42_specs_85 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P43_87[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P43_87[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2899,39 +2899,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P43_87[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P43_tags_87[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P43_tags_87[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P43_specs_87 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P43), - offsetof(struct S1AP_ProtocolIE_Container_7838P43, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P43_specs_87 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P43), + offsetof(struct S1AP_ProtocolIE_Container_7847P43, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P43 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P43 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P43_tags_87, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P43_tags_87) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P43_tags_87[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P43_tags_87, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P43_tags_87) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P43_tags_87[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P43_tags_87, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P43_tags_87) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P43_tags_87[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P43_tags_87, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P43_tags_87) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P43_tags_87[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P43_constr_87, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P43_constr_87, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P43_87, + asn_MBR_S1AP_ProtocolIE_Container_7847P43_87, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P43_specs_87 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P43_specs_87 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P44_89[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P44_89[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -2950,39 +2950,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P44_89[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P44_tags_89[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P44_tags_89[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P44_specs_89 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P44), - offsetof(struct S1AP_ProtocolIE_Container_7838P44, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P44_specs_89 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P44), + offsetof(struct S1AP_ProtocolIE_Container_7847P44, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P44 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P44 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P44_tags_89, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P44_tags_89) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P44_tags_89[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P44_tags_89, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P44_tags_89) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P44_tags_89[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P44_tags_89, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P44_tags_89) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P44_tags_89[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P44_tags_89, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P44_tags_89) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P44_tags_89[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P44_constr_89, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P44_constr_89, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P44_89, + asn_MBR_S1AP_ProtocolIE_Container_7847P44_89, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P44_specs_89 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P44_specs_89 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P45_91[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P45_91[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3001,39 +3001,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P45_91[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P45_tags_91[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P45_tags_91[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P45_specs_91 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P45), - offsetof(struct S1AP_ProtocolIE_Container_7838P45, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P45_specs_91 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P45), + offsetof(struct S1AP_ProtocolIE_Container_7847P45, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P45 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P45 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P45_tags_91, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P45_tags_91) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P45_tags_91[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P45_tags_91, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P45_tags_91) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P45_tags_91[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P45_tags_91, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P45_tags_91) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P45_tags_91[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P45_tags_91, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P45_tags_91) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P45_tags_91[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P45_constr_91, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P45_constr_91, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P45_91, + asn_MBR_S1AP_ProtocolIE_Container_7847P45_91, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P45_specs_91 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P45_specs_91 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P46_93[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P46_93[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3052,39 +3052,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P46_93[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P46_tags_93[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P46_tags_93[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P46_specs_93 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P46), - offsetof(struct S1AP_ProtocolIE_Container_7838P46, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P46_specs_93 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P46), + offsetof(struct S1AP_ProtocolIE_Container_7847P46, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P46 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P46 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P46_tags_93, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P46_tags_93) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P46_tags_93[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P46_tags_93, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P46_tags_93) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P46_tags_93[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P46_tags_93, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P46_tags_93) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P46_tags_93[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P46_tags_93, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P46_tags_93) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P46_tags_93[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P46_constr_93, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P46_constr_93, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P46_93, + asn_MBR_S1AP_ProtocolIE_Container_7847P46_93, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P46_specs_93 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P46_specs_93 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P47_95[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P47_95[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3103,39 +3103,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P47_95[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P47_tags_95[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P47_tags_95[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P47_specs_95 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P47), - offsetof(struct S1AP_ProtocolIE_Container_7838P47, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P47_specs_95 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P47), + offsetof(struct S1AP_ProtocolIE_Container_7847P47, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P47 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P47 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P47_tags_95, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P47_tags_95) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P47_tags_95[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P47_tags_95, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P47_tags_95) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P47_tags_95[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P47_tags_95, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P47_tags_95) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P47_tags_95[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P47_tags_95, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P47_tags_95) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P47_tags_95[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P47_constr_95, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P47_constr_95, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P47_95, + asn_MBR_S1AP_ProtocolIE_Container_7847P47_95, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P47_specs_95 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P47_specs_95 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P48_97[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P48_97[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3154,39 +3154,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P48_97[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P48_tags_97[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P48_tags_97[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P48_specs_97 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P48), - offsetof(struct S1AP_ProtocolIE_Container_7838P48, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P48_specs_97 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P48), + offsetof(struct S1AP_ProtocolIE_Container_7847P48, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P48 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P48 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P48_tags_97, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P48_tags_97) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P48_tags_97[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P48_tags_97, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P48_tags_97) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P48_tags_97[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P48_tags_97, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P48_tags_97) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P48_tags_97[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P48_tags_97, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P48_tags_97) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P48_tags_97[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P48_constr_97, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P48_constr_97, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P48_97, + asn_MBR_S1AP_ProtocolIE_Container_7847P48_97, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P48_specs_97 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P48_specs_97 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P49_99[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P49_99[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3205,39 +3205,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P49_99[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P49_tags_99[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P49_tags_99[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P49_specs_99 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P49), - offsetof(struct S1AP_ProtocolIE_Container_7838P49, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P49_specs_99 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P49), + offsetof(struct S1AP_ProtocolIE_Container_7847P49, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P49 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P49 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P49_tags_99, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P49_tags_99) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P49_tags_99[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P49_tags_99, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P49_tags_99) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P49_tags_99[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P49_tags_99, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P49_tags_99) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P49_tags_99[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P49_tags_99, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P49_tags_99) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P49_tags_99[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P49_constr_99, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P49_constr_99, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P49_99, + asn_MBR_S1AP_ProtocolIE_Container_7847P49_99, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P49_specs_99 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P49_specs_99 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P50_101[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P50_101[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3256,39 +3256,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P50_101[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P50_tags_101[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P50_tags_101[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P50_specs_101 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P50), - offsetof(struct S1AP_ProtocolIE_Container_7838P50, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P50_specs_101 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P50), + offsetof(struct S1AP_ProtocolIE_Container_7847P50, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P50 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P50 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P50_tags_101, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P50_tags_101) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P50_tags_101[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P50_tags_101, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P50_tags_101) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P50_tags_101[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P50_tags_101, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P50_tags_101) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P50_tags_101[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P50_tags_101, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P50_tags_101) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P50_tags_101[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P50_constr_101, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P50_constr_101, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P50_101, + asn_MBR_S1AP_ProtocolIE_Container_7847P50_101, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P50_specs_101 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P50_specs_101 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P51_103[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P51_103[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3307,39 +3307,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P51_103[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P51_tags_103[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P51_tags_103[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P51_specs_103 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P51), - offsetof(struct S1AP_ProtocolIE_Container_7838P51, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P51_specs_103 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P51), + offsetof(struct S1AP_ProtocolIE_Container_7847P51, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P51 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P51 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P51_tags_103, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P51_tags_103) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P51_tags_103[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P51_tags_103, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P51_tags_103) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P51_tags_103[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P51_tags_103, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P51_tags_103) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P51_tags_103[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P51_tags_103, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P51_tags_103) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P51_tags_103[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P51_constr_103, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P51_constr_103, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P51_103, + asn_MBR_S1AP_ProtocolIE_Container_7847P51_103, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P51_specs_103 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P51_specs_103 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P52_105[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P52_105[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3358,39 +3358,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P52_105[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P52_tags_105[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P52_tags_105[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P52_specs_105 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P52), - offsetof(struct S1AP_ProtocolIE_Container_7838P52, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P52_specs_105 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P52), + offsetof(struct S1AP_ProtocolIE_Container_7847P52, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P52 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P52 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P52_tags_105, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P52_tags_105) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P52_tags_105[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P52_tags_105, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P52_tags_105) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P52_tags_105[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P52_tags_105, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P52_tags_105) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P52_tags_105[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P52_tags_105, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P52_tags_105) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P52_tags_105[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P52_constr_105, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P52_constr_105, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P52_105, + asn_MBR_S1AP_ProtocolIE_Container_7847P52_105, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P52_specs_105 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P52_specs_105 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P53_107[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P53_107[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3409,39 +3409,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P53_107[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P53_tags_107[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P53_tags_107[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P53_specs_107 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P53), - offsetof(struct S1AP_ProtocolIE_Container_7838P53, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P53_specs_107 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P53), + offsetof(struct S1AP_ProtocolIE_Container_7847P53, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P53 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P53 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P53_tags_107, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P53_tags_107) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P53_tags_107[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P53_tags_107, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P53_tags_107) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P53_tags_107[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P53_tags_107, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P53_tags_107) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P53_tags_107[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P53_tags_107, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P53_tags_107) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P53_tags_107[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P53_constr_107, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P53_constr_107, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P53_107, + asn_MBR_S1AP_ProtocolIE_Container_7847P53_107, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P53_specs_107 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P53_specs_107 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P54_109[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P54_109[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3460,39 +3460,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P54_109[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P54_tags_109[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P54_tags_109[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P54_specs_109 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P54), - offsetof(struct S1AP_ProtocolIE_Container_7838P54, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P54_specs_109 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P54), + offsetof(struct S1AP_ProtocolIE_Container_7847P54, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P54 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P54 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P54_tags_109, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P54_tags_109) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P54_tags_109[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P54_tags_109, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P54_tags_109) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P54_tags_109[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P54_tags_109, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P54_tags_109) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P54_tags_109[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P54_tags_109, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P54_tags_109) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P54_tags_109[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P54_constr_109, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P54_constr_109, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P54_109, + asn_MBR_S1AP_ProtocolIE_Container_7847P54_109, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P54_specs_109 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P54_specs_109 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P55_111[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P55_111[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3511,39 +3511,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P55_111[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P55_tags_111[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P55_tags_111[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P55_specs_111 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P55), - offsetof(struct S1AP_ProtocolIE_Container_7838P55, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P55_specs_111 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P55), + offsetof(struct S1AP_ProtocolIE_Container_7847P55, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P55 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P55 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P55_tags_111, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P55_tags_111) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P55_tags_111[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P55_tags_111, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P55_tags_111) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P55_tags_111[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P55_tags_111, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P55_tags_111) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P55_tags_111[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P55_tags_111, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P55_tags_111) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P55_tags_111[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P55_constr_111, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P55_constr_111, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P55_111, + asn_MBR_S1AP_ProtocolIE_Container_7847P55_111, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P55_specs_111 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P55_specs_111 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P56_113[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P56_113[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3562,39 +3562,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P56_113[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P56_tags_113[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P56_tags_113[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P56_specs_113 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P56), - offsetof(struct S1AP_ProtocolIE_Container_7838P56, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P56_specs_113 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P56), + offsetof(struct S1AP_ProtocolIE_Container_7847P56, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P56 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P56 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P56_tags_113, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P56_tags_113) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P56_tags_113[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P56_tags_113, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P56_tags_113) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P56_tags_113[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P56_tags_113, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P56_tags_113) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P56_tags_113[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P56_tags_113, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P56_tags_113) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P56_tags_113[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P56_constr_113, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P56_constr_113, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P56_113, + asn_MBR_S1AP_ProtocolIE_Container_7847P56_113, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P56_specs_113 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P56_specs_113 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P57_115[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P57_115[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3613,39 +3613,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P57_115[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P57_tags_115[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P57_tags_115[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P57_specs_115 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P57), - offsetof(struct S1AP_ProtocolIE_Container_7838P57, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P57_specs_115 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P57), + offsetof(struct S1AP_ProtocolIE_Container_7847P57, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P57 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P57 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P57_tags_115, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P57_tags_115) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P57_tags_115[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P57_tags_115, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P57_tags_115) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P57_tags_115[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P57_tags_115, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P57_tags_115) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P57_tags_115[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P57_tags_115, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P57_tags_115) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P57_tags_115[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P57_constr_115, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P57_constr_115, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P57_115, + asn_MBR_S1AP_ProtocolIE_Container_7847P57_115, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P57_specs_115 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P57_specs_115 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P58_117[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P58_117[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3664,39 +3664,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P58_117[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P58_tags_117[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P58_tags_117[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P58_specs_117 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P58), - offsetof(struct S1AP_ProtocolIE_Container_7838P58, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P58_specs_117 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P58), + offsetof(struct S1AP_ProtocolIE_Container_7847P58, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P58 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P58 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P58_tags_117, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P58_tags_117) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P58_tags_117[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P58_tags_117, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P58_tags_117) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P58_tags_117[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P58_tags_117, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P58_tags_117) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P58_tags_117[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P58_tags_117, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P58_tags_117) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P58_tags_117[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P58_constr_117, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P58_constr_117, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P58_117, + asn_MBR_S1AP_ProtocolIE_Container_7847P58_117, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P58_specs_117 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P58_specs_117 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P59_119[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P59_119[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3715,39 +3715,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P59_119[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P59_tags_119[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P59_tags_119[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P59_specs_119 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P59), - offsetof(struct S1AP_ProtocolIE_Container_7838P59, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P59_specs_119 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P59), + offsetof(struct S1AP_ProtocolIE_Container_7847P59, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P59 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P59 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P59_tags_119, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P59_tags_119) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P59_tags_119[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P59_tags_119, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P59_tags_119) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P59_tags_119[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P59_tags_119, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P59_tags_119) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P59_tags_119[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P59_tags_119, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P59_tags_119) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P59_tags_119[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P59_constr_119, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P59_constr_119, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P59_119, + asn_MBR_S1AP_ProtocolIE_Container_7847P59_119, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P59_specs_119 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P59_specs_119 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P60_121[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P60_121[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3766,39 +3766,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P60_121[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P60_tags_121[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P60_tags_121[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P60_specs_121 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P60), - offsetof(struct S1AP_ProtocolIE_Container_7838P60, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P60_specs_121 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P60), + offsetof(struct S1AP_ProtocolIE_Container_7847P60, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P60 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P60 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P60_tags_121, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P60_tags_121) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P60_tags_121[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P60_tags_121, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P60_tags_121) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P60_tags_121[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P60_tags_121, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P60_tags_121) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P60_tags_121[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P60_tags_121, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P60_tags_121) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P60_tags_121[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P60_constr_121, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P60_constr_121, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P60_121, + asn_MBR_S1AP_ProtocolIE_Container_7847P60_121, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P60_specs_121 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P60_specs_121 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P61_123[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P61_123[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3817,39 +3817,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P61_123[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P61_tags_123[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P61_tags_123[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P61_specs_123 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P61), - offsetof(struct S1AP_ProtocolIE_Container_7838P61, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P61_specs_123 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P61), + offsetof(struct S1AP_ProtocolIE_Container_7847P61, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P61 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P61 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P61_tags_123, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P61_tags_123) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P61_tags_123[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P61_tags_123, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P61_tags_123) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P61_tags_123[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P61_tags_123, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P61_tags_123) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P61_tags_123[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P61_tags_123, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P61_tags_123) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P61_tags_123[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P61_constr_123, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P61_constr_123, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P61_123, + asn_MBR_S1AP_ProtocolIE_Container_7847P61_123, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P61_specs_123 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P61_specs_123 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P62_125[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P62_125[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3868,39 +3868,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P62_125[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P62_tags_125[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P62_tags_125[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P62_specs_125 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P62), - offsetof(struct S1AP_ProtocolIE_Container_7838P62, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P62_specs_125 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P62), + offsetof(struct S1AP_ProtocolIE_Container_7847P62, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P62 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P62 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P62_tags_125, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P62_tags_125) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P62_tags_125[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P62_tags_125, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P62_tags_125) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P62_tags_125[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P62_tags_125, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P62_tags_125) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P62_tags_125[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P62_tags_125, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P62_tags_125) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P62_tags_125[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P62_constr_125, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P62_constr_125, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P62_125, + asn_MBR_S1AP_ProtocolIE_Container_7847P62_125, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P62_specs_125 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P62_specs_125 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P63_127[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P63_127[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3919,39 +3919,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P63_127[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P63_tags_127[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P63_tags_127[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P63_specs_127 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P63), - offsetof(struct S1AP_ProtocolIE_Container_7838P63, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P63_specs_127 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P63), + offsetof(struct S1AP_ProtocolIE_Container_7847P63, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P63 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P63 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P63_tags_127, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P63_tags_127) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P63_tags_127[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P63_tags_127, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P63_tags_127) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P63_tags_127[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P63_tags_127, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P63_tags_127) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P63_tags_127[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P63_tags_127, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P63_tags_127) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P63_tags_127[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P63_constr_127, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P63_constr_127, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P63_127, + asn_MBR_S1AP_ProtocolIE_Container_7847P63_127, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P63_specs_127 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P63_specs_127 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P64_129[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P64_129[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -3970,39 +3970,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P64_129[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P64_tags_129[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P64_tags_129[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P64_specs_129 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P64), - offsetof(struct S1AP_ProtocolIE_Container_7838P64, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P64_specs_129 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P64), + offsetof(struct S1AP_ProtocolIE_Container_7847P64, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P64 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P64 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P64_tags_129, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P64_tags_129) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P64_tags_129[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P64_tags_129, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P64_tags_129) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P64_tags_129[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P64_tags_129, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P64_tags_129) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P64_tags_129[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P64_tags_129, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P64_tags_129) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P64_tags_129[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P64_constr_129, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P64_constr_129, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P64_129, + asn_MBR_S1AP_ProtocolIE_Container_7847P64_129, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P64_specs_129 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P64_specs_129 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P65_131[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P65_131[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4021,39 +4021,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P65_131[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P65_tags_131[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P65_tags_131[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P65_specs_131 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P65), - offsetof(struct S1AP_ProtocolIE_Container_7838P65, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P65_specs_131 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P65), + offsetof(struct S1AP_ProtocolIE_Container_7847P65, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P65 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P65 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P65_tags_131, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P65_tags_131) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P65_tags_131[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P65_tags_131, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P65_tags_131) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P65_tags_131[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P65_tags_131, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P65_tags_131) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P65_tags_131[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P65_tags_131, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P65_tags_131) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P65_tags_131[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P65_constr_131, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P65_constr_131, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P65_131, + asn_MBR_S1AP_ProtocolIE_Container_7847P65_131, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P65_specs_131 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P65_specs_131 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P66_133[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P66_133[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4072,39 +4072,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P66_133[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P66_tags_133[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P66_tags_133[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P66_specs_133 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P66), - offsetof(struct S1AP_ProtocolIE_Container_7838P66, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P66_specs_133 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P66), + offsetof(struct S1AP_ProtocolIE_Container_7847P66, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P66 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P66 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P66_tags_133, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P66_tags_133) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P66_tags_133[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P66_tags_133, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P66_tags_133) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P66_tags_133[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P66_tags_133, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P66_tags_133) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P66_tags_133[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P66_tags_133, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P66_tags_133) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P66_tags_133[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P66_constr_133, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P66_constr_133, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P66_133, + asn_MBR_S1AP_ProtocolIE_Container_7847P66_133, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P66_specs_133 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P66_specs_133 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P67_135[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P67_135[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4123,39 +4123,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P67_135[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P67_tags_135[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P67_tags_135[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P67_specs_135 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P67), - offsetof(struct S1AP_ProtocolIE_Container_7838P67, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P67_specs_135 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P67), + offsetof(struct S1AP_ProtocolIE_Container_7847P67, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P67 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P67 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P67_tags_135, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P67_tags_135) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P67_tags_135[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P67_tags_135, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P67_tags_135) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P67_tags_135[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P67_tags_135, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P67_tags_135) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P67_tags_135[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P67_tags_135, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P67_tags_135) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P67_tags_135[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P67_constr_135, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P67_constr_135, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P67_135, + asn_MBR_S1AP_ProtocolIE_Container_7847P67_135, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P67_specs_135 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P67_specs_135 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P68_137[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P68_137[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4174,39 +4174,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P68_137[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P68_tags_137[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P68_tags_137[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P68_specs_137 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P68), - offsetof(struct S1AP_ProtocolIE_Container_7838P68, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P68_specs_137 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P68), + offsetof(struct S1AP_ProtocolIE_Container_7847P68, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P68 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P68 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P68_tags_137, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P68_tags_137) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P68_tags_137[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P68_tags_137, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P68_tags_137) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P68_tags_137[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P68_tags_137, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P68_tags_137) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P68_tags_137[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P68_tags_137, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P68_tags_137) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P68_tags_137[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P68_constr_137, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P68_constr_137, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P68_137, + asn_MBR_S1AP_ProtocolIE_Container_7847P68_137, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P68_specs_137 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P68_specs_137 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P69_139[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P69_139[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4225,39 +4225,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P69_139[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P69_tags_139[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P69_tags_139[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P69_specs_139 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P69), - offsetof(struct S1AP_ProtocolIE_Container_7838P69, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P69_specs_139 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P69), + offsetof(struct S1AP_ProtocolIE_Container_7847P69, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P69 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P69 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P69_tags_139, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P69_tags_139) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P69_tags_139[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P69_tags_139, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P69_tags_139) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P69_tags_139[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P69_tags_139, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P69_tags_139) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P69_tags_139[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P69_tags_139, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P69_tags_139) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P69_tags_139[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P69_constr_139, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P69_constr_139, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P69_139, + asn_MBR_S1AP_ProtocolIE_Container_7847P69_139, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P69_specs_139 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P69_specs_139 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P70_141[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P70_141[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4276,39 +4276,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P70_141[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P70_tags_141[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P70_tags_141[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P70_specs_141 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P70), - offsetof(struct S1AP_ProtocolIE_Container_7838P70, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P70_specs_141 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P70), + offsetof(struct S1AP_ProtocolIE_Container_7847P70, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P70 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P70 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P70_tags_141, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P70_tags_141) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P70_tags_141[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P70_tags_141, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P70_tags_141) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P70_tags_141[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P70_tags_141, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P70_tags_141) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P70_tags_141[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P70_tags_141, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P70_tags_141) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P70_tags_141[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P70_constr_141, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P70_constr_141, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P70_141, + asn_MBR_S1AP_ProtocolIE_Container_7847P70_141, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P70_specs_141 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P70_specs_141 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P71_143[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P71_143[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4327,39 +4327,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P71_143[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P71_tags_143[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P71_tags_143[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P71_specs_143 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P71), - offsetof(struct S1AP_ProtocolIE_Container_7838P71, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P71_specs_143 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P71), + offsetof(struct S1AP_ProtocolIE_Container_7847P71, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P71 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P71 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P71_tags_143, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P71_tags_143) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P71_tags_143[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P71_tags_143, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P71_tags_143) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P71_tags_143[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P71_tags_143, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P71_tags_143) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P71_tags_143[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P71_tags_143, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P71_tags_143) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P71_tags_143[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P71_constr_143, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P71_constr_143, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P71_143, + asn_MBR_S1AP_ProtocolIE_Container_7847P71_143, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P71_specs_143 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P71_specs_143 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P72_145[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P72_145[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4378,39 +4378,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P72_145[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P72_tags_145[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P72_tags_145[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P72_specs_145 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P72), - offsetof(struct S1AP_ProtocolIE_Container_7838P72, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P72_specs_145 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P72), + offsetof(struct S1AP_ProtocolIE_Container_7847P72, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P72 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P72 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P72_tags_145, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P72_tags_145) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P72_tags_145[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P72_tags_145, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P72_tags_145) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P72_tags_145[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P72_tags_145, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P72_tags_145) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P72_tags_145[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P72_tags_145, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P72_tags_145) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P72_tags_145[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P72_constr_145, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P72_constr_145, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P72_145, + asn_MBR_S1AP_ProtocolIE_Container_7847P72_145, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P72_specs_145 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P72_specs_145 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P73_147[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P73_147[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4429,39 +4429,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P73_147[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P73_tags_147[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P73_tags_147[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P73_specs_147 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P73), - offsetof(struct S1AP_ProtocolIE_Container_7838P73, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P73_specs_147 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P73), + offsetof(struct S1AP_ProtocolIE_Container_7847P73, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P73 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P73 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P73_tags_147, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P73_tags_147) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P73_tags_147[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P73_tags_147, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P73_tags_147) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P73_tags_147[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P73_tags_147, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P73_tags_147) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P73_tags_147[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P73_tags_147, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P73_tags_147) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P73_tags_147[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P73_constr_147, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P73_constr_147, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P73_147, + asn_MBR_S1AP_ProtocolIE_Container_7847P73_147, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P73_specs_147 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P73_specs_147 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P74_149[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P74_149[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4480,39 +4480,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P74_149[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P74_tags_149[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P74_tags_149[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P74_specs_149 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P74), - offsetof(struct S1AP_ProtocolIE_Container_7838P74, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P74_specs_149 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P74), + offsetof(struct S1AP_ProtocolIE_Container_7847P74, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P74 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P74 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P74_tags_149, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P74_tags_149) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P74_tags_149[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P74_tags_149, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P74_tags_149) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P74_tags_149[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P74_tags_149, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P74_tags_149) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P74_tags_149[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P74_tags_149, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P74_tags_149) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P74_tags_149[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P74_constr_149, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P74_constr_149, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P74_149, + asn_MBR_S1AP_ProtocolIE_Container_7847P74_149, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P74_specs_149 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P74_specs_149 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P75_151[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P75_151[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4531,39 +4531,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P75_151[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P75_tags_151[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P75_tags_151[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P75_specs_151 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P75), - offsetof(struct S1AP_ProtocolIE_Container_7838P75, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P75_specs_151 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P75), + offsetof(struct S1AP_ProtocolIE_Container_7847P75, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P75 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P75 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P75_tags_151, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P75_tags_151) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P75_tags_151[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P75_tags_151, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P75_tags_151) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P75_tags_151[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P75_tags_151, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P75_tags_151) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P75_tags_151[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P75_tags_151, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P75_tags_151) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P75_tags_151[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P75_constr_151, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P75_constr_151, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P75_151, + asn_MBR_S1AP_ProtocolIE_Container_7847P75_151, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P75_specs_151 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P75_specs_151 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P76_153[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P76_153[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4582,39 +4582,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P76_153[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P76_tags_153[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P76_tags_153[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P76_specs_153 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P76), - offsetof(struct S1AP_ProtocolIE_Container_7838P76, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P76_specs_153 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P76), + offsetof(struct S1AP_ProtocolIE_Container_7847P76, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P76 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P76 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P76_tags_153, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P76_tags_153) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P76_tags_153[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P76_tags_153, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P76_tags_153) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P76_tags_153[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P76_tags_153, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P76_tags_153) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P76_tags_153[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P76_tags_153, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P76_tags_153) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P76_tags_153[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P76_constr_153, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P76_constr_153, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P76_153, + asn_MBR_S1AP_ProtocolIE_Container_7847P76_153, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P76_specs_153 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P76_specs_153 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P77_155[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P77_155[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4633,39 +4633,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P77_155[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P77_tags_155[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P77_tags_155[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P77_specs_155 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P77), - offsetof(struct S1AP_ProtocolIE_Container_7838P77, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P77_specs_155 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P77), + offsetof(struct S1AP_ProtocolIE_Container_7847P77, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P77 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P77 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P77_tags_155, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P77_tags_155) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P77_tags_155[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P77_tags_155, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P77_tags_155) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P77_tags_155[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P77_tags_155, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P77_tags_155) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P77_tags_155[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P77_tags_155, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P77_tags_155) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P77_tags_155[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P77_constr_155, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P77_constr_155, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P77_155, + asn_MBR_S1AP_ProtocolIE_Container_7847P77_155, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P77_specs_155 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P77_specs_155 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P78_157[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P78_157[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4684,39 +4684,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P78_157[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P78_tags_157[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P78_tags_157[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P78_specs_157 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P78), - offsetof(struct S1AP_ProtocolIE_Container_7838P78, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P78_specs_157 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P78), + offsetof(struct S1AP_ProtocolIE_Container_7847P78, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P78 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P78 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P78_tags_157, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P78_tags_157) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P78_tags_157[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P78_tags_157, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P78_tags_157) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P78_tags_157[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P78_tags_157, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P78_tags_157) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P78_tags_157[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P78_tags_157, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P78_tags_157) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P78_tags_157[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P78_constr_157, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P78_constr_157, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P78_157, + asn_MBR_S1AP_ProtocolIE_Container_7847P78_157, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P78_specs_157 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P78_specs_157 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P79_159[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P79_159[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4735,39 +4735,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P79_159[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P79_tags_159[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P79_tags_159[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P79_specs_159 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P79), - offsetof(struct S1AP_ProtocolIE_Container_7838P79, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P79_specs_159 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P79), + offsetof(struct S1AP_ProtocolIE_Container_7847P79, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P79 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P79 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P79_tags_159, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P79_tags_159) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P79_tags_159[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P79_tags_159, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P79_tags_159) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P79_tags_159[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P79_tags_159, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P79_tags_159) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P79_tags_159[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P79_tags_159, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P79_tags_159) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P79_tags_159[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P79_constr_159, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P79_constr_159, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P79_159, + asn_MBR_S1AP_ProtocolIE_Container_7847P79_159, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P79_specs_159 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P79_specs_159 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P80_161[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P80_161[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4786,39 +4786,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P80_161[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P80_tags_161[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P80_tags_161[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P80_specs_161 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P80), - offsetof(struct S1AP_ProtocolIE_Container_7838P80, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P80_specs_161 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P80), + offsetof(struct S1AP_ProtocolIE_Container_7847P80, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P80 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P80 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P80_tags_161, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P80_tags_161) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P80_tags_161[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P80_tags_161, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P80_tags_161) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P80_tags_161[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P80_tags_161, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P80_tags_161) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P80_tags_161[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P80_tags_161, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P80_tags_161) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P80_tags_161[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P80_constr_161, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P80_constr_161, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P80_161, + asn_MBR_S1AP_ProtocolIE_Container_7847P80_161, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P80_specs_161 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P80_specs_161 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P81_163[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P81_163[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4837,39 +4837,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P81_163[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P81_tags_163[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P81_tags_163[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P81_specs_163 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P81), - offsetof(struct S1AP_ProtocolIE_Container_7838P81, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P81_specs_163 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P81), + offsetof(struct S1AP_ProtocolIE_Container_7847P81, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P81 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P81 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P81_tags_163, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P81_tags_163) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P81_tags_163[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P81_tags_163, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P81_tags_163) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P81_tags_163[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P81_tags_163, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P81_tags_163) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P81_tags_163[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P81_tags_163, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P81_tags_163) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P81_tags_163[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P81_constr_163, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P81_constr_163, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P81_163, + asn_MBR_S1AP_ProtocolIE_Container_7847P81_163, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P81_specs_163 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P81_specs_163 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P82_165[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P82_165[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4888,39 +4888,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P82_165[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P82_tags_165[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P82_tags_165[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P82_specs_165 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P82), - offsetof(struct S1AP_ProtocolIE_Container_7838P82, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P82_specs_165 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P82), + offsetof(struct S1AP_ProtocolIE_Container_7847P82, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P82 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P82 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P82_tags_165, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P82_tags_165) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P82_tags_165[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P82_tags_165, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P82_tags_165) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P82_tags_165[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P82_tags_165, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P82_tags_165) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P82_tags_165[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P82_tags_165, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P82_tags_165) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P82_tags_165[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P82_constr_165, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P82_constr_165, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P82_165, + asn_MBR_S1AP_ProtocolIE_Container_7847P82_165, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P82_specs_165 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P82_specs_165 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P83_167[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P83_167[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4939,39 +4939,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P83_167[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P83_tags_167[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P83_tags_167[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P83_specs_167 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P83), - offsetof(struct S1AP_ProtocolIE_Container_7838P83, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P83_specs_167 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P83), + offsetof(struct S1AP_ProtocolIE_Container_7847P83, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P83 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P83 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P83_tags_167, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P83_tags_167) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P83_tags_167[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P83_tags_167, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P83_tags_167) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P83_tags_167[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P83_tags_167, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P83_tags_167) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P83_tags_167[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P83_tags_167, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P83_tags_167) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P83_tags_167[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P83_constr_167, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P83_constr_167, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P83_167, + asn_MBR_S1AP_ProtocolIE_Container_7847P83_167, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P83_specs_167 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P83_specs_167 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P84_169[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P84_169[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -4990,39 +4990,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P84_169[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P84_tags_169[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P84_tags_169[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P84_specs_169 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P84), - offsetof(struct S1AP_ProtocolIE_Container_7838P84, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P84_specs_169 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P84), + offsetof(struct S1AP_ProtocolIE_Container_7847P84, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P84 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P84 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P84_tags_169, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P84_tags_169) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P84_tags_169[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P84_tags_169, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P84_tags_169) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P84_tags_169[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P84_tags_169, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P84_tags_169) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P84_tags_169[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P84_tags_169, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P84_tags_169) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P84_tags_169[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P84_constr_169, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P84_constr_169, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P84_169, + asn_MBR_S1AP_ProtocolIE_Container_7847P84_169, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P84_specs_169 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P84_specs_169 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P85_171[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P85_171[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5041,39 +5041,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P85_171[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P85_tags_171[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P85_tags_171[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P85_specs_171 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P85), - offsetof(struct S1AP_ProtocolIE_Container_7838P85, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P85_specs_171 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P85), + offsetof(struct S1AP_ProtocolIE_Container_7847P85, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P85 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P85 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P85_tags_171, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P85_tags_171) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P85_tags_171[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P85_tags_171, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P85_tags_171) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P85_tags_171[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P85_tags_171, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P85_tags_171) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P85_tags_171[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P85_tags_171, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P85_tags_171) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P85_tags_171[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P85_constr_171, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P85_constr_171, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P85_171, + asn_MBR_S1AP_ProtocolIE_Container_7847P85_171, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P85_specs_171 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P85_specs_171 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P86_173[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P86_173[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5092,39 +5092,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P86_173[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P86_tags_173[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P86_tags_173[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P86_specs_173 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P86), - offsetof(struct S1AP_ProtocolIE_Container_7838P86, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P86_specs_173 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P86), + offsetof(struct S1AP_ProtocolIE_Container_7847P86, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P86 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P86 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P86_tags_173, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P86_tags_173) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P86_tags_173[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P86_tags_173, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P86_tags_173) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P86_tags_173[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P86_tags_173, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P86_tags_173) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P86_tags_173[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P86_tags_173, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P86_tags_173) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P86_tags_173[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P86_constr_173, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P86_constr_173, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P86_173, + asn_MBR_S1AP_ProtocolIE_Container_7847P86_173, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P86_specs_173 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P86_specs_173 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P87_175[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P87_175[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5143,39 +5143,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P87_175[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P87_tags_175[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P87_tags_175[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P87_specs_175 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P87), - offsetof(struct S1AP_ProtocolIE_Container_7838P87, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P87_specs_175 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P87), + offsetof(struct S1AP_ProtocolIE_Container_7847P87, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P87 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P87 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P87_tags_175, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P87_tags_175) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P87_tags_175[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P87_tags_175, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P87_tags_175) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P87_tags_175[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P87_tags_175, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P87_tags_175) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P87_tags_175[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P87_tags_175, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P87_tags_175) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P87_tags_175[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P87_constr_175, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P87_constr_175, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P87_175, + asn_MBR_S1AP_ProtocolIE_Container_7847P87_175, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P87_specs_175 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P87_specs_175 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P88_177[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P88_177[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5194,39 +5194,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P88_177[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P88_tags_177[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P88_tags_177[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P88_specs_177 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P88), - offsetof(struct S1AP_ProtocolIE_Container_7838P88, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P88_specs_177 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P88), + offsetof(struct S1AP_ProtocolIE_Container_7847P88, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P88 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P88 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P88_tags_177, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P88_tags_177) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P88_tags_177[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P88_tags_177, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P88_tags_177) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P88_tags_177[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P88_tags_177, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P88_tags_177) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P88_tags_177[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P88_tags_177, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P88_tags_177) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P88_tags_177[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P88_constr_177, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P88_constr_177, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P88_177, + asn_MBR_S1AP_ProtocolIE_Container_7847P88_177, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P88_specs_177 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P88_specs_177 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P89_179[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P89_179[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5245,39 +5245,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P89_179[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P89_tags_179[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P89_tags_179[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P89_specs_179 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P89), - offsetof(struct S1AP_ProtocolIE_Container_7838P89, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P89_specs_179 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P89), + offsetof(struct S1AP_ProtocolIE_Container_7847P89, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P89 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P89 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P89_tags_179, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P89_tags_179) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P89_tags_179[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P89_tags_179, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P89_tags_179) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P89_tags_179[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P89_tags_179, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P89_tags_179) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P89_tags_179[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P89_tags_179, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P89_tags_179) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P89_tags_179[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P89_constr_179, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P89_constr_179, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P89_179, + asn_MBR_S1AP_ProtocolIE_Container_7847P89_179, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P89_specs_179 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P89_specs_179 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P90_181[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P90_181[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5296,39 +5296,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P90_181[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P90_tags_181[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P90_tags_181[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P90_specs_181 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P90), - offsetof(struct S1AP_ProtocolIE_Container_7838P90, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P90_specs_181 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P90), + offsetof(struct S1AP_ProtocolIE_Container_7847P90, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P90 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P90 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P90_tags_181, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P90_tags_181) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P90_tags_181[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P90_tags_181, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P90_tags_181) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P90_tags_181[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P90_tags_181, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P90_tags_181) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P90_tags_181[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P90_tags_181, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P90_tags_181) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P90_tags_181[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P90_constr_181, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P90_constr_181, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P90_181, + asn_MBR_S1AP_ProtocolIE_Container_7847P90_181, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P90_specs_181 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P90_specs_181 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P91_183[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P91_183[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5347,39 +5347,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P91_183[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P91_tags_183[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P91_tags_183[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P91_specs_183 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P91), - offsetof(struct S1AP_ProtocolIE_Container_7838P91, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P91_specs_183 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P91), + offsetof(struct S1AP_ProtocolIE_Container_7847P91, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P91 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P91 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P91_tags_183, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P91_tags_183) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P91_tags_183[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P91_tags_183, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P91_tags_183) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P91_tags_183[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P91_tags_183, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P91_tags_183) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P91_tags_183[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P91_tags_183, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P91_tags_183) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P91_tags_183[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P91_constr_183, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P91_constr_183, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P91_183, + asn_MBR_S1AP_ProtocolIE_Container_7847P91_183, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P91_specs_183 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P91_specs_183 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P92_185[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P92_185[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5398,39 +5398,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P92_185[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P92_tags_185[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P92_tags_185[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P92_specs_185 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P92), - offsetof(struct S1AP_ProtocolIE_Container_7838P92, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P92_specs_185 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P92), + offsetof(struct S1AP_ProtocolIE_Container_7847P92, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P92 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P92 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P92_tags_185, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P92_tags_185) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P92_tags_185[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P92_tags_185, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P92_tags_185) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P92_tags_185[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P92_tags_185, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P92_tags_185) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P92_tags_185[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P92_tags_185, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P92_tags_185) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P92_tags_185[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P92_constr_185, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P92_constr_185, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P92_185, + asn_MBR_S1AP_ProtocolIE_Container_7847P92_185, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P92_specs_185 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P92_specs_185 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P93_187[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P93_187[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5449,39 +5449,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P93_187[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P93_tags_187[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P93_tags_187[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P93_specs_187 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P93), - offsetof(struct S1AP_ProtocolIE_Container_7838P93, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P93_specs_187 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P93), + offsetof(struct S1AP_ProtocolIE_Container_7847P93, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P93 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P93 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P93_tags_187, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P93_tags_187) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P93_tags_187[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P93_tags_187, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P93_tags_187) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P93_tags_187[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P93_tags_187, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P93_tags_187) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P93_tags_187[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P93_tags_187, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P93_tags_187) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P93_tags_187[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P93_constr_187, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P93_constr_187, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P93_187, + asn_MBR_S1AP_ProtocolIE_Container_7847P93_187, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P93_specs_187 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P93_specs_187 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P94_189[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P94_189[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5500,39 +5500,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P94_189[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P94_tags_189[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P94_tags_189[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P94_specs_189 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P94), - offsetof(struct S1AP_ProtocolIE_Container_7838P94, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P94_specs_189 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P94), + offsetof(struct S1AP_ProtocolIE_Container_7847P94, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P94 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P94 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P94_tags_189, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P94_tags_189) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P94_tags_189[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P94_tags_189, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P94_tags_189) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P94_tags_189[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P94_tags_189, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P94_tags_189) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P94_tags_189[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P94_tags_189, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P94_tags_189) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P94_tags_189[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P94_constr_189, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P94_constr_189, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P94_189, + asn_MBR_S1AP_ProtocolIE_Container_7847P94_189, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P94_specs_189 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P94_specs_189 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P95_191[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P95_191[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5551,39 +5551,39 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P95_191[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P95_tags_191[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P95_tags_191[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P95_specs_191 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P95), - offsetof(struct S1AP_ProtocolIE_Container_7838P95, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P95_specs_191 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P95), + offsetof(struct S1AP_ProtocolIE_Container_7847P95, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P95 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P95 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P95_tags_191, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P95_tags_191) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P95_tags_191[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P95_tags_191, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P95_tags_191) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P95_tags_191[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P95_tags_191, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P95_tags_191) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P95_tags_191[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P95_tags_191, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P95_tags_191) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P95_tags_191[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P95_constr_191, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P95_constr_191, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P95_191, + asn_MBR_S1AP_ProtocolIE_Container_7847P95_191, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P95_specs_191 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P95_specs_191 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P96_193[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P96_193[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, @@ -5602,35 +5602,35 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P96_193[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7838P96_tags_193[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_Container_7847P96_tags_193[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P96_specs_193 = { - sizeof(struct S1AP_ProtocolIE_Container_7838P96), - offsetof(struct S1AP_ProtocolIE_Container_7838P96, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P96_specs_193 = { + sizeof(struct S1AP_ProtocolIE_Container_7847P96), + offsetof(struct S1AP_ProtocolIE_Container_7847P96, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P96 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P96 = { "ProtocolIE-Container", "ProtocolIE-Container", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_Container_7838P96_tags_193, - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P96_tags_193) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P96_tags_193[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_Container_7838P96_tags_193, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P96_tags_193) - /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7838P96_tags_193[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P96_tags_193, + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P96_tags_193) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P96_tags_193[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_Container_7847P96_tags_193, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P96_tags_193) + /sizeof(asn_DEF_S1AP_ProtocolIE_Container_7847P96_tags_193[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_Container_7838P96_constr_193, + &asn_PER_type_S1AP_ProtocolIE_Container_7847P96_constr_193, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_Container_7838P96_193, + asn_MBR_S1AP_ProtocolIE_Container_7847P96_193, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_Container_7838P96_specs_193 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_Container_7847P96_specs_193 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-Container.h b/lib/asn1c/s1ap/S1AP_ProtocolIE-Container.h index 7aad51dd1..325326306 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-Container.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-Container.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -119,978 +119,978 @@ struct S1AP_UERadioCapabilityIDMappingRequestIEs; struct S1AP_UERadioCapabilityIDMappingResponseIEs; /* S1AP_ProtocolIE-Container */ -typedef struct S1AP_ProtocolIE_Container_7838P0 { +typedef struct S1AP_ProtocolIE_Container_7847P0 { A_SEQUENCE_OF(struct S1AP_HandoverRequiredIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P0_t; -typedef struct S1AP_ProtocolIE_Container_7838P1 { +} S1AP_ProtocolIE_Container_7847P0_t; +typedef struct S1AP_ProtocolIE_Container_7847P1 { A_SEQUENCE_OF(struct S1AP_HandoverCommandIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P1_t; -typedef struct S1AP_ProtocolIE_Container_7838P2 { +} S1AP_ProtocolIE_Container_7847P1_t; +typedef struct S1AP_ProtocolIE_Container_7847P2 { A_SEQUENCE_OF(struct S1AP_HandoverPreparationFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P2_t; -typedef struct S1AP_ProtocolIE_Container_7838P3 { +} S1AP_ProtocolIE_Container_7847P2_t; +typedef struct S1AP_ProtocolIE_Container_7847P3 { A_SEQUENCE_OF(struct S1AP_HandoverRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P3_t; -typedef struct S1AP_ProtocolIE_Container_7838P4 { +} S1AP_ProtocolIE_Container_7847P3_t; +typedef struct S1AP_ProtocolIE_Container_7847P4 { A_SEQUENCE_OF(struct S1AP_HandoverRequestAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P4_t; -typedef struct S1AP_ProtocolIE_Container_7838P5 { +} S1AP_ProtocolIE_Container_7847P4_t; +typedef struct S1AP_ProtocolIE_Container_7847P5 { A_SEQUENCE_OF(struct S1AP_HandoverFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P5_t; -typedef struct S1AP_ProtocolIE_Container_7838P6 { +} S1AP_ProtocolIE_Container_7847P5_t; +typedef struct S1AP_ProtocolIE_Container_7847P6 { A_SEQUENCE_OF(struct S1AP_HandoverNotifyIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P6_t; -typedef struct S1AP_ProtocolIE_Container_7838P7 { +} S1AP_ProtocolIE_Container_7847P6_t; +typedef struct S1AP_ProtocolIE_Container_7847P7 { A_SEQUENCE_OF(struct S1AP_PathSwitchRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P7_t; -typedef struct S1AP_ProtocolIE_Container_7838P8 { +} S1AP_ProtocolIE_Container_7847P7_t; +typedef struct S1AP_ProtocolIE_Container_7847P8 { A_SEQUENCE_OF(struct S1AP_PathSwitchRequestAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P8_t; -typedef struct S1AP_ProtocolIE_Container_7838P9 { +} S1AP_ProtocolIE_Container_7847P8_t; +typedef struct S1AP_ProtocolIE_Container_7847P9 { A_SEQUENCE_OF(struct S1AP_PathSwitchRequestFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P9_t; -typedef struct S1AP_ProtocolIE_Container_7838P10 { +} S1AP_ProtocolIE_Container_7847P9_t; +typedef struct S1AP_ProtocolIE_Container_7847P10 { A_SEQUENCE_OF(struct S1AP_HandoverCancelIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P10_t; -typedef struct S1AP_ProtocolIE_Container_7838P11 { +} S1AP_ProtocolIE_Container_7847P10_t; +typedef struct S1AP_ProtocolIE_Container_7847P11 { A_SEQUENCE_OF(struct S1AP_HandoverCancelAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P11_t; -typedef struct S1AP_ProtocolIE_Container_7838P12 { +} S1AP_ProtocolIE_Container_7847P11_t; +typedef struct S1AP_ProtocolIE_Container_7847P12 { A_SEQUENCE_OF(struct S1AP_HandoverSuccessIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P12_t; -typedef struct S1AP_ProtocolIE_Container_7838P13 { +} S1AP_ProtocolIE_Container_7847P12_t; +typedef struct S1AP_ProtocolIE_Container_7847P13 { A_SEQUENCE_OF(struct S1AP_ENBEarlyStatusTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P13_t; -typedef struct S1AP_ProtocolIE_Container_7838P14 { +} S1AP_ProtocolIE_Container_7847P13_t; +typedef struct S1AP_ProtocolIE_Container_7847P14 { A_SEQUENCE_OF(struct S1AP_MMEEarlyStatusTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P14_t; -typedef struct S1AP_ProtocolIE_Container_7838P15 { +} S1AP_ProtocolIE_Container_7847P14_t; +typedef struct S1AP_ProtocolIE_Container_7847P15 { A_SEQUENCE_OF(struct S1AP_E_RABSetupRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P15_t; -typedef struct S1AP_ProtocolIE_Container_7838P16 { +} S1AP_ProtocolIE_Container_7847P15_t; +typedef struct S1AP_ProtocolIE_Container_7847P16 { A_SEQUENCE_OF(struct S1AP_E_RABSetupResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P16_t; -typedef struct S1AP_ProtocolIE_Container_7838P17 { +} S1AP_ProtocolIE_Container_7847P16_t; +typedef struct S1AP_ProtocolIE_Container_7847P17 { A_SEQUENCE_OF(struct S1AP_E_RABModifyRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P17_t; -typedef struct S1AP_ProtocolIE_Container_7838P18 { +} S1AP_ProtocolIE_Container_7847P17_t; +typedef struct S1AP_ProtocolIE_Container_7847P18 { A_SEQUENCE_OF(struct S1AP_E_RABModifyResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P18_t; -typedef struct S1AP_ProtocolIE_Container_7838P19 { +} S1AP_ProtocolIE_Container_7847P18_t; +typedef struct S1AP_ProtocolIE_Container_7847P19 { A_SEQUENCE_OF(struct S1AP_E_RABReleaseCommandIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P19_t; -typedef struct S1AP_ProtocolIE_Container_7838P20 { +} S1AP_ProtocolIE_Container_7847P19_t; +typedef struct S1AP_ProtocolIE_Container_7847P20 { A_SEQUENCE_OF(struct S1AP_E_RABReleaseResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P20_t; -typedef struct S1AP_ProtocolIE_Container_7838P21 { +} S1AP_ProtocolIE_Container_7847P20_t; +typedef struct S1AP_ProtocolIE_Container_7847P21 { A_SEQUENCE_OF(struct S1AP_E_RABReleaseIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P21_t; -typedef struct S1AP_ProtocolIE_Container_7838P22 { +} S1AP_ProtocolIE_Container_7847P21_t; +typedef struct S1AP_ProtocolIE_Container_7847P22 { A_SEQUENCE_OF(struct S1AP_InitialContextSetupRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P22_t; -typedef struct S1AP_ProtocolIE_Container_7838P23 { +} S1AP_ProtocolIE_Container_7847P22_t; +typedef struct S1AP_ProtocolIE_Container_7847P23 { A_SEQUENCE_OF(struct S1AP_InitialContextSetupResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P23_t; -typedef struct S1AP_ProtocolIE_Container_7838P24 { +} S1AP_ProtocolIE_Container_7847P23_t; +typedef struct S1AP_ProtocolIE_Container_7847P24 { A_SEQUENCE_OF(struct S1AP_InitialContextSetupFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P24_t; -typedef struct S1AP_ProtocolIE_Container_7838P25 { +} S1AP_ProtocolIE_Container_7847P24_t; +typedef struct S1AP_ProtocolIE_Container_7847P25 { A_SEQUENCE_OF(struct S1AP_PagingIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P25_t; -typedef struct S1AP_ProtocolIE_Container_7838P26 { +} S1AP_ProtocolIE_Container_7847P25_t; +typedef struct S1AP_ProtocolIE_Container_7847P26 { A_SEQUENCE_OF(struct S1AP_UEContextReleaseRequest_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P26_t; -typedef struct S1AP_ProtocolIE_Container_7838P27 { +} S1AP_ProtocolIE_Container_7847P26_t; +typedef struct S1AP_ProtocolIE_Container_7847P27 { A_SEQUENCE_OF(struct S1AP_UEContextReleaseCommand_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P27_t; -typedef struct S1AP_ProtocolIE_Container_7838P28 { +} S1AP_ProtocolIE_Container_7847P27_t; +typedef struct S1AP_ProtocolIE_Container_7847P28 { A_SEQUENCE_OF(struct S1AP_UEContextReleaseComplete_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P28_t; -typedef struct S1AP_ProtocolIE_Container_7838P29 { +} S1AP_ProtocolIE_Container_7847P28_t; +typedef struct S1AP_ProtocolIE_Container_7847P29 { A_SEQUENCE_OF(struct S1AP_UEContextModificationRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P29_t; -typedef struct S1AP_ProtocolIE_Container_7838P30 { +} S1AP_ProtocolIE_Container_7847P29_t; +typedef struct S1AP_ProtocolIE_Container_7847P30 { A_SEQUENCE_OF(struct S1AP_UEContextModificationResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P30_t; -typedef struct S1AP_ProtocolIE_Container_7838P31 { +} S1AP_ProtocolIE_Container_7847P30_t; +typedef struct S1AP_ProtocolIE_Container_7847P31 { A_SEQUENCE_OF(struct S1AP_UEContextModificationFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P31_t; -typedef struct S1AP_ProtocolIE_Container_7838P32 { +} S1AP_ProtocolIE_Container_7847P31_t; +typedef struct S1AP_ProtocolIE_Container_7847P32 { A_SEQUENCE_OF(struct S1AP_UERadioCapabilityMatchRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P32_t; -typedef struct S1AP_ProtocolIE_Container_7838P33 { +} S1AP_ProtocolIE_Container_7847P32_t; +typedef struct S1AP_ProtocolIE_Container_7847P33 { A_SEQUENCE_OF(struct S1AP_UERadioCapabilityMatchResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P33_t; -typedef struct S1AP_ProtocolIE_Container_7838P34 { +} S1AP_ProtocolIE_Container_7847P33_t; +typedef struct S1AP_ProtocolIE_Container_7847P34 { A_SEQUENCE_OF(struct S1AP_DownlinkNASTransport_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P34_t; -typedef struct S1AP_ProtocolIE_Container_7838P35 { +} S1AP_ProtocolIE_Container_7847P34_t; +typedef struct S1AP_ProtocolIE_Container_7847P35 { A_SEQUENCE_OF(struct S1AP_InitialUEMessage_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P35_t; -typedef struct S1AP_ProtocolIE_Container_7838P36 { +} S1AP_ProtocolIE_Container_7847P35_t; +typedef struct S1AP_ProtocolIE_Container_7847P36 { A_SEQUENCE_OF(struct S1AP_UplinkNASTransport_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P36_t; -typedef struct S1AP_ProtocolIE_Container_7838P37 { +} S1AP_ProtocolIE_Container_7847P36_t; +typedef struct S1AP_ProtocolIE_Container_7847P37 { A_SEQUENCE_OF(struct S1AP_NASNonDeliveryIndication_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P37_t; -typedef struct S1AP_ProtocolIE_Container_7838P38 { +} S1AP_ProtocolIE_Container_7847P37_t; +typedef struct S1AP_ProtocolIE_Container_7847P38 { A_SEQUENCE_OF(struct S1AP_RerouteNASRequest_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P38_t; -typedef struct S1AP_ProtocolIE_Container_7838P39 { +} S1AP_ProtocolIE_Container_7847P38_t; +typedef struct S1AP_ProtocolIE_Container_7847P39 { A_SEQUENCE_OF(struct S1AP_NASDeliveryIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P39_t; -typedef struct S1AP_ProtocolIE_Container_7838P40 { +} S1AP_ProtocolIE_Container_7847P39_t; +typedef struct S1AP_ProtocolIE_Container_7847P40 { A_SEQUENCE_OF(struct S1AP_ResetIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P40_t; -typedef struct S1AP_ProtocolIE_Container_7838P41 { +} S1AP_ProtocolIE_Container_7847P40_t; +typedef struct S1AP_ProtocolIE_Container_7847P41 { A_SEQUENCE_OF(struct S1AP_ResetAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P41_t; -typedef struct S1AP_ProtocolIE_Container_7838P42 { +} S1AP_ProtocolIE_Container_7847P41_t; +typedef struct S1AP_ProtocolIE_Container_7847P42 { A_SEQUENCE_OF(struct S1AP_ErrorIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P42_t; -typedef struct S1AP_ProtocolIE_Container_7838P43 { +} S1AP_ProtocolIE_Container_7847P42_t; +typedef struct S1AP_ProtocolIE_Container_7847P43 { A_SEQUENCE_OF(struct S1AP_S1SetupRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P43_t; -typedef struct S1AP_ProtocolIE_Container_7838P44 { +} S1AP_ProtocolIE_Container_7847P43_t; +typedef struct S1AP_ProtocolIE_Container_7847P44 { A_SEQUENCE_OF(struct S1AP_S1SetupResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P44_t; -typedef struct S1AP_ProtocolIE_Container_7838P45 { +} S1AP_ProtocolIE_Container_7847P44_t; +typedef struct S1AP_ProtocolIE_Container_7847P45 { A_SEQUENCE_OF(struct S1AP_S1SetupFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P45_t; -typedef struct S1AP_ProtocolIE_Container_7838P46 { +} S1AP_ProtocolIE_Container_7847P45_t; +typedef struct S1AP_ProtocolIE_Container_7847P46 { A_SEQUENCE_OF(struct S1AP_ENBConfigurationUpdateIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P46_t; -typedef struct S1AP_ProtocolIE_Container_7838P47 { +} S1AP_ProtocolIE_Container_7847P46_t; +typedef struct S1AP_ProtocolIE_Container_7847P47 { A_SEQUENCE_OF(struct S1AP_ENBConfigurationUpdateAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P47_t; -typedef struct S1AP_ProtocolIE_Container_7838P48 { +} S1AP_ProtocolIE_Container_7847P47_t; +typedef struct S1AP_ProtocolIE_Container_7847P48 { A_SEQUENCE_OF(struct S1AP_ENBConfigurationUpdateFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P48_t; -typedef struct S1AP_ProtocolIE_Container_7838P49 { +} S1AP_ProtocolIE_Container_7847P48_t; +typedef struct S1AP_ProtocolIE_Container_7847P49 { A_SEQUENCE_OF(struct S1AP_MMEConfigurationUpdateIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P49_t; -typedef struct S1AP_ProtocolIE_Container_7838P50 { +} S1AP_ProtocolIE_Container_7847P49_t; +typedef struct S1AP_ProtocolIE_Container_7847P50 { A_SEQUENCE_OF(struct S1AP_MMEConfigurationUpdateAcknowledgeIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P50_t; -typedef struct S1AP_ProtocolIE_Container_7838P51 { +} S1AP_ProtocolIE_Container_7847P50_t; +typedef struct S1AP_ProtocolIE_Container_7847P51 { A_SEQUENCE_OF(struct S1AP_MMEConfigurationUpdateFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P51_t; -typedef struct S1AP_ProtocolIE_Container_7838P52 { +} S1AP_ProtocolIE_Container_7847P51_t; +typedef struct S1AP_ProtocolIE_Container_7847P52 { A_SEQUENCE_OF(struct S1AP_DownlinkS1cdma2000tunnellingIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P52_t; -typedef struct S1AP_ProtocolIE_Container_7838P53 { +} S1AP_ProtocolIE_Container_7847P52_t; +typedef struct S1AP_ProtocolIE_Container_7847P53 { A_SEQUENCE_OF(struct S1AP_UplinkS1cdma2000tunnellingIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P53_t; -typedef struct S1AP_ProtocolIE_Container_7838P54 { +} S1AP_ProtocolIE_Container_7847P53_t; +typedef struct S1AP_ProtocolIE_Container_7847P54 { A_SEQUENCE_OF(struct S1AP_UECapabilityInfoIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P54_t; -typedef struct S1AP_ProtocolIE_Container_7838P55 { +} S1AP_ProtocolIE_Container_7847P54_t; +typedef struct S1AP_ProtocolIE_Container_7847P55 { A_SEQUENCE_OF(struct S1AP_ENBStatusTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P55_t; -typedef struct S1AP_ProtocolIE_Container_7838P56 { +} S1AP_ProtocolIE_Container_7847P55_t; +typedef struct S1AP_ProtocolIE_Container_7847P56 { A_SEQUENCE_OF(struct S1AP_MMEStatusTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P56_t; -typedef struct S1AP_ProtocolIE_Container_7838P57 { +} S1AP_ProtocolIE_Container_7847P56_t; +typedef struct S1AP_ProtocolIE_Container_7847P57 { A_SEQUENCE_OF(struct S1AP_TraceStartIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P57_t; -typedef struct S1AP_ProtocolIE_Container_7838P58 { +} S1AP_ProtocolIE_Container_7847P57_t; +typedef struct S1AP_ProtocolIE_Container_7847P58 { A_SEQUENCE_OF(struct S1AP_TraceFailureIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P58_t; -typedef struct S1AP_ProtocolIE_Container_7838P59 { +} S1AP_ProtocolIE_Container_7847P58_t; +typedef struct S1AP_ProtocolIE_Container_7847P59 { A_SEQUENCE_OF(struct S1AP_DeactivateTraceIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P59_t; -typedef struct S1AP_ProtocolIE_Container_7838P60 { +} S1AP_ProtocolIE_Container_7847P59_t; +typedef struct S1AP_ProtocolIE_Container_7847P60 { A_SEQUENCE_OF(struct S1AP_CellTrafficTraceIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P60_t; -typedef struct S1AP_ProtocolIE_Container_7838P61 { +} S1AP_ProtocolIE_Container_7847P60_t; +typedef struct S1AP_ProtocolIE_Container_7847P61 { A_SEQUENCE_OF(struct S1AP_LocationReportingControlIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P61_t; -typedef struct S1AP_ProtocolIE_Container_7838P62 { +} S1AP_ProtocolIE_Container_7847P61_t; +typedef struct S1AP_ProtocolIE_Container_7847P62 { A_SEQUENCE_OF(struct S1AP_LocationReportingFailureIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P62_t; -typedef struct S1AP_ProtocolIE_Container_7838P63 { +} S1AP_ProtocolIE_Container_7847P62_t; +typedef struct S1AP_ProtocolIE_Container_7847P63 { A_SEQUENCE_OF(struct S1AP_LocationReportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P63_t; -typedef struct S1AP_ProtocolIE_Container_7838P64 { +} S1AP_ProtocolIE_Container_7847P63_t; +typedef struct S1AP_ProtocolIE_Container_7847P64 { A_SEQUENCE_OF(struct S1AP_OverloadStartIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P64_t; -typedef struct S1AP_ProtocolIE_Container_7838P65 { +} S1AP_ProtocolIE_Container_7847P64_t; +typedef struct S1AP_ProtocolIE_Container_7847P65 { A_SEQUENCE_OF(struct S1AP_OverloadStopIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P65_t; -typedef struct S1AP_ProtocolIE_Container_7838P66 { +} S1AP_ProtocolIE_Container_7847P65_t; +typedef struct S1AP_ProtocolIE_Container_7847P66 { A_SEQUENCE_OF(struct S1AP_WriteReplaceWarningRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P66_t; -typedef struct S1AP_ProtocolIE_Container_7838P67 { +} S1AP_ProtocolIE_Container_7847P66_t; +typedef struct S1AP_ProtocolIE_Container_7847P67 { A_SEQUENCE_OF(struct S1AP_WriteReplaceWarningResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P67_t; -typedef struct S1AP_ProtocolIE_Container_7838P68 { +} S1AP_ProtocolIE_Container_7847P67_t; +typedef struct S1AP_ProtocolIE_Container_7847P68 { A_SEQUENCE_OF(struct S1AP_ENBDirectInformationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P68_t; -typedef struct S1AP_ProtocolIE_Container_7838P69 { +} S1AP_ProtocolIE_Container_7847P68_t; +typedef struct S1AP_ProtocolIE_Container_7847P69 { A_SEQUENCE_OF(struct S1AP_MMEDirectInformationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P69_t; -typedef struct S1AP_ProtocolIE_Container_7838P70 { +} S1AP_ProtocolIE_Container_7847P69_t; +typedef struct S1AP_ProtocolIE_Container_7847P70 { A_SEQUENCE_OF(struct S1AP_ENBConfigurationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P70_t; -typedef struct S1AP_ProtocolIE_Container_7838P71 { +} S1AP_ProtocolIE_Container_7847P70_t; +typedef struct S1AP_ProtocolIE_Container_7847P71 { A_SEQUENCE_OF(struct S1AP_MMEConfigurationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P71_t; -typedef struct S1AP_ProtocolIE_Container_7838P72 { +} S1AP_ProtocolIE_Container_7847P71_t; +typedef struct S1AP_ProtocolIE_Container_7847P72 { A_SEQUENCE_OF(struct S1AP_KillRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P72_t; -typedef struct S1AP_ProtocolIE_Container_7838P73 { +} S1AP_ProtocolIE_Container_7847P72_t; +typedef struct S1AP_ProtocolIE_Container_7847P73 { A_SEQUENCE_OF(struct S1AP_KillResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P73_t; -typedef struct S1AP_ProtocolIE_Container_7838P74 { +} S1AP_ProtocolIE_Container_7847P73_t; +typedef struct S1AP_ProtocolIE_Container_7847P74 { A_SEQUENCE_OF(struct S1AP_PWSRestartIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P74_t; -typedef struct S1AP_ProtocolIE_Container_7838P75 { +} S1AP_ProtocolIE_Container_7847P74_t; +typedef struct S1AP_ProtocolIE_Container_7847P75 { A_SEQUENCE_OF(struct S1AP_PWSFailureIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P75_t; -typedef struct S1AP_ProtocolIE_Container_7838P76 { +} S1AP_ProtocolIE_Container_7847P75_t; +typedef struct S1AP_ProtocolIE_Container_7847P76 { A_SEQUENCE_OF(struct S1AP_DownlinkUEAssociatedLPPaTransport_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P76_t; -typedef struct S1AP_ProtocolIE_Container_7838P77 { +} S1AP_ProtocolIE_Container_7847P76_t; +typedef struct S1AP_ProtocolIE_Container_7847P77 { A_SEQUENCE_OF(struct S1AP_UplinkUEAssociatedLPPaTransport_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P77_t; -typedef struct S1AP_ProtocolIE_Container_7838P78 { +} S1AP_ProtocolIE_Container_7847P77_t; +typedef struct S1AP_ProtocolIE_Container_7847P78 { A_SEQUENCE_OF(struct S1AP_DownlinkNonUEAssociatedLPPaTransport_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P78_t; -typedef struct S1AP_ProtocolIE_Container_7838P79 { +} S1AP_ProtocolIE_Container_7847P78_t; +typedef struct S1AP_ProtocolIE_Container_7847P79 { A_SEQUENCE_OF(struct S1AP_UplinkNonUEAssociatedLPPaTransport_IEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P79_t; -typedef struct S1AP_ProtocolIE_Container_7838P80 { +} S1AP_ProtocolIE_Container_7847P79_t; +typedef struct S1AP_ProtocolIE_Container_7847P80 { A_SEQUENCE_OF(struct S1AP_E_RABModificationIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P80_t; -typedef struct S1AP_ProtocolIE_Container_7838P81 { +} S1AP_ProtocolIE_Container_7847P80_t; +typedef struct S1AP_ProtocolIE_Container_7847P81 { A_SEQUENCE_OF(struct S1AP_E_RABModificationConfirmIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P81_t; -typedef struct S1AP_ProtocolIE_Container_7838P82 { +} S1AP_ProtocolIE_Container_7847P81_t; +typedef struct S1AP_ProtocolIE_Container_7847P82 { A_SEQUENCE_OF(struct S1AP_UEContextModificationIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P82_t; -typedef struct S1AP_ProtocolIE_Container_7838P83 { +} S1AP_ProtocolIE_Container_7847P82_t; +typedef struct S1AP_ProtocolIE_Container_7847P83 { A_SEQUENCE_OF(struct S1AP_UEContextModificationConfirmIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P83_t; -typedef struct S1AP_ProtocolIE_Container_7838P84 { +} S1AP_ProtocolIE_Container_7847P83_t; +typedef struct S1AP_ProtocolIE_Container_7847P84 { A_SEQUENCE_OF(struct S1AP_UEContextSuspendRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P84_t; -typedef struct S1AP_ProtocolIE_Container_7838P85 { +} S1AP_ProtocolIE_Container_7847P84_t; +typedef struct S1AP_ProtocolIE_Container_7847P85 { A_SEQUENCE_OF(struct S1AP_UEContextSuspendResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P85_t; -typedef struct S1AP_ProtocolIE_Container_7838P86 { +} S1AP_ProtocolIE_Container_7847P85_t; +typedef struct S1AP_ProtocolIE_Container_7847P86 { A_SEQUENCE_OF(struct S1AP_UEContextResumeRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P86_t; -typedef struct S1AP_ProtocolIE_Container_7838P87 { +} S1AP_ProtocolIE_Container_7847P86_t; +typedef struct S1AP_ProtocolIE_Container_7847P87 { A_SEQUENCE_OF(struct S1AP_UEContextResumeResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P87_t; -typedef struct S1AP_ProtocolIE_Container_7838P88 { +} S1AP_ProtocolIE_Container_7847P87_t; +typedef struct S1AP_ProtocolIE_Container_7847P88 { A_SEQUENCE_OF(struct S1AP_UEContextResumeFailureIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P88_t; -typedef struct S1AP_ProtocolIE_Container_7838P89 { +} S1AP_ProtocolIE_Container_7847P88_t; +typedef struct S1AP_ProtocolIE_Container_7847P89 { A_SEQUENCE_OF(struct S1AP_ConnectionEstablishmentIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P89_t; -typedef struct S1AP_ProtocolIE_Container_7838P90 { +} S1AP_ProtocolIE_Container_7847P89_t; +typedef struct S1AP_ProtocolIE_Container_7847P90 { A_SEQUENCE_OF(struct S1AP_RetrieveUEInformationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P90_t; -typedef struct S1AP_ProtocolIE_Container_7838P91 { +} S1AP_ProtocolIE_Container_7847P90_t; +typedef struct S1AP_ProtocolIE_Container_7847P91 { A_SEQUENCE_OF(struct S1AP_UEInformationTransferIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P91_t; -typedef struct S1AP_ProtocolIE_Container_7838P92 { +} S1AP_ProtocolIE_Container_7847P91_t; +typedef struct S1AP_ProtocolIE_Container_7847P92 { A_SEQUENCE_OF(struct S1AP_ENBCPRelocationIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P92_t; -typedef struct S1AP_ProtocolIE_Container_7838P93 { +} S1AP_ProtocolIE_Container_7847P92_t; +typedef struct S1AP_ProtocolIE_Container_7847P93 { A_SEQUENCE_OF(struct S1AP_MMECPRelocationIndicationIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P93_t; -typedef struct S1AP_ProtocolIE_Container_7838P94 { +} S1AP_ProtocolIE_Container_7847P93_t; +typedef struct S1AP_ProtocolIE_Container_7847P94 { A_SEQUENCE_OF(struct S1AP_SecondaryRATDataUsageReportIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P94_t; -typedef struct S1AP_ProtocolIE_Container_7838P95 { +} S1AP_ProtocolIE_Container_7847P94_t; +typedef struct S1AP_ProtocolIE_Container_7847P95 { A_SEQUENCE_OF(struct S1AP_UERadioCapabilityIDMappingRequestIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P95_t; -typedef struct S1AP_ProtocolIE_Container_7838P96 { +} S1AP_ProtocolIE_Container_7847P95_t; +typedef struct S1AP_ProtocolIE_Container_7847P96 { A_SEQUENCE_OF(struct S1AP_UERadioCapabilityIDMappingResponseIEs) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_Container_7838P96_t; +} S1AP_ProtocolIE_Container_7847P96_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P0; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P0_specs_1; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P0_1[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P0_constr_1; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P1; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P1_specs_3; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P1_3[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P1_constr_3; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P2; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P2_specs_5; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P2_5[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P2_constr_5; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P3; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P3_specs_7; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P3_7[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P3_constr_7; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P4; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P4_specs_9; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P4_9[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P4_constr_9; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P5; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P5_specs_11; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P5_11[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P5_constr_11; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P6; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P6_specs_13; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P6_13[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P6_constr_13; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P7; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P7_specs_15; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P7_15[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P7_constr_15; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P8; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P8_specs_17; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P8_17[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P8_constr_17; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P9; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P9_specs_19; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P9_19[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P9_constr_19; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P10; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P10_specs_21; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P10_21[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P10_constr_21; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P11; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P11_specs_23; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P11_23[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P11_constr_23; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P12; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P12_specs_25; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P12_25[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P12_constr_25; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P13; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P13_specs_27; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P13_27[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P13_constr_27; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P14; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P14_specs_29; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P14_29[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P14_constr_29; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P15; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P15_specs_31; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P15_31[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P15_constr_31; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P16; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P16_specs_33; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P16_33[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P16_constr_33; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P17; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P17_specs_35; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P17_35[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P17_constr_35; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P18; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P18_specs_37; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P18_37[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P18_constr_37; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P19; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P19_specs_39; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P19_39[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P19_constr_39; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P20; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P20_specs_41; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P20_41[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P20_constr_41; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P21; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P21_specs_43; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P21_43[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P21_constr_43; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P22; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P22_specs_45; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P22_45[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P22_constr_45; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P23; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P23_specs_47; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P23_47[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P23_constr_47; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P24; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P24_specs_49; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P24_49[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P24_constr_49; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P25; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P25_specs_51; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P25_51[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P25_constr_51; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P26; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P26_specs_53; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P26_53[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P26_constr_53; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P27; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P27_specs_55; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P27_55[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P27_constr_55; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P28; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P28_specs_57; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P28_57[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P28_constr_57; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P29; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P29_specs_59; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P29_59[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P29_constr_59; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P30; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P30_specs_61; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P30_61[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P30_constr_61; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P31; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P31_specs_63; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P31_63[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P31_constr_63; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P32; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P32_specs_65; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P32_65[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P32_constr_65; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P33; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P33_specs_67; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P33_67[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P33_constr_67; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P34; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P34_specs_69; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P34_69[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P34_constr_69; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P35; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P35_specs_71; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P35_71[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P35_constr_71; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P36; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P36_specs_73; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P36_73[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P36_constr_73; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P37; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P37_specs_75; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P37_75[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P37_constr_75; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P38; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P38_specs_77; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P38_77[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P38_constr_77; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P39; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P39_specs_79; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P39_79[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P39_constr_79; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P40; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P40_specs_81; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P40_81[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P40_constr_81; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P41; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P41_specs_83; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P41_83[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P41_constr_83; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P42; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P42_specs_85; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P42_85[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P42_constr_85; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P43; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P43_specs_87; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P43_87[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P43_constr_87; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P44; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P44_specs_89; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P44_89[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P44_constr_89; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P45; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P45_specs_91; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P45_91[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P45_constr_91; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P46; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P46_specs_93; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P46_93[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P46_constr_93; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P47; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P47_specs_95; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P47_95[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P47_constr_95; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P48; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P48_specs_97; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P48_97[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P48_constr_97; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P49; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P49_specs_99; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P49_99[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P49_constr_99; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P50; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P50_specs_101; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P50_101[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P50_constr_101; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P51; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P51_specs_103; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P51_103[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P51_constr_103; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P52; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P52_specs_105; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P52_105[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P52_constr_105; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P53; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P53_specs_107; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P53_107[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P53_constr_107; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P54; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P54_specs_109; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P54_109[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P54_constr_109; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P55; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P55_specs_111; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P55_111[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P55_constr_111; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P56; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P56_specs_113; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P56_113[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P56_constr_113; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P57; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P57_specs_115; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P57_115[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P57_constr_115; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P58; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P58_specs_117; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P58_117[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P58_constr_117; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P59; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P59_specs_119; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P59_119[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P59_constr_119; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P60; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P60_specs_121; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P60_121[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P60_constr_121; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P61; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P61_specs_123; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P61_123[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P61_constr_123; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P62; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P62_specs_125; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P62_125[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P62_constr_125; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P63; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P63_specs_127; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P63_127[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P63_constr_127; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P64; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P64_specs_129; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P64_129[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P64_constr_129; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P65; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P65_specs_131; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P65_131[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P65_constr_131; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P66; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P66_specs_133; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P66_133[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P66_constr_133; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P67; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P67_specs_135; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P67_135[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P67_constr_135; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P68; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P68_specs_137; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P68_137[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P68_constr_137; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P69; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P69_specs_139; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P69_139[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P69_constr_139; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P70; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P70_specs_141; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P70_141[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P70_constr_141; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P71; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P71_specs_143; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P71_143[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P71_constr_143; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P72; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P72_specs_145; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P72_145[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P72_constr_145; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P73; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P73_specs_147; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P73_147[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P73_constr_147; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P74; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P74_specs_149; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P74_149[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P74_constr_149; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P75; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P75_specs_151; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P75_151[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P75_constr_151; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P76; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P76_specs_153; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P76_153[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P76_constr_153; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P77; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P77_specs_155; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P77_155[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P77_constr_155; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P78; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P78_specs_157; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P78_157[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P78_constr_157; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P79; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P79_specs_159; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P79_159[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P79_constr_159; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P80; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P80_specs_161; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P80_161[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P80_constr_161; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P81; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P81_specs_163; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P81_163[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P81_constr_163; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P82; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P82_specs_165; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P82_165[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P82_constr_165; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P83; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P83_specs_167; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P83_167[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P83_constr_167; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P84; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P84_specs_169; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P84_169[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P84_constr_169; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P85; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P85_specs_171; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P85_171[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P85_constr_171; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P86; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P86_specs_173; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P86_173[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P86_constr_173; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P87; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P87_specs_175; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P87_175[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P87_constr_175; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P88; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P88_specs_177; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P88_177[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P88_constr_177; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P89; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P89_specs_179; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P89_179[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P89_constr_179; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P90; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P90_specs_181; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P90_181[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P90_constr_181; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P91; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P91_specs_183; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P91_183[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P91_constr_183; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P92; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P92_specs_185; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P92_185[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P92_constr_185; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P93; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P93_specs_187; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P93_187[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P93_constr_187; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P94; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P94_specs_189; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P94_189[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P94_constr_189; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P95; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P95_specs_191; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P95_191[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P95_constr_191; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7838P96; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7838P96_specs_193; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7838P96_193[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7838P96_constr_193; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P0; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P0_specs_1; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P0_1[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P0_constr_1; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P1; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P1_specs_3; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P1_3[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P1_constr_3; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P2; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P2_specs_5; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P2_5[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P2_constr_5; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P3; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P3_specs_7; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P3_7[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P3_constr_7; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P4; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P4_specs_9; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P4_9[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P4_constr_9; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P5; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P5_specs_11; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P5_11[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P5_constr_11; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P6; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P6_specs_13; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P6_13[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P6_constr_13; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P7; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P7_specs_15; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P7_15[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P7_constr_15; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P8; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P8_specs_17; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P8_17[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P8_constr_17; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P9; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P9_specs_19; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P9_19[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P9_constr_19; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P10; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P10_specs_21; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P10_21[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P10_constr_21; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P11; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P11_specs_23; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P11_23[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P11_constr_23; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P12; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P12_specs_25; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P12_25[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P12_constr_25; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P13; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P13_specs_27; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P13_27[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P13_constr_27; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P14; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P14_specs_29; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P14_29[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P14_constr_29; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P15; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P15_specs_31; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P15_31[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P15_constr_31; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P16; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P16_specs_33; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P16_33[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P16_constr_33; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P17; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P17_specs_35; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P17_35[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P17_constr_35; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P18; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P18_specs_37; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P18_37[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P18_constr_37; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P19; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P19_specs_39; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P19_39[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P19_constr_39; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P20; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P20_specs_41; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P20_41[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P20_constr_41; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P21; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P21_specs_43; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P21_43[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P21_constr_43; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P22; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P22_specs_45; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P22_45[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P22_constr_45; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P23; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P23_specs_47; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P23_47[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P23_constr_47; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P24; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P24_specs_49; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P24_49[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P24_constr_49; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P25; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P25_specs_51; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P25_51[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P25_constr_51; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P26; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P26_specs_53; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P26_53[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P26_constr_53; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P27; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P27_specs_55; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P27_55[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P27_constr_55; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P28; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P28_specs_57; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P28_57[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P28_constr_57; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P29; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P29_specs_59; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P29_59[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P29_constr_59; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P30; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P30_specs_61; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P30_61[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P30_constr_61; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P31; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P31_specs_63; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P31_63[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P31_constr_63; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P32; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P32_specs_65; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P32_65[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P32_constr_65; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P33; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P33_specs_67; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P33_67[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P33_constr_67; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P34; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P34_specs_69; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P34_69[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P34_constr_69; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P35; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P35_specs_71; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P35_71[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P35_constr_71; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P36; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P36_specs_73; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P36_73[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P36_constr_73; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P37; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P37_specs_75; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P37_75[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P37_constr_75; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P38; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P38_specs_77; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P38_77[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P38_constr_77; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P39; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P39_specs_79; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P39_79[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P39_constr_79; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P40; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P40_specs_81; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P40_81[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P40_constr_81; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P41; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P41_specs_83; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P41_83[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P41_constr_83; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P42; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P42_specs_85; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P42_85[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P42_constr_85; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P43; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P43_specs_87; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P43_87[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P43_constr_87; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P44; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P44_specs_89; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P44_89[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P44_constr_89; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P45; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P45_specs_91; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P45_91[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P45_constr_91; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P46; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P46_specs_93; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P46_93[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P46_constr_93; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P47; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P47_specs_95; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P47_95[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P47_constr_95; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P48; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P48_specs_97; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P48_97[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P48_constr_97; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P49; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P49_specs_99; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P49_99[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P49_constr_99; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P50; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P50_specs_101; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P50_101[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P50_constr_101; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P51; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P51_specs_103; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P51_103[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P51_constr_103; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P52; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P52_specs_105; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P52_105[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P52_constr_105; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P53; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P53_specs_107; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P53_107[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P53_constr_107; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P54; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P54_specs_109; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P54_109[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P54_constr_109; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P55; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P55_specs_111; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P55_111[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P55_constr_111; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P56; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P56_specs_113; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P56_113[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P56_constr_113; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P57; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P57_specs_115; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P57_115[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P57_constr_115; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P58; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P58_specs_117; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P58_117[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P58_constr_117; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P59; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P59_specs_119; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P59_119[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P59_constr_119; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P60; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P60_specs_121; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P60_121[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P60_constr_121; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P61; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P61_specs_123; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P61_123[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P61_constr_123; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P62; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P62_specs_125; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P62_125[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P62_constr_125; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P63; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P63_specs_127; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P63_127[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P63_constr_127; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P64; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P64_specs_129; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P64_129[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P64_constr_129; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P65; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P65_specs_131; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P65_131[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P65_constr_131; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P66; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P66_specs_133; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P66_133[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P66_constr_133; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P67; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P67_specs_135; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P67_135[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P67_constr_135; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P68; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P68_specs_137; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P68_137[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P68_constr_137; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P69; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P69_specs_139; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P69_139[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P69_constr_139; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P70; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P70_specs_141; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P70_141[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P70_constr_141; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P71; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P71_specs_143; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P71_143[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P71_constr_143; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P72; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P72_specs_145; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P72_145[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P72_constr_145; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P73; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P73_specs_147; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P73_147[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P73_constr_147; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P74; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P74_specs_149; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P74_149[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P74_constr_149; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P75; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P75_specs_151; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P75_151[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P75_constr_151; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P76; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P76_specs_153; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P76_153[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P76_constr_153; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P77; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P77_specs_155; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P77_155[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P77_constr_155; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P78; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P78_specs_157; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P78_157[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P78_constr_157; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P79; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P79_specs_159; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P79_159[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P79_constr_159; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P80; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P80_specs_161; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P80_161[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P80_constr_161; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P81; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P81_specs_163; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P81_163[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P81_constr_163; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P82; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P82_specs_165; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P82_165[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P82_constr_165; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P83; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P83_specs_167; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P83_167[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P83_constr_167; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P84; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P84_specs_169; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P84_169[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P84_constr_169; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P85; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P85_specs_171; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P85_171[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P85_constr_171; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P86; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P86_specs_173; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P86_173[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P86_constr_173; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P87; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P87_specs_175; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P87_175[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P87_constr_175; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P88; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P88_specs_177; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P88_177[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P88_constr_177; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P89; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P89_specs_179; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P89_179[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P89_constr_179; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P90; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P90_specs_181; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P90_181[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P90_constr_181; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P91; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P91_specs_183; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P91_183[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P91_constr_183; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P92; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P92_specs_185; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P92_185[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P92_constr_185; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P93; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P93_specs_187; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P93_187[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P93_constr_187; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P94; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P94_specs_189; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P94_189[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P94_constr_189; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P95; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P95_specs_191; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P95_191[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P95_constr_191; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_Container_7847P96; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_Container_7847P96_specs_193; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_Container_7847P96_193[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_Container_7847P96_constr_193; #ifdef __cplusplus } diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerList.c b/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerList.c index 774040984..0909b275e 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerList.c +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -9,80 +9,80 @@ #include "S1AP_ProtocolIE-SingleContainer.h" #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P0_constr_1 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P0_constr_1 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P1_constr_3 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P1_constr_3 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P2_constr_5 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P2_constr_5 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P3_constr_7 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P3_constr_7 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P4_constr_9 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P4_constr_9 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P5_constr_11 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P5_constr_11 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P6_constr_13 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P6_constr_13 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P7_constr_15 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P7_constr_15 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P8_constr_17 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P8_constr_17 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) -asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P9_constr_19 CC_NOTUSED = { +asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P9_constr_19 CC_NOTUSED = { { APC_UNCONSTRAINED, -1, -1, 0, 0 }, { APC_CONSTRAINED, 8, 8, 1, 256 } /* (SIZE(1..256)) */, 0, 0 /* No PER value map */ }; #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P0_1[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P0_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -97,43 +97,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P0_1[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P0_specs_1 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P0), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P0, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P0_specs_1 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P0), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P0, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0_tags_1, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0_tags_1) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0_tags_1[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0_tags_1, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0_tags_1) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0_tags_1, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0_tags_1) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0_tags_1, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0_tags_1) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P0_constr_1, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P0_constr_1, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P0_1, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P0_1, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P0_specs_1 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P0_specs_1 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P1_3[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P1_3[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -148,43 +148,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P1_3[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1_tags_3[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1_tags_3[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P1_specs_3 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P1), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P1, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P1_specs_3 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P1), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P1, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1_tags_3, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1_tags_3) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1_tags_3[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1_tags_3, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1_tags_3) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1_tags_3[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1_tags_3, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1_tags_3) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1_tags_3[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1_tags_3, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1_tags_3) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1_tags_3[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P1_constr_3, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P1_constr_3, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P1_3, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P1_3, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P1_specs_3 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P1_specs_3 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P2_5[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P2_5[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -199,43 +199,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P2_5[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2_tags_5[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2_tags_5[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P2_specs_5 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P2), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P2, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P2_specs_5 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P2), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P2, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2_tags_5, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2_tags_5) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2_tags_5[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2_tags_5, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2_tags_5) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2_tags_5[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2_tags_5, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2_tags_5) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2_tags_5[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2_tags_5, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2_tags_5) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2_tags_5[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P2_constr_5, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P2_constr_5, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P2_5, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P2_5, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P2_specs_5 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P2_specs_5 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P3_7[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P3_7[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -250,43 +250,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P3_7[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3_tags_7[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3_tags_7[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P3_specs_7 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P3), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P3, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P3_specs_7 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P3), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P3, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3_tags_7, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3_tags_7) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3_tags_7[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3_tags_7, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3_tags_7) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3_tags_7[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3_tags_7, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3_tags_7) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3_tags_7[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3_tags_7, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3_tags_7) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3_tags_7[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P3_constr_7, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P3_constr_7, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P3_7, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P3_7, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P3_specs_7 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P3_specs_7 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P4_9[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P4_9[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -301,43 +301,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P4_9[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4_tags_9[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4_tags_9[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P4_specs_9 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P4), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P4, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P4_specs_9 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P4), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P4, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4_tags_9, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4_tags_9) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4_tags_9[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4_tags_9, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4_tags_9) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4_tags_9[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4_tags_9, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4_tags_9) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4_tags_9[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4_tags_9, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4_tags_9) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4_tags_9[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P4_constr_9, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P4_constr_9, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P4_9, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P4_9, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P4_specs_9 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P4_specs_9 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P5_11[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P5_11[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -352,43 +352,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P5_11[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5_tags_11[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5_tags_11[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P5_specs_11 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P5), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P5, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P5_specs_11 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P5), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P5, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5_tags_11, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5_tags_11) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5_tags_11[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5_tags_11, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5_tags_11) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5_tags_11[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5_tags_11, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5_tags_11) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5_tags_11[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5_tags_11, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5_tags_11) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5_tags_11[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P5_constr_11, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P5_constr_11, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P5_11, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P5_11, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P5_specs_11 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P5_specs_11 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P6_13[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P6_13[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -403,43 +403,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P6_13[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6_tags_13[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6_tags_13[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P6_specs_13 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P6), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P6, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P6_specs_13 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P6), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P6, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6_tags_13, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6_tags_13) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6_tags_13[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6_tags_13, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6_tags_13) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6_tags_13[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6_tags_13, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6_tags_13) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6_tags_13[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6_tags_13, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6_tags_13) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6_tags_13[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P6_constr_13, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P6_constr_13, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P6_13, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P6_13, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P6_specs_13 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P6_specs_13 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P7_15[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P7_15[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -454,43 +454,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P7_15[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7_tags_15[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7_tags_15[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P7_specs_15 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P7), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P7, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P7_specs_15 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P7), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P7, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7_tags_15, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7_tags_15) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7_tags_15[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7_tags_15, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7_tags_15) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7_tags_15[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7_tags_15, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7_tags_15) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7_tags_15[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7_tags_15, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7_tags_15) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7_tags_15[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P7_constr_15, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P7_constr_15, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P7_15, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P7_15, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P7_specs_15 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P7_specs_15 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P8_17[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P8_17[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -505,43 +505,43 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P8_17[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8_tags_17[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8_tags_17[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P8_specs_17 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P8), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P8, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P8_specs_17 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P8), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P8, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8_tags_17, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8_tags_17) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8_tags_17[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8_tags_17, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8_tags_17) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8_tags_17[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8_tags_17, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8_tags_17) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8_tags_17[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8_tags_17, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8_tags_17) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8_tags_17[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P8_constr_17, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P8_constr_17, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P8_17, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P8_17, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P8_specs_17 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P8_specs_17 /* Additional specs */ }; -asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P9_19[] = { +asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P9_19[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) @@ -556,35 +556,35 @@ asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P9_19[] = { "" }, }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9_tags_19[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9_tags_19[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P9_specs_19 = { - sizeof(struct S1AP_ProtocolIE_ContainerList_7875P9), - offsetof(struct S1AP_ProtocolIE_ContainerList_7875P9, _asn_ctx), +asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P9_specs_19 = { + sizeof(struct S1AP_ProtocolIE_ContainerList_7884P9), + offsetof(struct S1AP_ProtocolIE_ContainerList_7884P9, _asn_ctx), 0, /* XER encoding is XMLDelimitedItemList */ }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9 = { "ProtocolIE-ContainerList", "ProtocolIE-ContainerList", &asn_OP_SEQUENCE_OF, - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9_tags_19, - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9_tags_19) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9_tags_19[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9_tags_19, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9_tags_19) - /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9_tags_19[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9_tags_19, + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9_tags_19) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9_tags_19[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9_tags_19, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9_tags_19) + /sizeof(asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9_tags_19[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, #endif /* !defined(ASN_DISABLE_OER_SUPPORT) */ #if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) - &asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P9_constr_19, + &asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P9_constr_19, #endif /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */ SEQUENCE_OF_constraint }, - asn_MBR_S1AP_ProtocolIE_ContainerList_7875P9_19, + asn_MBR_S1AP_ProtocolIE_ContainerList_7884P9_19, 1, /* Single element */ - &asn_SPC_S1AP_ProtocolIE_ContainerList_7875P9_specs_19 /* Additional specs */ + &asn_SPC_S1AP_ProtocolIE_ContainerList_7884P9_specs_19 /* Additional specs */ }; diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerList.h b/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerList.h index 78bbcc9d9..df8e60368 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerList.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -23,108 +23,108 @@ extern "C" { struct S1AP_ProtocolIE_SingleContainer; /* S1AP_ProtocolIE-ContainerList */ -typedef struct S1AP_ProtocolIE_ContainerList_7875P0 { +typedef struct S1AP_ProtocolIE_ContainerList_7884P0 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P0_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P1 { +} S1AP_ProtocolIE_ContainerList_7884P0_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P1 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P1_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P2 { +} S1AP_ProtocolIE_ContainerList_7884P1_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P2 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P2_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P3 { +} S1AP_ProtocolIE_ContainerList_7884P2_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P3 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P3_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P4 { +} S1AP_ProtocolIE_ContainerList_7884P3_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P4 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P4_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P5 { +} S1AP_ProtocolIE_ContainerList_7884P4_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P5 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P5_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P6 { +} S1AP_ProtocolIE_ContainerList_7884P5_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P6 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P6_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P7 { +} S1AP_ProtocolIE_ContainerList_7884P6_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P7 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P7_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P8 { +} S1AP_ProtocolIE_ContainerList_7884P7_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P8 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P8_t; -typedef struct S1AP_ProtocolIE_ContainerList_7875P9 { +} S1AP_ProtocolIE_ContainerList_7884P8_t; +typedef struct S1AP_ProtocolIE_ContainerList_7884P9 { A_SEQUENCE_OF(struct S1AP_ProtocolIE_SingleContainer) list; /* Context for parsing across buffer boundaries */ asn_struct_ctx_t _asn_ctx; -} S1AP_ProtocolIE_ContainerList_7875P9_t; +} S1AP_ProtocolIE_ContainerList_7884P9_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P0; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P0_specs_1; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P0_1[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P0_constr_1; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P1; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P1_specs_3; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P1_3[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P1_constr_3; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P2; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P2_specs_5; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P2_5[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P2_constr_5; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P3; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P3_specs_7; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P3_7[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P3_constr_7; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P4; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P4_specs_9; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P4_9[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P4_constr_9; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P5; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P5_specs_11; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P5_11[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P5_constr_11; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P6; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P6_specs_13; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P6_13[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P6_constr_13; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P7; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P7_specs_15; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P7_15[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P7_constr_15; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P8; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P8_specs_17; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P8_17[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P8_constr_17; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7875P9; -extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7875P9_specs_19; -extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7875P9_19[1]; -extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7875P9_constr_19; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P0; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P0_specs_1; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P0_1[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P0_constr_1; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P1; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P1_specs_3; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P1_3[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P1_constr_3; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P2; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P2_specs_5; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P2_5[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P2_constr_5; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P3; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P3_specs_7; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P3_7[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P3_constr_7; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P4; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P4_specs_9; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P4_9[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P4_constr_9; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P5; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P5_specs_11; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P5_11[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P5_constr_11; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P6; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P6_specs_13; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P6_13[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P6_constr_13; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P7; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P7_specs_15; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P7_15[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P7_constr_15; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P8; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P8_specs_17; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P8_17[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P8_constr_17; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_ContainerList_7884P9; +extern asn_SET_OF_specifics_t asn_SPC_S1AP_ProtocolIE_ContainerList_7884P9_specs_19; +extern asn_TYPE_member_t asn_MBR_S1AP_ProtocolIE_ContainerList_7884P9_19[1]; +extern asn_per_constraints_t asn_PER_type_S1AP_ProtocolIE_ContainerList_7884P9_constr_19; #ifdef __cplusplus } diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerPair.h b/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerPair.h index f8a677a30..b512fadd4 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerPair.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerPair.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerPairList.h b/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerPairList.h index 30a7385ae..4f7b31e89 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerPairList.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-ContainerPairList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-Field.c b/lib/asn1c/s1ap/S1AP_ProtocolIE-Field.c index fa476df2b..248cb2734 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-Field.c +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-Field.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-Field.h b/lib/asn1c/s1ap/S1AP_ProtocolIE-Field.h index f1893f174..b94e06e8b 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-Field.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-Field.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-FieldPair.h b/lib/asn1c/s1ap/S1AP_ProtocolIE-FieldPair.h index 082d07a78..ba3d3ea3d 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-FieldPair.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-FieldPair.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-ID.c b/lib/asn1c/s1ap/S1AP_ProtocolIE-ID.c index 8b6a3e9c5..085ac6d79 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-ID.c +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-ID.h b/lib/asn1c/s1ap/S1AP_ProtocolIE-ID.h index b943565c0..0ed3fbecf 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-ID.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -335,6 +335,7 @@ per_type_encoder_f S1AP_ProtocolIE_ID_encode_aper; #define S1AP_ProtocolIE_ID_id_WUS_Assistance_Information ((S1AP_ProtocolIE_ID_t)323) #define S1AP_ProtocolIE_ID_id_NB_IoT_PagingDRX ((S1AP_ProtocolIE_ID_t)324) #define S1AP_ProtocolIE_ID_id_TraceCollectionEntityURI ((S1AP_ProtocolIE_ID_t)325) +#define S1AP_ProtocolIE_ID_id_EmergencyIndicator ((S1AP_ProtocolIE_ID_t)326) #ifdef __cplusplus } diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-SingleContainer.c b/lib/asn1c/s1ap/S1AP_ProtocolIE-SingleContainer.c index e90ce5a90..38c9fc703 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-SingleContainer.c +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-SingleContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -139,19 +139,19 @@ * This type is implemented using S1AP_E_RABFailedToResumeItemResumeResIEs, * so here we adjust the DEF accordingly. */ -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0_tags_1[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0_tags_1[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0_tags_1, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0_tags_1) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0_tags_1[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0_tags_1, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0_tags_1) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0_tags_1, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0_tags_1) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0_tags_1[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0_tags_1, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0_tags_1) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0_tags_1[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -166,19 +166,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0 = { &asn_SPC_S1AP_E_RABToBeSetupItemBearerSUReqIEs_specs_1 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1_tags_2[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1_tags_2[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1_tags_2, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1_tags_2) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1_tags_2[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1_tags_2, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1_tags_2) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1_tags_2[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1_tags_2, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1_tags_2) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1_tags_2[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1_tags_2, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1_tags_2) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1_tags_2[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -193,19 +193,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1 = { &asn_SPC_S1AP_E_RABSetupItemBearerSUResIEs_specs_5 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2_tags_3[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2_tags_3[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2_tags_3, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2_tags_3) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2_tags_3[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2_tags_3, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2_tags_3) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2_tags_3[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2_tags_3, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2_tags_3) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2_tags_3[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2_tags_3, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2_tags_3) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2_tags_3[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -220,19 +220,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2 = { &asn_SPC_S1AP_E_RABToBeModifiedItemBearerModReqIEs_specs_9 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3_tags_4[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3_tags_4[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3_tags_4, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3_tags_4) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3_tags_4[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3_tags_4, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3_tags_4) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3_tags_4[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3_tags_4, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3_tags_4) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3_tags_4[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3_tags_4, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3_tags_4) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3_tags_4[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -247,19 +247,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3 = { &asn_SPC_S1AP_E_RABModifyItemBearerModResIEs_specs_13 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4_tags_5[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4_tags_5[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4_tags_5, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4_tags_5) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4_tags_5[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4_tags_5, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4_tags_5) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4_tags_5[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4_tags_5, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4_tags_5) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4_tags_5[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4_tags_5, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4_tags_5) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4_tags_5[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -274,19 +274,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4 = { &asn_SPC_S1AP_E_RABReleaseItemBearerRelCompIEs_specs_17 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5_tags_6[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5_tags_6[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5_tags_6, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5_tags_6) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5_tags_6[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5_tags_6, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5_tags_6) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5_tags_6[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5_tags_6, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5_tags_6) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5_tags_6[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5_tags_6, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5_tags_6) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5_tags_6[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -301,19 +301,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5 = { &asn_SPC_S1AP_E_RABToBeSetupItemCtxtSUReqIEs_specs_21 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6_tags_7[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6_tags_7[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6_tags_7, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6_tags_7) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6_tags_7[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6_tags_7, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6_tags_7) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6_tags_7[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6_tags_7, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6_tags_7) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6_tags_7[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6_tags_7, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6_tags_7) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6_tags_7[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -328,19 +328,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6 = { &asn_SPC_S1AP_E_RABSetupItemCtxtSUResIEs_specs_25 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7_tags_8[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7_tags_8[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7_tags_8, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7_tags_8) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7_tags_8[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7_tags_8, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7_tags_8) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7_tags_8[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7_tags_8, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7_tags_8) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7_tags_8[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7_tags_8, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7_tags_8) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7_tags_8[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -355,19 +355,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7 = { &asn_SPC_S1AP_TAIItemIEs_specs_29 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8_tags_9[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8_tags_9[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8_tags_9, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8_tags_9) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8_tags_9[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8_tags_9, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8_tags_9) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8_tags_9[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8_tags_9, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8_tags_9) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8_tags_9[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8_tags_9, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8_tags_9) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8_tags_9[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -382,19 +382,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8 = { &asn_SPC_S1AP_UE_associatedLogicalS1_ConnectionItemRes_specs_33 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9_tags_10[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9_tags_10[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9_tags_10, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9_tags_10) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9_tags_10[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9_tags_10, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9_tags_10) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9_tags_10[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9_tags_10, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9_tags_10) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9_tags_10[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9_tags_10, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9_tags_10) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9_tags_10[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -409,19 +409,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9 = { &asn_SPC_S1AP_UE_associatedLogicalS1_ConnectionItemResAck_specs_37 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10_tags_11[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10_tags_11[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10_tags_11, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10_tags_11) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10_tags_11[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10_tags_11, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10_tags_11) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10_tags_11[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10_tags_11, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10_tags_11) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10_tags_11[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10_tags_11, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10_tags_11) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10_tags_11[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -436,19 +436,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10 = { &asn_SPC_S1AP_E_RABModifyItemBearerModConfIEs_specs_41 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11_tags_12[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11_tags_12[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11_tags_12, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11_tags_12) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11_tags_12[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11_tags_12, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11_tags_12) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11_tags_12[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11_tags_12, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11_tags_12) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11_tags_12[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11_tags_12, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11_tags_12) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11_tags_12[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -463,19 +463,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11 = { &asn_SPC_S1AP_Bearers_SubjectToStatusTransfer_ItemIEs_specs_45 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12_tags_13[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12_tags_13[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12_tags_13, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12_tags_13) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12_tags_13[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12_tags_13, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12_tags_13) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12_tags_13[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12_tags_13, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12_tags_13) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12_tags_13[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12_tags_13, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12_tags_13) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12_tags_13[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -490,19 +490,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12 = { &asn_SPC_S1AP_Bearers_SubjectToEarlyStatusTransfer_ItemIEs_specs_49 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13_tags_14[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13_tags_14[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13_tags_14, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13_tags_14) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13_tags_14[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13_tags_14, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13_tags_14) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13_tags_14[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13_tags_14, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13_tags_14) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13_tags_14[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13_tags_14, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13_tags_14) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13_tags_14[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -517,19 +517,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13 = { &asn_SPC_S1AP_DAPSResponseInfoListIEs_specs_53 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14_tags_15[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14_tags_15[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14_tags_15, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14_tags_15) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14_tags_15[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14_tags_15, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14_tags_15) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14_tags_15[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14_tags_15, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14_tags_15) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14_tags_15[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14_tags_15, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14_tags_15) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14_tags_15[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -544,19 +544,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14 = { &asn_SPC_S1AP_E_RABInformationListIEs_specs_57 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15_tags_16[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15_tags_16[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15_tags_16, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15_tags_16) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15_tags_16[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15_tags_16, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15_tags_16) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15_tags_16[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15_tags_16, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15_tags_16) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15_tags_16[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15_tags_16, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15_tags_16) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15_tags_16[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -571,19 +571,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15 = { &asn_SPC_S1AP_E_RABItemIEs_specs_61 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16_tags_17[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16_tags_17[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16_tags_17, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16_tags_17) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16_tags_17[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16_tags_17, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16_tags_17) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16_tags_17[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16_tags_17, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16_tags_17) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16_tags_17[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16_tags_17, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16_tags_17) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16_tags_17[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -598,19 +598,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16 = { &asn_SPC_S1AP_E_RABUsageReportItemIEs_specs_65 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17_tags_18[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17_tags_18[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17_tags_18, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17_tags_18) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17_tags_18[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17_tags_18, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17_tags_18) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17_tags_18[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17_tags_18, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17_tags_18) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17_tags_18[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17_tags_18, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17_tags_18) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17_tags_18[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -625,19 +625,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17 = { &asn_SPC_S1AP_MDTMode_ExtensionIE_specs_69 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18_tags_19[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18_tags_19[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18_tags_19, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18_tags_19) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18_tags_19[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18_tags_19, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18_tags_19) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18_tags_19[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18_tags_19, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18_tags_19) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18_tags_19[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18_tags_19, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18_tags_19) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18_tags_19[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -652,19 +652,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18 = { &asn_SPC_S1AP_RecommendedCellItemIEs_specs_73 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19_tags_20[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19_tags_20[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19_tags_20, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19_tags_20) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19_tags_20[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19_tags_20, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19_tags_20) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19_tags_20[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19_tags_20, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19_tags_20) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19_tags_20[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19_tags_20, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19_tags_20) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19_tags_20[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -679,19 +679,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19 = { &asn_SPC_S1AP_RecommendedENBItemIEs_specs_77 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20_tags_21[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20_tags_21[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20_tags_21, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20_tags_21) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20_tags_21[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20_tags_21, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20_tags_21) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20_tags_21[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20_tags_21, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20_tags_21) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20_tags_21[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20_tags_21, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20_tags_21) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20_tags_21[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -706,19 +706,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20 = { &asn_SPC_S1AP_SecondaryRATDataUsageReportItemIEs_specs_81 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21_tags_22[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21_tags_22[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21_tags_22, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21_tags_22) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21_tags_22[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21_tags_22, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21_tags_22) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21_tags_22[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21_tags_22, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21_tags_22) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21_tags_22[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21_tags_22, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21_tags_22) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21_tags_22[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -733,19 +733,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21 = { &asn_SPC_S1AP_SONInformation_ExtensionIE_specs_85 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22_tags_23[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22_tags_23[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22_tags_23, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22_tags_23) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22_tags_23[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22_tags_23, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22_tags_23) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22_tags_23[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22_tags_23, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22_tags_23) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22_tags_23[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22_tags_23, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22_tags_23) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22_tags_23[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -760,19 +760,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22 = { &asn_SPC_S1AP_SourceNodeID_ExtensionIE_specs_89 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23_tags_24[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23_tags_24[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23_tags_24, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23_tags_24) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23_tags_24[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23_tags_24, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23_tags_24) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23_tags_24[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23_tags_24, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23_tags_24) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23_tags_24[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23_tags_24, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23_tags_24) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23_tags_24[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -787,19 +787,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23 = { &asn_SPC_S1AP_E_RABDataForwardingItemIEs_specs_481 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24_tags_25[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24_tags_25[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24_tags_25, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24_tags_25) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24_tags_25[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24_tags_25, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24_tags_25) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24_tags_25[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24_tags_25, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24_tags_25) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24_tags_25[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24_tags_25, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24_tags_25) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24_tags_25[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -814,19 +814,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24 = { &asn_SPC_S1AP_E_RABToBeSetupItemHOReqIEs_specs_485 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25_tags_26[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25_tags_26[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25_tags_26, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25_tags_26) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25_tags_26[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25_tags_26, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25_tags_26) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25_tags_26[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25_tags_26, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25_tags_26) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25_tags_26[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25_tags_26, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25_tags_26) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25_tags_26[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -841,19 +841,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25 = { &asn_SPC_S1AP_E_RABAdmittedItemIEs_specs_489 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26_tags_27[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26_tags_27[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26_tags_27, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26_tags_27) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26_tags_27[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26_tags_27, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26_tags_27) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26_tags_27[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26_tags_27, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26_tags_27) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26_tags_27[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26_tags_27, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26_tags_27) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26_tags_27[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -868,19 +868,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26 = { &asn_SPC_S1AP_E_RABFailedtoSetupItemHOReqAckIEs_specs_493 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27_tags_28[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27_tags_28[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27_tags_28, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27_tags_28) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27_tags_28[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27_tags_28, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27_tags_28) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27_tags_28[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27_tags_28, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27_tags_28) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27_tags_28[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27_tags_28, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27_tags_28) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27_tags_28[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -895,19 +895,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27 = { &asn_SPC_S1AP_E_RABToBeSwitchedDLItemIEs_specs_497 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28_tags_29[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28_tags_29[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28_tags_29, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28_tags_29) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28_tags_29[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28_tags_29, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28_tags_29) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28_tags_29[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28_tags_29, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28_tags_29) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28_tags_29[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28_tags_29, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28_tags_29) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28_tags_29[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -922,19 +922,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28 = { &asn_SPC_S1AP_E_RABToBeSwitchedULItemIEs_specs_501 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29_tags_30[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29_tags_30[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29_tags_30, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29_tags_30) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29_tags_30[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29_tags_30, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29_tags_30) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29_tags_30[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29_tags_30, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29_tags_30) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29_tags_30[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29_tags_30, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29_tags_30) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29_tags_30[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -949,19 +949,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29 = { &asn_SPC_S1AP_E_RABToBeModifiedItemBearerModIndIEs_specs_505 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30_tags_31[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30_tags_31[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30_tags_31, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30_tags_31) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30_tags_31[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30_tags_31, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30_tags_31) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30_tags_31[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30_tags_31, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30_tags_31) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30_tags_31[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30_tags_31, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30_tags_31) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30_tags_31[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -976,19 +976,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30 = { &asn_SPC_S1AP_E_RABNotToBeModifiedItemBearerModIndIEs_specs_509 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31_tags_32[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31_tags_32[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31_tags_32, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31_tags_32) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31_tags_32[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31_tags_32, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31_tags_32) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31_tags_32[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31_tags_32, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31_tags_32) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31_tags_32[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31_tags_32, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31_tags_32) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31_tags_32[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, @@ -1003,19 +1003,19 @@ asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31 = { &asn_SPC_S1AP_E_RABFailedToResumeItemResumeReqIEs_specs_513 /* Additional specs */ }; -static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32_tags_33[] = { +static const ber_tlv_tag_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32_tags_33[] = { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)) }; -asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32 = { +asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32 = { "ProtocolIE-SingleContainer", "ProtocolIE-SingleContainer", &asn_OP_SEQUENCE, - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32_tags_33, - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32_tags_33) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32_tags_33[0]), /* 1 */ - asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32_tags_33, /* Same as above */ - sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32_tags_33) - /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32_tags_33[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32_tags_33, + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32_tags_33) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32_tags_33[0]), /* 1 */ + asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32_tags_33, /* Same as above */ + sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32_tags_33) + /sizeof(asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32_tags_33[0]), /* 1 */ { #if !defined(ASN_DISABLE_OER_SUPPORT) 0, diff --git a/lib/asn1c/s1ap/S1AP_ProtocolIE-SingleContainer.h b/lib/asn1c/s1ap/S1AP_ProtocolIE-SingleContainer.h index 203841329..1719f3f17 100644 --- a/lib/asn1c/s1ap/S1AP_ProtocolIE-SingleContainer.h +++ b/lib/asn1c/s1ap/S1AP_ProtocolIE-SingleContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-Containers" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,239 +19,239 @@ extern "C" { #endif /* S1AP_ProtocolIE-SingleContainer */ -typedef S1AP_E_RABToBeSetupItemBearerSUReqIEs_t S1AP_ProtocolIE_SingleContainer_7841P0_t; -typedef S1AP_E_RABSetupItemBearerSUResIEs_t S1AP_ProtocolIE_SingleContainer_7841P1_t; -typedef S1AP_E_RABToBeModifiedItemBearerModReqIEs_t S1AP_ProtocolIE_SingleContainer_7841P2_t; -typedef S1AP_E_RABModifyItemBearerModResIEs_t S1AP_ProtocolIE_SingleContainer_7841P3_t; -typedef S1AP_E_RABReleaseItemBearerRelCompIEs_t S1AP_ProtocolIE_SingleContainer_7841P4_t; -typedef S1AP_E_RABToBeSetupItemCtxtSUReqIEs_t S1AP_ProtocolIE_SingleContainer_7841P5_t; -typedef S1AP_E_RABSetupItemCtxtSUResIEs_t S1AP_ProtocolIE_SingleContainer_7841P6_t; -typedef S1AP_TAIItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P7_t; -typedef S1AP_UE_associatedLogicalS1_ConnectionItemRes_t S1AP_ProtocolIE_SingleContainer_7841P8_t; -typedef S1AP_UE_associatedLogicalS1_ConnectionItemResAck_t S1AP_ProtocolIE_SingleContainer_7841P9_t; -typedef S1AP_E_RABModifyItemBearerModConfIEs_t S1AP_ProtocolIE_SingleContainer_7841P10_t; -typedef S1AP_Bearers_SubjectToStatusTransfer_ItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P11_t; -typedef S1AP_Bearers_SubjectToEarlyStatusTransfer_ItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P12_t; -typedef S1AP_DAPSResponseInfoListIEs_t S1AP_ProtocolIE_SingleContainer_7841P13_t; -typedef S1AP_E_RABInformationListIEs_t S1AP_ProtocolIE_SingleContainer_7841P14_t; -typedef S1AP_E_RABItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P15_t; -typedef S1AP_E_RABUsageReportItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P16_t; -typedef S1AP_MDTMode_ExtensionIE_t S1AP_ProtocolIE_SingleContainer_7841P17_t; -typedef S1AP_RecommendedCellItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P18_t; -typedef S1AP_RecommendedENBItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P19_t; -typedef S1AP_SecondaryRATDataUsageReportItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P20_t; -typedef S1AP_SONInformation_ExtensionIE_t S1AP_ProtocolIE_SingleContainer_7841P21_t; -typedef S1AP_SourceNodeID_ExtensionIE_t S1AP_ProtocolIE_SingleContainer_7841P22_t; -typedef S1AP_E_RABDataForwardingItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P23_t; -typedef S1AP_E_RABToBeSetupItemHOReqIEs_t S1AP_ProtocolIE_SingleContainer_7841P24_t; -typedef S1AP_E_RABAdmittedItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P25_t; -typedef S1AP_E_RABFailedtoSetupItemHOReqAckIEs_t S1AP_ProtocolIE_SingleContainer_7841P26_t; -typedef S1AP_E_RABToBeSwitchedDLItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P27_t; -typedef S1AP_E_RABToBeSwitchedULItemIEs_t S1AP_ProtocolIE_SingleContainer_7841P28_t; -typedef S1AP_E_RABToBeModifiedItemBearerModIndIEs_t S1AP_ProtocolIE_SingleContainer_7841P29_t; -typedef S1AP_E_RABNotToBeModifiedItemBearerModIndIEs_t S1AP_ProtocolIE_SingleContainer_7841P30_t; -typedef S1AP_E_RABFailedToResumeItemResumeReqIEs_t S1AP_ProtocolIE_SingleContainer_7841P31_t; -typedef S1AP_E_RABFailedToResumeItemResumeResIEs_t S1AP_ProtocolIE_SingleContainer_7841P32_t; +typedef S1AP_E_RABToBeSetupItemBearerSUReqIEs_t S1AP_ProtocolIE_SingleContainer_7850P0_t; +typedef S1AP_E_RABSetupItemBearerSUResIEs_t S1AP_ProtocolIE_SingleContainer_7850P1_t; +typedef S1AP_E_RABToBeModifiedItemBearerModReqIEs_t S1AP_ProtocolIE_SingleContainer_7850P2_t; +typedef S1AP_E_RABModifyItemBearerModResIEs_t S1AP_ProtocolIE_SingleContainer_7850P3_t; +typedef S1AP_E_RABReleaseItemBearerRelCompIEs_t S1AP_ProtocolIE_SingleContainer_7850P4_t; +typedef S1AP_E_RABToBeSetupItemCtxtSUReqIEs_t S1AP_ProtocolIE_SingleContainer_7850P5_t; +typedef S1AP_E_RABSetupItemCtxtSUResIEs_t S1AP_ProtocolIE_SingleContainer_7850P6_t; +typedef S1AP_TAIItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P7_t; +typedef S1AP_UE_associatedLogicalS1_ConnectionItemRes_t S1AP_ProtocolIE_SingleContainer_7850P8_t; +typedef S1AP_UE_associatedLogicalS1_ConnectionItemResAck_t S1AP_ProtocolIE_SingleContainer_7850P9_t; +typedef S1AP_E_RABModifyItemBearerModConfIEs_t S1AP_ProtocolIE_SingleContainer_7850P10_t; +typedef S1AP_Bearers_SubjectToStatusTransfer_ItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P11_t; +typedef S1AP_Bearers_SubjectToEarlyStatusTransfer_ItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P12_t; +typedef S1AP_DAPSResponseInfoListIEs_t S1AP_ProtocolIE_SingleContainer_7850P13_t; +typedef S1AP_E_RABInformationListIEs_t S1AP_ProtocolIE_SingleContainer_7850P14_t; +typedef S1AP_E_RABItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P15_t; +typedef S1AP_E_RABUsageReportItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P16_t; +typedef S1AP_MDTMode_ExtensionIE_t S1AP_ProtocolIE_SingleContainer_7850P17_t; +typedef S1AP_RecommendedCellItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P18_t; +typedef S1AP_RecommendedENBItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P19_t; +typedef S1AP_SecondaryRATDataUsageReportItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P20_t; +typedef S1AP_SONInformation_ExtensionIE_t S1AP_ProtocolIE_SingleContainer_7850P21_t; +typedef S1AP_SourceNodeID_ExtensionIE_t S1AP_ProtocolIE_SingleContainer_7850P22_t; +typedef S1AP_E_RABDataForwardingItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P23_t; +typedef S1AP_E_RABToBeSetupItemHOReqIEs_t S1AP_ProtocolIE_SingleContainer_7850P24_t; +typedef S1AP_E_RABAdmittedItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P25_t; +typedef S1AP_E_RABFailedtoSetupItemHOReqAckIEs_t S1AP_ProtocolIE_SingleContainer_7850P26_t; +typedef S1AP_E_RABToBeSwitchedDLItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P27_t; +typedef S1AP_E_RABToBeSwitchedULItemIEs_t S1AP_ProtocolIE_SingleContainer_7850P28_t; +typedef S1AP_E_RABToBeModifiedItemBearerModIndIEs_t S1AP_ProtocolIE_SingleContainer_7850P29_t; +typedef S1AP_E_RABNotToBeModifiedItemBearerModIndIEs_t S1AP_ProtocolIE_SingleContainer_7850P30_t; +typedef S1AP_E_RABFailedToResumeItemResumeReqIEs_t S1AP_ProtocolIE_SingleContainer_7850P31_t; +typedef S1AP_E_RABFailedToResumeItemResumeResIEs_t S1AP_ProtocolIE_SingleContainer_7850P32_t; /* Implementation */ -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P0; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P0_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P0_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P0_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P0_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P0_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P1; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P1_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P1_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P1_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P1_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P1_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P2; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P2_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P2_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P2_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P2_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P2_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P3; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P3_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P3_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P3_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P3_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P3_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P4; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P4_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P4_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P4_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P4_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P4_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P5; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P5_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P5_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P5_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P5_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P5_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P6; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P6_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P6_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P6_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P6_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P6_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P7_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P7_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P7_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P7_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P7_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P8_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P8_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P8_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P8_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P8_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P9_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P9_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P9_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P9_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P9_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P10; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P10_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P10_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P10_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P10_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P10_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P11; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P11_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P11_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P11_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P11_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P11_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P12; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P12_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P12_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P12_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P12_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P12_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P13; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P13_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P13_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P13_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P13_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P13_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P14; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P14_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P14_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P14_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P14_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P14_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P15; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P15_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P15_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P15_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P15_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P15_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P16; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P16_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P16_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P16_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P16_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P16_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P17; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P17_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P17_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P17_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P17_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P17_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P18_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P18_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P18_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P18_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P18_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P19_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P19_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P19_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P19_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P19_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P20_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P20_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P20_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P20_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P20_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P21; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P21_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P21_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P21_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P21_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P21_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P22; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P22_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P22_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P22_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P22_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P22_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P23; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P23_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P23_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P23_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P23_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P23_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P24; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P24_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P24_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P24_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P24_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P24_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P25; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P25_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P25_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P25_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P25_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P25_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P26; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P26_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P26_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P26_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P26_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P26_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P27; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P27_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P27_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P27_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P27_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P27_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P28; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P28_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P28_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P28_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P28_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P28_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P29; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P29_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P29_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P29_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P29_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P29_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P30; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P30_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P30_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P30_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P30_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P30_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P31; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P31_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P31_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P31_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P31_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P31_encode_aper; -extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P32; -asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7841P32_free; -asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7841P32_print; -asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7841P32_constraint; -per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7841P32_decode_aper; -per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7841P32_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P0; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P0_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P0_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P0_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P0_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P0_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P1; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P1_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P1_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P1_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P1_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P1_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P2; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P2_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P2_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P2_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P2_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P2_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P3; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P3_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P3_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P3_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P3_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P3_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P4; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P4_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P4_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P4_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P4_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P4_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P5; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P5_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P5_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P5_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P5_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P5_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P6; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P6_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P6_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P6_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P6_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P6_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P7_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P7_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P7_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P7_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P7_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P8_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P8_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P8_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P8_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P8_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P9_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P9_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P9_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P9_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P9_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P10; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P10_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P10_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P10_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P10_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P10_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P11; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P11_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P11_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P11_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P11_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P11_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P12; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P12_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P12_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P12_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P12_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P12_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P13; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P13_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P13_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P13_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P13_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P13_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P14; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P14_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P14_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P14_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P14_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P14_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P15; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P15_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P15_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P15_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P15_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P15_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P16; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P16_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P16_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P16_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P16_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P16_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P17; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P17_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P17_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P17_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P17_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P17_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P18_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P18_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P18_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P18_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P18_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P19_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P19_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P19_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P19_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P19_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P20_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P20_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P20_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P20_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P20_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P21; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P21_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P21_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P21_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P21_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P21_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P22; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P22_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P22_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P22_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P22_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P22_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P23; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P23_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P23_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P23_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P23_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P23_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P24; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P24_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P24_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P24_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P24_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P24_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P25; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P25_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P25_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P25_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P25_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P25_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P26; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P26_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P26_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P26_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P26_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P26_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P27; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P27_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P27_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P27_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P27_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P27_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P28; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P28_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P28_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P28_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P28_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P28_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P29; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P29_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P29_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P29_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P29_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P29_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P30; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P30_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P30_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P30_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P30_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P30_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P31; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P31_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P31_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P31_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P31_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P31_encode_aper; +extern asn_TYPE_descriptor_t asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P32; +asn_struct_free_f S1AP_ProtocolIE_SingleContainer_7850P32_free; +asn_struct_print_f S1AP_ProtocolIE_SingleContainer_7850P32_print; +asn_constr_check_f S1AP_ProtocolIE_SingleContainer_7850P32_constraint; +per_type_decoder_f S1AP_ProtocolIE_SingleContainer_7850P32_decode_aper; +per_type_encoder_f S1AP_ProtocolIE_SingleContainer_7850P32_encode_aper; #ifdef __cplusplus } diff --git a/lib/asn1c/s1ap/S1AP_QCI.c b/lib/asn1c/s1ap/S1AP_QCI.c index 12d95300e..3d734307e 100644 --- a/lib/asn1c/s1ap/S1AP_QCI.c +++ b/lib/asn1c/s1ap/S1AP_QCI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_QCI.h b/lib/asn1c/s1ap/S1AP_QCI.h index e54a02b5b..a10dde442 100644 --- a/lib/asn1c/s1ap/S1AP_QCI.h +++ b/lib/asn1c/s1ap/S1AP_QCI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RAC.c b/lib/asn1c/s1ap/S1AP_RAC.c index ca5f0fb55..87ce89b8d 100644 --- a/lib/asn1c/s1ap/S1AP_RAC.c +++ b/lib/asn1c/s1ap/S1AP_RAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RAC.h b/lib/asn1c/s1ap/S1AP_RAC.h index 04ad04375..477e41211 100644 --- a/lib/asn1c/s1ap/S1AP_RAC.h +++ b/lib/asn1c/s1ap/S1AP_RAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RAN-UE-NGAP-ID.c b/lib/asn1c/s1ap/S1AP_RAN-UE-NGAP-ID.c index e88cafd82..85484db3d 100644 --- a/lib/asn1c/s1ap/S1AP_RAN-UE-NGAP-ID.c +++ b/lib/asn1c/s1ap/S1AP_RAN-UE-NGAP-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RAN-UE-NGAP-ID.h b/lib/asn1c/s1ap/S1AP_RAN-UE-NGAP-ID.h index f1146d45b..99cdcfad8 100644 --- a/lib/asn1c/s1ap/S1AP_RAN-UE-NGAP-ID.h +++ b/lib/asn1c/s1ap/S1AP_RAN-UE-NGAP-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RAT-Type.c b/lib/asn1c/s1ap/S1AP_RAT-Type.c index f04726255..593bf964a 100644 --- a/lib/asn1c/s1ap/S1AP_RAT-Type.c +++ b/lib/asn1c/s1ap/S1AP_RAT-Type.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RAT-Type.h b/lib/asn1c/s1ap/S1AP_RAT-Type.h index 3d251f149..680ec0ae1 100644 --- a/lib/asn1c/s1ap/S1AP_RAT-Type.h +++ b/lib/asn1c/s1ap/S1AP_RAT-Type.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RIMInformation.c b/lib/asn1c/s1ap/S1AP_RIMInformation.c index 19c4e69ea..7f8b3eef7 100644 --- a/lib/asn1c/s1ap/S1AP_RIMInformation.c +++ b/lib/asn1c/s1ap/S1AP_RIMInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RIMInformation.h b/lib/asn1c/s1ap/S1AP_RIMInformation.h index 4b0f68c37..8b34004f6 100644 --- a/lib/asn1c/s1ap/S1AP_RIMInformation.h +++ b/lib/asn1c/s1ap/S1AP_RIMInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RIMRoutingAddress.c b/lib/asn1c/s1ap/S1AP_RIMRoutingAddress.c index 2b6961e7a..fccf7bac3 100644 --- a/lib/asn1c/s1ap/S1AP_RIMRoutingAddress.c +++ b/lib/asn1c/s1ap/S1AP_RIMRoutingAddress.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RIMRoutingAddress.h b/lib/asn1c/s1ap/S1AP_RIMRoutingAddress.h index 613af4f12..00e7cedaf 100644 --- a/lib/asn1c/s1ap/S1AP_RIMRoutingAddress.h +++ b/lib/asn1c/s1ap/S1AP_RIMRoutingAddress.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RIMTransfer.c b/lib/asn1c/s1ap/S1AP_RIMTransfer.c index b8c473492..6693b0dd5 100644 --- a/lib/asn1c/s1ap/S1AP_RIMTransfer.c +++ b/lib/asn1c/s1ap/S1AP_RIMTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -47,7 +47,7 @@ asn_TYPE_member_t asn_MBR_S1AP_RIMTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_RIMTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P115, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P115, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RIMTransfer.h b/lib/asn1c/s1ap/S1AP_RIMTransfer.h index 1e7724b20..5a217ed9e 100644 --- a/lib/asn1c/s1ap/S1AP_RIMTransfer.h +++ b/lib/asn1c/s1ap/S1AP_RIMTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RLFReportInformation.c b/lib/asn1c/s1ap/S1AP_RLFReportInformation.c index 6be0bc9c7..c85176d36 100644 --- a/lib/asn1c/s1ap/S1AP_RLFReportInformation.c +++ b/lib/asn1c/s1ap/S1AP_RLFReportInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_RLFReportInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_RLFReportInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P116, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P116, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RLFReportInformation.h b/lib/asn1c/s1ap/S1AP_RLFReportInformation.h index 075747130..91f276b2f 100644 --- a/lib/asn1c/s1ap/S1AP_RLFReportInformation.h +++ b/lib/asn1c/s1ap/S1AP_RLFReportInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RNC-ID.c b/lib/asn1c/s1ap/S1AP_RNC-ID.c index fe6919d25..15ea52670 100644 --- a/lib/asn1c/s1ap/S1AP_RNC-ID.c +++ b/lib/asn1c/s1ap/S1AP_RNC-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RNC-ID.h b/lib/asn1c/s1ap/S1AP_RNC-ID.h index 8322f2b1d..cb5c2f6b0 100644 --- a/lib/asn1c/s1ap/S1AP_RNC-ID.h +++ b/lib/asn1c/s1ap/S1AP_RNC-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RRC-Container.c b/lib/asn1c/s1ap/S1AP_RRC-Container.c index 8ffd4f2c6..30dc44baf 100644 --- a/lib/asn1c/s1ap/S1AP_RRC-Container.c +++ b/lib/asn1c/s1ap/S1AP_RRC-Container.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RRC-Container.h b/lib/asn1c/s1ap/S1AP_RRC-Container.h index 7f64587c2..39dd65993 100644 --- a/lib/asn1c/s1ap/S1AP_RRC-Container.h +++ b/lib/asn1c/s1ap/S1AP_RRC-Container.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RRC-Establishment-Cause.c b/lib/asn1c/s1ap/S1AP_RRC-Establishment-Cause.c index 6a23aee68..0cc4c6256 100644 --- a/lib/asn1c/s1ap/S1AP_RRC-Establishment-Cause.c +++ b/lib/asn1c/s1ap/S1AP_RRC-Establishment-Cause.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RRC-Establishment-Cause.h b/lib/asn1c/s1ap/S1AP_RRC-Establishment-Cause.h index fb99b9f2e..ce7a1b179 100644 --- a/lib/asn1c/s1ap/S1AP_RRC-Establishment-Cause.h +++ b/lib/asn1c/s1ap/S1AP_RRC-Establishment-Cause.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Range.c b/lib/asn1c/s1ap/S1AP_Range.c index 5e740a426..4c223a94f 100644 --- a/lib/asn1c/s1ap/S1AP_Range.c +++ b/lib/asn1c/s1ap/S1AP_Range.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Range.h b/lib/asn1c/s1ap/S1AP_Range.h index 582fe0062..c50947018 100644 --- a/lib/asn1c/s1ap/S1AP_Range.h +++ b/lib/asn1c/s1ap/S1AP_Range.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsExtended.c b/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsExtended.c index b1d9b095f..063507a94 100644 --- a/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsExtended.c +++ b/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsExtended.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsExtended.h b/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsExtended.h index 70ec78267..a343f85c7 100644 --- a/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsExtended.h +++ b/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsExtended.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsPDCP-SNlength18.c b/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsPDCP-SNlength18.c index f9d61f7a2..497451f4c 100644 --- a/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsPDCP-SNlength18.c +++ b/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsPDCP-SNlength18.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsPDCP-SNlength18.h b/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsPDCP-SNlength18.h index 34605b573..b5c6f0391 100644 --- a/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsPDCP-SNlength18.h +++ b/lib/asn1c/s1ap/S1AP_ReceiveStatusOfULPDCPSDUsPDCP-SNlength18.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReceiveStatusofULPDCPSDUs.c b/lib/asn1c/s1ap/S1AP_ReceiveStatusofULPDCPSDUs.c index 303c07146..88b6784c7 100644 --- a/lib/asn1c/s1ap/S1AP_ReceiveStatusofULPDCPSDUs.c +++ b/lib/asn1c/s1ap/S1AP_ReceiveStatusofULPDCPSDUs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReceiveStatusofULPDCPSDUs.h b/lib/asn1c/s1ap/S1AP_ReceiveStatusofULPDCPSDUs.h index e0e149b3b..e9c3aea09 100644 --- a/lib/asn1c/s1ap/S1AP_ReceiveStatusofULPDCPSDUs.h +++ b/lib/asn1c/s1ap/S1AP_ReceiveStatusofULPDCPSDUs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RecommendedCellItem.c b/lib/asn1c/s1ap/S1AP_RecommendedCellItem.c index 3d1694bdf..8e97780c3 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedCellItem.c +++ b/lib/asn1c/s1ap/S1AP_RecommendedCellItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -78,7 +78,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_RecommendedCellItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_RecommendedCellItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P111, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P111, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RecommendedCellItem.h b/lib/asn1c/s1ap/S1AP_RecommendedCellItem.h index b960dee1d..94cd537ca 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedCellItem.h +++ b/lib/asn1c/s1ap/S1AP_RecommendedCellItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RecommendedCellList.c b/lib/asn1c/s1ap/S1AP_RecommendedCellList.c index 8e5e50b26..a40cea082 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedCellList.c +++ b/lib/asn1c/s1ap/S1AP_RecommendedCellList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ asn_TYPE_member_t asn_MBR_S1AP_RecommendedCellList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P18, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P18, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RecommendedCellList.h b/lib/asn1c/s1ap/S1AP_RecommendedCellList.h index b5c34ee34..5bbc8570d 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedCellList.h +++ b/lib/asn1c/s1ap/S1AP_RecommendedCellList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RecommendedCellsForPaging.c b/lib/asn1c/s1ap/S1AP_RecommendedCellsForPaging.c index a4a4b6782..a41b3f0cb 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedCellsForPaging.c +++ b/lib/asn1c/s1ap/S1AP_RecommendedCellsForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_RecommendedCellsForPaging_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_RecommendedCellsForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P110, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P110, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RecommendedCellsForPaging.h b/lib/asn1c/s1ap/S1AP_RecommendedCellsForPaging.h index 0541647f0..d1ce6fed9 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedCellsForPaging.h +++ b/lib/asn1c/s1ap/S1AP_RecommendedCellsForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RecommendedENBItem.c b/lib/asn1c/s1ap/S1AP_RecommendedENBItem.c index 36324ab28..e1b01289f 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedENBItem.c +++ b/lib/asn1c/s1ap/S1AP_RecommendedENBItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_RecommendedENBItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_RecommendedENBItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P113, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P113, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RecommendedENBItem.h b/lib/asn1c/s1ap/S1AP_RecommendedENBItem.h index 1771b7aae..917ad0f76 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedENBItem.h +++ b/lib/asn1c/s1ap/S1AP_RecommendedENBItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RecommendedENBList.c b/lib/asn1c/s1ap/S1AP_RecommendedENBList.c index ef85d1a55..3f9902347 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedENBList.c +++ b/lib/asn1c/s1ap/S1AP_RecommendedENBList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ asn_TYPE_member_t asn_MBR_S1AP_RecommendedENBList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P19, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P19, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RecommendedENBList.h b/lib/asn1c/s1ap/S1AP_RecommendedENBList.h index 94f6cc440..2136f4cf0 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedENBList.h +++ b/lib/asn1c/s1ap/S1AP_RecommendedENBList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RecommendedENBsForPaging.c b/lib/asn1c/s1ap/S1AP_RecommendedENBsForPaging.c index f6e523977..82b1330fb 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedENBsForPaging.c +++ b/lib/asn1c/s1ap/S1AP_RecommendedENBsForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_RecommendedENBsForPaging_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_RecommendedENBsForPaging, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P112, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P112, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RecommendedENBsForPaging.h b/lib/asn1c/s1ap/S1AP_RecommendedENBsForPaging.h index 15d502198..9cd6c711b 100644 --- a/lib/asn1c/s1ap/S1AP_RecommendedENBsForPaging.h +++ b/lib/asn1c/s1ap/S1AP_RecommendedENBsForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RelativeMMECapacity.c b/lib/asn1c/s1ap/S1AP_RelativeMMECapacity.c index 0b75ccd1d..f21e742ea 100644 --- a/lib/asn1c/s1ap/S1AP_RelativeMMECapacity.c +++ b/lib/asn1c/s1ap/S1AP_RelativeMMECapacity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RelativeMMECapacity.h b/lib/asn1c/s1ap/S1AP_RelativeMMECapacity.h index 94d039549..f80f62bf8 100644 --- a/lib/asn1c/s1ap/S1AP_RelativeMMECapacity.h +++ b/lib/asn1c/s1ap/S1AP_RelativeMMECapacity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RelayNode-Indicator.c b/lib/asn1c/s1ap/S1AP_RelayNode-Indicator.c index bd6ee0b2c..a51c72c6d 100644 --- a/lib/asn1c/s1ap/S1AP_RelayNode-Indicator.c +++ b/lib/asn1c/s1ap/S1AP_RelayNode-Indicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RelayNode-Indicator.h b/lib/asn1c/s1ap/S1AP_RelayNode-Indicator.h index f964af29f..541a2a3cc 100644 --- a/lib/asn1c/s1ap/S1AP_RelayNode-Indicator.h +++ b/lib/asn1c/s1ap/S1AP_RelayNode-Indicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RepetitionPeriod.c b/lib/asn1c/s1ap/S1AP_RepetitionPeriod.c index 879fdabfe..95739c15b 100644 --- a/lib/asn1c/s1ap/S1AP_RepetitionPeriod.c +++ b/lib/asn1c/s1ap/S1AP_RepetitionPeriod.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RepetitionPeriod.h b/lib/asn1c/s1ap/S1AP_RepetitionPeriod.h index d3604c05a..1da2a08d4 100644 --- a/lib/asn1c/s1ap/S1AP_RepetitionPeriod.h +++ b/lib/asn1c/s1ap/S1AP_RepetitionPeriod.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReportAmountMDT.c b/lib/asn1c/s1ap/S1AP_ReportAmountMDT.c index e88c8bf5c..171cf3fe3 100644 --- a/lib/asn1c/s1ap/S1AP_ReportAmountMDT.c +++ b/lib/asn1c/s1ap/S1AP_ReportAmountMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReportAmountMDT.h b/lib/asn1c/s1ap/S1AP_ReportAmountMDT.h index 6cf0ceb11..9e88aa652 100644 --- a/lib/asn1c/s1ap/S1AP_ReportAmountMDT.h +++ b/lib/asn1c/s1ap/S1AP_ReportAmountMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReportArea.c b/lib/asn1c/s1ap/S1AP_ReportArea.c index 33206fc02..1df8937db 100644 --- a/lib/asn1c/s1ap/S1AP_ReportArea.c +++ b/lib/asn1c/s1ap/S1AP_ReportArea.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReportArea.h b/lib/asn1c/s1ap/S1AP_ReportArea.h index 58649190d..9916405d7 100644 --- a/lib/asn1c/s1ap/S1AP_ReportArea.h +++ b/lib/asn1c/s1ap/S1AP_ReportArea.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReportIntervalMDT.c b/lib/asn1c/s1ap/S1AP_ReportIntervalMDT.c index 4b3f4e725..7533facaa 100644 --- a/lib/asn1c/s1ap/S1AP_ReportIntervalMDT.c +++ b/lib/asn1c/s1ap/S1AP_ReportIntervalMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ReportIntervalMDT.h b/lib/asn1c/s1ap/S1AP_ReportIntervalMDT.h index 19da5b0a1..e135e7425 100644 --- a/lib/asn1c/s1ap/S1AP_ReportIntervalMDT.h +++ b/lib/asn1c/s1ap/S1AP_ReportIntervalMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RequestType.c b/lib/asn1c/s1ap/S1AP_RequestType.c index 71dc170e4..ad9f773c1 100644 --- a/lib/asn1c/s1ap/S1AP_RequestType.c +++ b/lib/asn1c/s1ap/S1AP_RequestType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_RequestType_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_RequestType, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P114, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P114, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RequestType.h b/lib/asn1c/s1ap/S1AP_RequestType.h index 4fb33756d..1c303d1d2 100644 --- a/lib/asn1c/s1ap/S1AP_RequestType.h +++ b/lib/asn1c/s1ap/S1AP_RequestType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RequestTypeAdditionalInfo.c b/lib/asn1c/s1ap/S1AP_RequestTypeAdditionalInfo.c index 9907f896d..cb8a26fbf 100644 --- a/lib/asn1c/s1ap/S1AP_RequestTypeAdditionalInfo.c +++ b/lib/asn1c/s1ap/S1AP_RequestTypeAdditionalInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RequestTypeAdditionalInfo.h b/lib/asn1c/s1ap/S1AP_RequestTypeAdditionalInfo.h index 7a654c69d..e08b07931 100644 --- a/lib/asn1c/s1ap/S1AP_RequestTypeAdditionalInfo.h +++ b/lib/asn1c/s1ap/S1AP_RequestTypeAdditionalInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RerouteNASRequest.c b/lib/asn1c/s1ap/S1AP_RerouteNASRequest.c index b5112f593..83105a7b2 100644 --- a/lib/asn1c/s1ap/S1AP_RerouteNASRequest.c +++ b/lib/asn1c/s1ap/S1AP_RerouteNASRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_RerouteNASRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_RerouteNASRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P38, + &asn_DEF_S1AP_ProtocolIE_Container_7847P38, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RerouteNASRequest.h b/lib/asn1c/s1ap/S1AP_RerouteNASRequest.h index dcbc135d8..381108626 100644 --- a/lib/asn1c/s1ap/S1AP_RerouteNASRequest.h +++ b/lib/asn1c/s1ap/S1AP_RerouteNASRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_RerouteNASRequest */ typedef struct S1AP_RerouteNASRequest { - S1AP_ProtocolIE_Container_7838P38_t protocolIEs; + S1AP_ProtocolIE_Container_7847P38_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_Reset.c b/lib/asn1c/s1ap/S1AP_Reset.c index a4a498f20..773e51603 100644 --- a/lib/asn1c/s1ap/S1AP_Reset.c +++ b/lib/asn1c/s1ap/S1AP_Reset.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_Reset_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_Reset, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P40, + &asn_DEF_S1AP_ProtocolIE_Container_7847P40, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Reset.h b/lib/asn1c/s1ap/S1AP_Reset.h index fa79669bc..d3c5a2bef 100644 --- a/lib/asn1c/s1ap/S1AP_Reset.h +++ b/lib/asn1c/s1ap/S1AP_Reset.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_Reset */ typedef struct S1AP_Reset { - S1AP_ProtocolIE_Container_7838P40_t protocolIEs; + S1AP_ProtocolIE_Container_7847P40_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ResetAcknowledge.c b/lib/asn1c/s1ap/S1AP_ResetAcknowledge.c index 10a338a12..2ecaeb340 100644 --- a/lib/asn1c/s1ap/S1AP_ResetAcknowledge.c +++ b/lib/asn1c/s1ap/S1AP_ResetAcknowledge.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ResetAcknowledge_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_ResetAcknowledge, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P41, + &asn_DEF_S1AP_ProtocolIE_Container_7847P41, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ResetAcknowledge.h b/lib/asn1c/s1ap/S1AP_ResetAcknowledge.h index 3faf1a1f9..618f51bfe 100644 --- a/lib/asn1c/s1ap/S1AP_ResetAcknowledge.h +++ b/lib/asn1c/s1ap/S1AP_ResetAcknowledge.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_ResetAcknowledge */ typedef struct S1AP_ResetAcknowledge { - S1AP_ProtocolIE_Container_7838P41_t protocolIEs; + S1AP_ProtocolIE_Container_7847P41_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_ResetAll.c b/lib/asn1c/s1ap/S1AP_ResetAll.c index 73387e202..8dcce58fe 100644 --- a/lib/asn1c/s1ap/S1AP_ResetAll.c +++ b/lib/asn1c/s1ap/S1AP_ResetAll.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ResetAll.h b/lib/asn1c/s1ap/S1AP_ResetAll.h index 127efd3df..973eb043a 100644 --- a/lib/asn1c/s1ap/S1AP_ResetAll.h +++ b/lib/asn1c/s1ap/S1AP_ResetAll.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ResetType.c b/lib/asn1c/s1ap/S1AP_ResetType.c index 3c20fe402..07563542a 100644 --- a/lib/asn1c/s1ap/S1AP_ResetType.c +++ b/lib/asn1c/s1ap/S1AP_ResetType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ResetType.h b/lib/asn1c/s1ap/S1AP_ResetType.h index e0cecf9f1..a5af107df 100644 --- a/lib/asn1c/s1ap/S1AP_ResetType.h +++ b/lib/asn1c/s1ap/S1AP_ResetType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_RetrieveUEInformation.c b/lib/asn1c/s1ap/S1AP_RetrieveUEInformation.c index c9f88712f..16b47f086 100644 --- a/lib/asn1c/s1ap/S1AP_RetrieveUEInformation.c +++ b/lib/asn1c/s1ap/S1AP_RetrieveUEInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_RetrieveUEInformation_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_RetrieveUEInformation, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P90, + &asn_DEF_S1AP_ProtocolIE_Container_7847P90, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_RetrieveUEInformation.h b/lib/asn1c/s1ap/S1AP_RetrieveUEInformation.h index dd15e2d77..ed65629a9 100644 --- a/lib/asn1c/s1ap/S1AP_RetrieveUEInformation.h +++ b/lib/asn1c/s1ap/S1AP_RetrieveUEInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_RetrieveUEInformation */ typedef struct S1AP_RetrieveUEInformation { - S1AP_ProtocolIE_Container_7838P90_t protocolIEs; + S1AP_ProtocolIE_Container_7847P90_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_Routing-ID.c b/lib/asn1c/s1ap/S1AP_Routing-ID.c index e1f41ce2a..7d191f0e5 100644 --- a/lib/asn1c/s1ap/S1AP_Routing-ID.c +++ b/lib/asn1c/s1ap/S1AP_Routing-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Routing-ID.h b/lib/asn1c/s1ap/S1AP_Routing-ID.h index 721c95b6d..a35827eff 100644 --- a/lib/asn1c/s1ap/S1AP_Routing-ID.h +++ b/lib/asn1c/s1ap/S1AP_Routing-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_S-TMSI.c b/lib/asn1c/s1ap/S1AP_S-TMSI.c index 3b28cd66a..4289bc7ba 100644 --- a/lib/asn1c/s1ap/S1AP_S-TMSI.c +++ b/lib/asn1c/s1ap/S1AP_S-TMSI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_S_TMSI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_S_TMSI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P130, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P130, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_S-TMSI.h b/lib/asn1c/s1ap/S1AP_S-TMSI.h index c6c93d5cb..f0b7aa1e3 100644 --- a/lib/asn1c/s1ap/S1AP_S-TMSI.h +++ b/lib/asn1c/s1ap/S1AP_S-TMSI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_S1AP-PDU.c b/lib/asn1c/s1ap/S1AP_S1AP-PDU.c index a4cba950a..c64b474c5 100644 --- a/lib/asn1c/s1ap/S1AP_S1AP-PDU.c +++ b/lib/asn1c/s1ap/S1AP_S1AP-PDU.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Descriptions" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_S1AP-PDU.h b/lib/asn1c/s1ap/S1AP_S1AP-PDU.h index 2c1c8ff7f..a7c6a6446 100644 --- a/lib/asn1c/s1ap/S1AP_S1AP-PDU.h +++ b/lib/asn1c/s1ap/S1AP_S1AP-PDU.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Descriptions" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_S1SetupFailure.c b/lib/asn1c/s1ap/S1AP_S1SetupFailure.c index 501a45fb2..095b4c90f 100644 --- a/lib/asn1c/s1ap/S1AP_S1SetupFailure.c +++ b/lib/asn1c/s1ap/S1AP_S1SetupFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_S1SetupFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_S1SetupFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P45, + &asn_DEF_S1AP_ProtocolIE_Container_7847P45, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_S1SetupFailure.h b/lib/asn1c/s1ap/S1AP_S1SetupFailure.h index 8fccd9e26..c9e1a5d6e 100644 --- a/lib/asn1c/s1ap/S1AP_S1SetupFailure.h +++ b/lib/asn1c/s1ap/S1AP_S1SetupFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_S1SetupFailure */ typedef struct S1AP_S1SetupFailure { - S1AP_ProtocolIE_Container_7838P45_t protocolIEs; + S1AP_ProtocolIE_Container_7847P45_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_S1SetupRequest.c b/lib/asn1c/s1ap/S1AP_S1SetupRequest.c index 497a367fc..908092842 100644 --- a/lib/asn1c/s1ap/S1AP_S1SetupRequest.c +++ b/lib/asn1c/s1ap/S1AP_S1SetupRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_S1SetupRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_S1SetupRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P43, + &asn_DEF_S1AP_ProtocolIE_Container_7847P43, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_S1SetupRequest.h b/lib/asn1c/s1ap/S1AP_S1SetupRequest.h index eb26777ec..8f070e97d 100644 --- a/lib/asn1c/s1ap/S1AP_S1SetupRequest.h +++ b/lib/asn1c/s1ap/S1AP_S1SetupRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_S1SetupRequest */ typedef struct S1AP_S1SetupRequest { - S1AP_ProtocolIE_Container_7838P43_t protocolIEs; + S1AP_ProtocolIE_Container_7847P43_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_S1SetupResponse.c b/lib/asn1c/s1ap/S1AP_S1SetupResponse.c index 5cfcdb275..0c8215644 100644 --- a/lib/asn1c/s1ap/S1AP_S1SetupResponse.c +++ b/lib/asn1c/s1ap/S1AP_S1SetupResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_S1SetupResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_S1SetupResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P44, + &asn_DEF_S1AP_ProtocolIE_Container_7847P44, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_S1SetupResponse.h b/lib/asn1c/s1ap/S1AP_S1SetupResponse.h index 1fac99022..4d54452d6 100644 --- a/lib/asn1c/s1ap/S1AP_S1SetupResponse.h +++ b/lib/asn1c/s1ap/S1AP_S1SetupResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_S1SetupResponse */ typedef struct S1AP_S1SetupResponse { - S1AP_ProtocolIE_Container_7838P44_t protocolIEs; + S1AP_ProtocolIE_Container_7847P44_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_SONConfigurationTransfer.c b/lib/asn1c/s1ap/S1AP_SONConfigurationTransfer.c index 536687998..9ae64e31b 100644 --- a/lib/asn1c/s1ap/S1AP_SONConfigurationTransfer.c +++ b/lib/asn1c/s1ap/S1AP_SONConfigurationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_SONConfigurationTransfer_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_SONConfigurationTransfer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P120, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P120, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SONConfigurationTransfer.h b/lib/asn1c/s1ap/S1AP_SONConfigurationTransfer.h index 2294f5ff1..223e1bd29 100644 --- a/lib/asn1c/s1ap/S1AP_SONConfigurationTransfer.h +++ b/lib/asn1c/s1ap/S1AP_SONConfigurationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SONInformation-Extension.c b/lib/asn1c/s1ap/S1AP_SONInformation-Extension.c index 83cb7bd89..da0718e0b 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformation-Extension.c +++ b/lib/asn1c/s1ap/S1AP_SONInformation-Extension.c @@ -1,14 +1,14 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ #include "S1AP_SONInformation-Extension.h" /* - * This type is implemented using S1AP_ProtocolIE_SingleContainer_7841P21, + * This type is implemented using S1AP_ProtocolIE_SingleContainer_7850P21, * so here we adjust the DEF accordingly. */ static const ber_tlv_tag_t asn_DEF_S1AP_SONInformation_Extension_tags_1[] = { diff --git a/lib/asn1c/s1ap/S1AP_SONInformation-Extension.h b/lib/asn1c/s1ap/S1AP_SONInformation-Extension.h index 08de10f9a..eebe5599d 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformation-Extension.h +++ b/lib/asn1c/s1ap/S1AP_SONInformation-Extension.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ extern "C" { #endif /* S1AP_SONInformation-Extension */ -typedef S1AP_ProtocolIE_SingleContainer_7841P21_t S1AP_SONInformation_Extension_t; +typedef S1AP_ProtocolIE_SingleContainer_7850P21_t S1AP_SONInformation_Extension_t; /* Implementation */ extern asn_TYPE_descriptor_t asn_DEF_S1AP_SONInformation_Extension; diff --git a/lib/asn1c/s1ap/S1AP_SONInformation.c b/lib/asn1c/s1ap/S1AP_SONInformation.c index 9c2879466..dfeba3c95 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformation.c +++ b/lib/asn1c/s1ap/S1AP_SONInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SONInformation.h b/lib/asn1c/s1ap/S1AP_SONInformation.h index a6cc04a50..712526ce5 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformation.h +++ b/lib/asn1c/s1ap/S1AP_SONInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SONInformationReply.c b/lib/asn1c/s1ap/S1AP_SONInformationReply.c index 9b6e0faf0..15522f2f3 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformationReply.c +++ b/lib/asn1c/s1ap/S1AP_SONInformationReply.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -30,7 +30,7 @@ asn_TYPE_member_t asn_MBR_S1AP_SONInformationReply_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_SONInformationReply, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P119, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P119, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SONInformationReply.h b/lib/asn1c/s1ap/S1AP_SONInformationReply.h index 7f0812785..2667b4e21 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformationReply.h +++ b/lib/asn1c/s1ap/S1AP_SONInformationReply.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SONInformationReport.c b/lib/asn1c/s1ap/S1AP_SONInformationReport.c index 4c14e2f68..22ca0c348 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformationReport.c +++ b/lib/asn1c/s1ap/S1AP_SONInformationReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SONInformationReport.h b/lib/asn1c/s1ap/S1AP_SONInformationReport.h index 97e796ed4..020acc0d9 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformationReport.h +++ b/lib/asn1c/s1ap/S1AP_SONInformationReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SONInformationRequest.c b/lib/asn1c/s1ap/S1AP_SONInformationRequest.c index 211c9b368..bb896f241 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformationRequest.c +++ b/lib/asn1c/s1ap/S1AP_SONInformationRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SONInformationRequest.h b/lib/asn1c/s1ap/S1AP_SONInformationRequest.h index ab484cb4c..060a7e65c 100644 --- a/lib/asn1c/s1ap/S1AP_SONInformationRequest.h +++ b/lib/asn1c/s1ap/S1AP_SONInformationRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SRVCCHOIndication.c b/lib/asn1c/s1ap/S1AP_SRVCCHOIndication.c index 0f25b4d90..9da3050fd 100644 --- a/lib/asn1c/s1ap/S1AP_SRVCCHOIndication.c +++ b/lib/asn1c/s1ap/S1AP_SRVCCHOIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SRVCCHOIndication.h b/lib/asn1c/s1ap/S1AP_SRVCCHOIndication.h index 20c9ac177..ba4b7c288 100644 --- a/lib/asn1c/s1ap/S1AP_SRVCCHOIndication.h +++ b/lib/asn1c/s1ap/S1AP_SRVCCHOIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SRVCCOperationNotPossible.c b/lib/asn1c/s1ap/S1AP_SRVCCOperationNotPossible.c index 44a24dbcf..699f88576 100644 --- a/lib/asn1c/s1ap/S1AP_SRVCCOperationNotPossible.c +++ b/lib/asn1c/s1ap/S1AP_SRVCCOperationNotPossible.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SRVCCOperationNotPossible.h b/lib/asn1c/s1ap/S1AP_SRVCCOperationNotPossible.h index 8cbe9eb58..d2626a300 100644 --- a/lib/asn1c/s1ap/S1AP_SRVCCOperationNotPossible.h +++ b/lib/asn1c/s1ap/S1AP_SRVCCOperationNotPossible.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SRVCCOperationPossible.c b/lib/asn1c/s1ap/S1AP_SRVCCOperationPossible.c index b155cf301..d4e93cd8a 100644 --- a/lib/asn1c/s1ap/S1AP_SRVCCOperationPossible.c +++ b/lib/asn1c/s1ap/S1AP_SRVCCOperationPossible.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SRVCCOperationPossible.h b/lib/asn1c/s1ap/S1AP_SRVCCOperationPossible.h index f091878fd..55c2b926b 100644 --- a/lib/asn1c/s1ap/S1AP_SRVCCOperationPossible.h +++ b/lib/asn1c/s1ap/S1AP_SRVCCOperationPossible.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ScheduledCommunicationTime.c b/lib/asn1c/s1ap/S1AP_ScheduledCommunicationTime.c index 6ba14d15e..2c0966324 100644 --- a/lib/asn1c/s1ap/S1AP_ScheduledCommunicationTime.c +++ b/lib/asn1c/s1ap/S1AP_ScheduledCommunicationTime.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -165,7 +165,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ScheduledCommunicationTime_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ScheduledCommunicationTime, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P127, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P127, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ScheduledCommunicationTime.h b/lib/asn1c/s1ap/S1AP_ScheduledCommunicationTime.h index 546c093f4..31427aa4d 100644 --- a/lib/asn1c/s1ap/S1AP_ScheduledCommunicationTime.h +++ b/lib/asn1c/s1ap/S1AP_ScheduledCommunicationTime.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReport.c b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReport.c index 88389198f..dde88c560 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReport.c +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_SecondaryRATDataUsageReport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_SecondaryRATDataUsageReport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P94, + &asn_DEF_S1AP_ProtocolIE_Container_7847P94, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReport.h b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReport.h index 7fdd72b76..00e87f0fc 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReport.h +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_SecondaryRATDataUsageReport */ typedef struct S1AP_SecondaryRATDataUsageReport { - S1AP_ProtocolIE_Container_7838P94_t protocolIEs; + S1AP_ProtocolIE_Container_7847P94_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportItem.c b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportItem.c index b9ba512d5..263288437 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportItem.c +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_SecondaryRATDataUsageReportItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_SecondaryRATDataUsageReportItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P118, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P118, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportItem.h b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportItem.h index 1c68ea84c..5e52659b0 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportItem.h +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportList.c b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportList.c index 3997c01cd..a1fe7d525 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportList.c +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_SecondaryRATDataUsageReportList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P20, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P20, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportList.h b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportList.h index a1a563cd6..c9a5a8153 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportList.h +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageReportList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageRequest.c b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageRequest.c index 10a818e02..9d634b6c1 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageRequest.c +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageRequest.h b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageRequest.h index f6c769b17..e4b3e15b4 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageRequest.h +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATDataUsageRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATType.c b/lib/asn1c/s1ap/S1AP_SecondaryRATType.c index 7b59b043f..4787f52e7 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATType.c +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecondaryRATType.h b/lib/asn1c/s1ap/S1AP_SecondaryRATType.h index 06ee43dd5..00a13a95d 100644 --- a/lib/asn1c/s1ap/S1AP_SecondaryRATType.h +++ b/lib/asn1c/s1ap/S1AP_SecondaryRATType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecurityContext.c b/lib/asn1c/s1ap/S1AP_SecurityContext.c index f6130c4b7..a17193e3e 100644 --- a/lib/asn1c/s1ap/S1AP_SecurityContext.c +++ b/lib/asn1c/s1ap/S1AP_SecurityContext.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -78,7 +78,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_SecurityContext_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_SecurityContext, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P117, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P117, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SecurityContext.h b/lib/asn1c/s1ap/S1AP_SecurityContext.h index 0bed00ac8..1fb655761 100644 --- a/lib/asn1c/s1ap/S1AP_SecurityContext.h +++ b/lib/asn1c/s1ap/S1AP_SecurityContext.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecurityKey.c b/lib/asn1c/s1ap/S1AP_SecurityKey.c index 5e06daf39..f4c458f95 100644 --- a/lib/asn1c/s1ap/S1AP_SecurityKey.c +++ b/lib/asn1c/s1ap/S1AP_SecurityKey.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SecurityKey.h b/lib/asn1c/s1ap/S1AP_SecurityKey.h index d31fbb1ad..42b27341c 100644 --- a/lib/asn1c/s1ap/S1AP_SecurityKey.h +++ b/lib/asn1c/s1ap/S1AP_SecurityKey.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SerialNumber.c b/lib/asn1c/s1ap/S1AP_SerialNumber.c index 0dae4ba20..fe3f7da10 100644 --- a/lib/asn1c/s1ap/S1AP_SerialNumber.c +++ b/lib/asn1c/s1ap/S1AP_SerialNumber.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SerialNumber.h b/lib/asn1c/s1ap/S1AP_SerialNumber.h index e597c19f2..ef3f4c96d 100644 --- a/lib/asn1c/s1ap/S1AP_SerialNumber.h +++ b/lib/asn1c/s1ap/S1AP_SerialNumber.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedDCNs.c b/lib/asn1c/s1ap/S1AP_ServedDCNs.c index c6aa58c8e..00edbb335 100644 --- a/lib/asn1c/s1ap/S1AP_ServedDCNs.c +++ b/lib/asn1c/s1ap/S1AP_ServedDCNs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedDCNs.h b/lib/asn1c/s1ap/S1AP_ServedDCNs.h index 135a48cdf..80cc5b613 100644 --- a/lib/asn1c/s1ap/S1AP_ServedDCNs.h +++ b/lib/asn1c/s1ap/S1AP_ServedDCNs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedDCNsItem.c b/lib/asn1c/s1ap/S1AP_ServedDCNsItem.c index bf00663dd..92d7dd83c 100644 --- a/lib/asn1c/s1ap/S1AP_ServedDCNsItem.c +++ b/lib/asn1c/s1ap/S1AP_ServedDCNsItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ServedDCNsItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ServedDCNsItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P50, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P50, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ServedDCNsItem.h b/lib/asn1c/s1ap/S1AP_ServedDCNsItem.h index abd103b34..653753bfb 100644 --- a/lib/asn1c/s1ap/S1AP_ServedDCNsItem.h +++ b/lib/asn1c/s1ap/S1AP_ServedDCNsItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedGUMMEIs.c b/lib/asn1c/s1ap/S1AP_ServedGUMMEIs.c index e9cb5e3e9..2450d343b 100644 --- a/lib/asn1c/s1ap/S1AP_ServedGUMMEIs.c +++ b/lib/asn1c/s1ap/S1AP_ServedGUMMEIs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedGUMMEIs.h b/lib/asn1c/s1ap/S1AP_ServedGUMMEIs.h index a96d8c2a6..f8df7f071 100644 --- a/lib/asn1c/s1ap/S1AP_ServedGUMMEIs.h +++ b/lib/asn1c/s1ap/S1AP_ServedGUMMEIs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedGUMMEIsItem.c b/lib/asn1c/s1ap/S1AP_ServedGUMMEIsItem.c index 968e8b5b2..8e19dcec6 100644 --- a/lib/asn1c/s1ap/S1AP_ServedGUMMEIsItem.c +++ b/lib/asn1c/s1ap/S1AP_ServedGUMMEIsItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -63,7 +63,7 @@ asn_TYPE_member_t asn_MBR_S1AP_ServedGUMMEIsItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_ServedGUMMEIsItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P125, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P125, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_ServedGUMMEIsItem.h b/lib/asn1c/s1ap/S1AP_ServedGUMMEIsItem.h index 546beff8e..fde487b62 100644 --- a/lib/asn1c/s1ap/S1AP_ServedGUMMEIsItem.h +++ b/lib/asn1c/s1ap/S1AP_ServedGUMMEIsItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedGroupIDs.c b/lib/asn1c/s1ap/S1AP_ServedGroupIDs.c index 9b52f4b23..e0a1b5d89 100644 --- a/lib/asn1c/s1ap/S1AP_ServedGroupIDs.c +++ b/lib/asn1c/s1ap/S1AP_ServedGroupIDs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedGroupIDs.h b/lib/asn1c/s1ap/S1AP_ServedGroupIDs.h index 4f24b463f..e24d71cc6 100644 --- a/lib/asn1c/s1ap/S1AP_ServedGroupIDs.h +++ b/lib/asn1c/s1ap/S1AP_ServedGroupIDs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedMMECs.c b/lib/asn1c/s1ap/S1AP_ServedMMECs.c index 131b0c27d..f165f723b 100644 --- a/lib/asn1c/s1ap/S1AP_ServedMMECs.c +++ b/lib/asn1c/s1ap/S1AP_ServedMMECs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedMMECs.h b/lib/asn1c/s1ap/S1AP_ServedMMECs.h index 425d4da81..75a234e4f 100644 --- a/lib/asn1c/s1ap/S1AP_ServedMMECs.h +++ b/lib/asn1c/s1ap/S1AP_ServedMMECs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedPLMNs.c b/lib/asn1c/s1ap/S1AP_ServedPLMNs.c index d0a0b568c..99f0fc647 100644 --- a/lib/asn1c/s1ap/S1AP_ServedPLMNs.c +++ b/lib/asn1c/s1ap/S1AP_ServedPLMNs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServedPLMNs.h b/lib/asn1c/s1ap/S1AP_ServedPLMNs.h index 2b40cd334..abe6215e5 100644 --- a/lib/asn1c/s1ap/S1AP_ServedPLMNs.h +++ b/lib/asn1c/s1ap/S1AP_ServedPLMNs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServiceType.c b/lib/asn1c/s1ap/S1AP_ServiceType.c index 8c2ba4a86..bdcca6a71 100644 --- a/lib/asn1c/s1ap/S1AP_ServiceType.c +++ b/lib/asn1c/s1ap/S1AP_ServiceType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_ServiceType.h b/lib/asn1c/s1ap/S1AP_ServiceType.h index fb915948d..00a12b4c0 100644 --- a/lib/asn1c/s1ap/S1AP_ServiceType.h +++ b/lib/asn1c/s1ap/S1AP_ServiceType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Source-ToTarget-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_Source-ToTarget-TransparentContainer.c index f7a5d6165..9cedf3cfd 100644 --- a/lib/asn1c/s1ap/S1AP_Source-ToTarget-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_Source-ToTarget-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Source-ToTarget-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_Source-ToTarget-TransparentContainer.h index 98bacc32a..041ad5046 100644 --- a/lib/asn1c/s1ap/S1AP_Source-ToTarget-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_Source-ToTarget-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceBSS-ToTargetBSS-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_SourceBSS-ToTargetBSS-TransparentContainer.c index f80a426ed..7ac2a7b04 100644 --- a/lib/asn1c/s1ap/S1AP_SourceBSS-ToTargetBSS-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_SourceBSS-ToTargetBSS-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceBSS-ToTargetBSS-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_SourceBSS-ToTargetBSS-TransparentContainer.h index e62927f97..ed5105e89 100644 --- a/lib/asn1c/s1ap/S1AP_SourceBSS-ToTargetBSS-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_SourceBSS-ToTargetBSS-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ID.c b/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ID.c index b0e7589aa..0fb1cb0e3 100644 --- a/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ID.c +++ b/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_SourceNgRanNode_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_SourceNgRanNode_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P124, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P124, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ID.h b/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ID.h index 90d273f60..0c2ebbeed 100644 --- a/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ID.h +++ b/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ToTargetNgRanNode-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ToTargetNgRanNode-TransparentContainer.c index 7a2d6cf3a..03165e0af 100644 --- a/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ToTargetNgRanNode-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ToTargetNgRanNode-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ToTargetNgRanNode-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ToTargetNgRanNode-TransparentContainer.h index 7bebec2cd..22418583c 100644 --- a/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ToTargetNgRanNode-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_SourceNgRanNode-ToTargetNgRanNode-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceNodeID-Extension.c b/lib/asn1c/s1ap/S1AP_SourceNodeID-Extension.c index 6a987864d..b04f50764 100644 --- a/lib/asn1c/s1ap/S1AP_SourceNodeID-Extension.c +++ b/lib/asn1c/s1ap/S1AP_SourceNodeID-Extension.c @@ -1,14 +1,14 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ #include "S1AP_SourceNodeID-Extension.h" /* - * This type is implemented using S1AP_ProtocolIE_SingleContainer_7841P22, + * This type is implemented using S1AP_ProtocolIE_SingleContainer_7850P22, * so here we adjust the DEF accordingly. */ static const ber_tlv_tag_t asn_DEF_S1AP_SourceNodeID_Extension_tags_1[] = { diff --git a/lib/asn1c/s1ap/S1AP_SourceNodeID-Extension.h b/lib/asn1c/s1ap/S1AP_SourceNodeID-Extension.h index 7a14c9284..cfc9f8d2c 100644 --- a/lib/asn1c/s1ap/S1AP_SourceNodeID-Extension.h +++ b/lib/asn1c/s1ap/S1AP_SourceNodeID-Extension.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ extern "C" { #endif /* S1AP_SourceNodeID-Extension */ -typedef S1AP_ProtocolIE_SingleContainer_7841P22_t S1AP_SourceNodeID_Extension_t; +typedef S1AP_ProtocolIE_SingleContainer_7850P22_t S1AP_SourceNodeID_Extension_t; /* Implementation */ extern asn_TYPE_descriptor_t asn_DEF_S1AP_SourceNodeID_Extension; diff --git a/lib/asn1c/s1ap/S1AP_SourceNodeID.c b/lib/asn1c/s1ap/S1AP_SourceNodeID.c index d3af3fc50..713e9f9f3 100644 --- a/lib/asn1c/s1ap/S1AP_SourceNodeID.c +++ b/lib/asn1c/s1ap/S1AP_SourceNodeID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceNodeID.h b/lib/asn1c/s1ap/S1AP_SourceNodeID.h index 08486ba91..722b7e6b0 100644 --- a/lib/asn1c/s1ap/S1AP_SourceNodeID.h +++ b/lib/asn1c/s1ap/S1AP_SourceNodeID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceOfUEActivityBehaviourInformation.c b/lib/asn1c/s1ap/S1AP_SourceOfUEActivityBehaviourInformation.c index bfcc9a87f..d63100863 100644 --- a/lib/asn1c/s1ap/S1AP_SourceOfUEActivityBehaviourInformation.c +++ b/lib/asn1c/s1ap/S1AP_SourceOfUEActivityBehaviourInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceOfUEActivityBehaviourInformation.h b/lib/asn1c/s1ap/S1AP_SourceOfUEActivityBehaviourInformation.h index 5bd5937e9..738353167 100644 --- a/lib/asn1c/s1ap/S1AP_SourceOfUEActivityBehaviourInformation.h +++ b/lib/asn1c/s1ap/S1AP_SourceOfUEActivityBehaviourInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceRNC-ToTargetRNC-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_SourceRNC-ToTargetRNC-TransparentContainer.c index 88ae84f95..a81df291f 100644 --- a/lib/asn1c/s1ap/S1AP_SourceRNC-ToTargetRNC-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_SourceRNC-ToTargetRNC-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceRNC-ToTargetRNC-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_SourceRNC-ToTargetRNC-TransparentContainer.h index b416a2a11..9f91204ac 100644 --- a/lib/asn1c/s1ap/S1AP_SourceRNC-ToTargetRNC-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_SourceRNC-ToTargetRNC-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceeNB-ID.c b/lib/asn1c/s1ap/S1AP_SourceeNB-ID.c index f9d1e9f19..561428426 100644 --- a/lib/asn1c/s1ap/S1AP_SourceeNB-ID.c +++ b/lib/asn1c/s1ap/S1AP_SourceeNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_SourceeNB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_SourceeNB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P122, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P122, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SourceeNB-ID.h b/lib/asn1c/s1ap/S1AP_SourceeNB-ID.h index e9774b8cc..8e6ccf546 100644 --- a/lib/asn1c/s1ap/S1AP_SourceeNB-ID.h +++ b/lib/asn1c/s1ap/S1AP_SourceeNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SourceeNB-ToTargeteNB-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_SourceeNB-ToTargeteNB-TransparentContainer.c index 3b95a526a..66a0a7908 100644 --- a/lib/asn1c/s1ap/S1AP_SourceeNB-ToTargeteNB-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_SourceeNB-ToTargeteNB-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -98,7 +98,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_SourceeNB_ToTargeteNB_TransparentContainer { ATF_POINTER, 1, offsetof(struct S1AP_SourceeNB_ToTargeteNB_TransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (5 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P123, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P123, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SourceeNB-ToTargeteNB-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_SourceeNB-ToTargeteNB-TransparentContainer.h index a6eb2ba23..d0b75c31a 100644 --- a/lib/asn1c/s1ap/S1AP_SourceeNB-ToTargeteNB-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_SourceeNB-ToTargeteNB-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_StratumLevel.c b/lib/asn1c/s1ap/S1AP_StratumLevel.c index 175058fac..729cc3550 100644 --- a/lib/asn1c/s1ap/S1AP_StratumLevel.c +++ b/lib/asn1c/s1ap/S1AP_StratumLevel.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_StratumLevel.h b/lib/asn1c/s1ap/S1AP_StratumLevel.h index 08ac099d1..2a50f927c 100644 --- a/lib/asn1c/s1ap/S1AP_StratumLevel.h +++ b/lib/asn1c/s1ap/S1AP_StratumLevel.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SubscriberProfileIDforRFP.c b/lib/asn1c/s1ap/S1AP_SubscriberProfileIDforRFP.c index 7c1c3561e..7e7799955 100644 --- a/lib/asn1c/s1ap/S1AP_SubscriberProfileIDforRFP.c +++ b/lib/asn1c/s1ap/S1AP_SubscriberProfileIDforRFP.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SubscriberProfileIDforRFP.h b/lib/asn1c/s1ap/S1AP_SubscriberProfileIDforRFP.h index ff39c465e..4d05986c8 100644 --- a/lib/asn1c/s1ap/S1AP_SubscriberProfileIDforRFP.h +++ b/lib/asn1c/s1ap/S1AP_SubscriberProfileIDforRFP.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Subscription-Based-UE-DifferentiationInfo.c b/lib/asn1c/s1ap/S1AP_Subscription-Based-UE-DifferentiationInfo.c index ff111ea0c..efcfc8bb5 100644 --- a/lib/asn1c/s1ap/S1AP_Subscription-Based-UE-DifferentiationInfo.c +++ b/lib/asn1c/s1ap/S1AP_Subscription-Based-UE-DifferentiationInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -383,7 +383,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_Subscription_Based_UE_DifferentiationInfo_ { ATF_POINTER, 1, offsetof(struct S1AP_Subscription_Based_UE_DifferentiationInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (6 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P126, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P126, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_Subscription-Based-UE-DifferentiationInfo.h b/lib/asn1c/s1ap/S1AP_Subscription-Based-UE-DifferentiationInfo.h index 7d1aeff54..3139bff41 100644 --- a/lib/asn1c/s1ap/S1AP_Subscription-Based-UE-DifferentiationInfo.h +++ b/lib/asn1c/s1ap/S1AP_Subscription-Based-UE-DifferentiationInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SuccessfulOutcome.c b/lib/asn1c/s1ap/S1AP_SuccessfulOutcome.c index 405e5320c..169644017 100644 --- a/lib/asn1c/s1ap/S1AP_SuccessfulOutcome.c +++ b/lib/asn1c/s1ap/S1AP_SuccessfulOutcome.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Descriptions" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SuccessfulOutcome.h b/lib/asn1c/s1ap/S1AP_SuccessfulOutcome.h index 2579dfb0d..b93d8d54d 100644 --- a/lib/asn1c/s1ap/S1AP_SuccessfulOutcome.h +++ b/lib/asn1c/s1ap/S1AP_SuccessfulOutcome.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Descriptions" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SupportedTAs-Item.c b/lib/asn1c/s1ap/S1AP_SupportedTAs-Item.c index 3348d5ac0..1d26a1f59 100644 --- a/lib/asn1c/s1ap/S1AP_SupportedTAs-Item.c +++ b/lib/asn1c/s1ap/S1AP_SupportedTAs-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_SupportedTAs_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_SupportedTAs_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P128, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P128, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SupportedTAs-Item.h b/lib/asn1c/s1ap/S1AP_SupportedTAs-Item.h index 90186d520..e50287093 100644 --- a/lib/asn1c/s1ap/S1AP_SupportedTAs-Item.h +++ b/lib/asn1c/s1ap/S1AP_SupportedTAs-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SupportedTAs.c b/lib/asn1c/s1ap/S1AP_SupportedTAs.c index aa8a400d2..df5d79478 100644 --- a/lib/asn1c/s1ap/S1AP_SupportedTAs.c +++ b/lib/asn1c/s1ap/S1AP_SupportedTAs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SupportedTAs.h b/lib/asn1c/s1ap/S1AP_SupportedTAs.h index 0c9940560..27f944636 100644 --- a/lib/asn1c/s1ap/S1AP_SupportedTAs.h +++ b/lib/asn1c/s1ap/S1AP_SupportedTAs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SynchronisationInformation.c b/lib/asn1c/s1ap/S1AP_SynchronisationInformation.c index bff4df999..1f4edfc83 100644 --- a/lib/asn1c/s1ap/S1AP_SynchronisationInformation.c +++ b/lib/asn1c/s1ap/S1AP_SynchronisationInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -65,7 +65,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_SynchronisationInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_SynchronisationInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (3 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P121, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P121, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_SynchronisationInformation.h b/lib/asn1c/s1ap/S1AP_SynchronisationInformation.h index 39c3d66c4..eaac85e09 100644 --- a/lib/asn1c/s1ap/S1AP_SynchronisationInformation.h +++ b/lib/asn1c/s1ap/S1AP_SynchronisationInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SynchronisationStatus.c b/lib/asn1c/s1ap/S1AP_SynchronisationStatus.c index d89d4cbfc..a96ac3466 100644 --- a/lib/asn1c/s1ap/S1AP_SynchronisationStatus.c +++ b/lib/asn1c/s1ap/S1AP_SynchronisationStatus.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_SynchronisationStatus.h b/lib/asn1c/s1ap/S1AP_SynchronisationStatus.h index cc974bee0..61a64a49d 100644 --- a/lib/asn1c/s1ap/S1AP_SynchronisationStatus.h +++ b/lib/asn1c/s1ap/S1AP_SynchronisationStatus.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TABasedMDT.c b/lib/asn1c/s1ap/S1AP_TABasedMDT.c index 2b709467a..4b7901a12 100644 --- a/lib/asn1c/s1ap/S1AP_TABasedMDT.c +++ b/lib/asn1c/s1ap/S1AP_TABasedMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TABasedMDT_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TABasedMDT, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P135, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P135, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TABasedMDT.h b/lib/asn1c/s1ap/S1AP_TABasedMDT.h index 9b76dfdb8..c624e7f90 100644 --- a/lib/asn1c/s1ap/S1AP_TABasedMDT.h +++ b/lib/asn1c/s1ap/S1AP_TABasedMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TABasedQMC.c b/lib/asn1c/s1ap/S1AP_TABasedQMC.c index 27d2183a0..bf72474ee 100644 --- a/lib/asn1c/s1ap/S1AP_TABasedQMC.c +++ b/lib/asn1c/s1ap/S1AP_TABasedQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TABasedQMC_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TABasedQMC, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P136, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P136, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TABasedQMC.h b/lib/asn1c/s1ap/S1AP_TABasedQMC.h index d111a1ccc..332e55c5d 100644 --- a/lib/asn1c/s1ap/S1AP_TABasedQMC.h +++ b/lib/asn1c/s1ap/S1AP_TABasedQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAC.c b/lib/asn1c/s1ap/S1AP_TAC.c index 19b8f00a1..e3cc88f77 100644 --- a/lib/asn1c/s1ap/S1AP_TAC.c +++ b/lib/asn1c/s1ap/S1AP_TAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAC.h b/lib/asn1c/s1ap/S1AP_TAC.h index 6f81ef1d3..0c0eabfb1 100644 --- a/lib/asn1c/s1ap/S1AP_TAC.h +++ b/lib/asn1c/s1ap/S1AP_TAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAI-Broadcast-Item.c b/lib/asn1c/s1ap/S1AP_TAI-Broadcast-Item.c index f7ec39b00..69f53b8a2 100644 --- a/lib/asn1c/s1ap/S1AP_TAI-Broadcast-Item.c +++ b/lib/asn1c/s1ap/S1AP_TAI-Broadcast-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TAI_Broadcast_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TAI_Broadcast_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P133, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P133, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TAI-Broadcast-Item.h b/lib/asn1c/s1ap/S1AP_TAI-Broadcast-Item.h index 6f16c6802..35a180618 100644 --- a/lib/asn1c/s1ap/S1AP_TAI-Broadcast-Item.h +++ b/lib/asn1c/s1ap/S1AP_TAI-Broadcast-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAI-Broadcast.c b/lib/asn1c/s1ap/S1AP_TAI-Broadcast.c index 084602d2e..6eb29ad8a 100644 --- a/lib/asn1c/s1ap/S1AP_TAI-Broadcast.c +++ b/lib/asn1c/s1ap/S1AP_TAI-Broadcast.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAI-Broadcast.h b/lib/asn1c/s1ap/S1AP_TAI-Broadcast.h index 2ca06271d..7c2ab3a98 100644 --- a/lib/asn1c/s1ap/S1AP_TAI-Broadcast.h +++ b/lib/asn1c/s1ap/S1AP_TAI-Broadcast.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAI-Cancelled-Item.c b/lib/asn1c/s1ap/S1AP_TAI-Cancelled-Item.c index e0662ac1e..2f4862c56 100644 --- a/lib/asn1c/s1ap/S1AP_TAI-Cancelled-Item.c +++ b/lib/asn1c/s1ap/S1AP_TAI-Cancelled-Item.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TAI_Cancelled_Item_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TAI_Cancelled_Item, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P134, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P134, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TAI-Cancelled-Item.h b/lib/asn1c/s1ap/S1AP_TAI-Cancelled-Item.h index acd7934fa..4686292a5 100644 --- a/lib/asn1c/s1ap/S1AP_TAI-Cancelled-Item.h +++ b/lib/asn1c/s1ap/S1AP_TAI-Cancelled-Item.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAI-Cancelled.c b/lib/asn1c/s1ap/S1AP_TAI-Cancelled.c index 92b4251dc..7ffea6190 100644 --- a/lib/asn1c/s1ap/S1AP_TAI-Cancelled.c +++ b/lib/asn1c/s1ap/S1AP_TAI-Cancelled.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAI-Cancelled.h b/lib/asn1c/s1ap/S1AP_TAI-Cancelled.h index 227755320..766708ee4 100644 --- a/lib/asn1c/s1ap/S1AP_TAI-Cancelled.h +++ b/lib/asn1c/s1ap/S1AP_TAI-Cancelled.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAI.c b/lib/asn1c/s1ap/S1AP_TAI.c index 42a1be813..d787eef8b 100644 --- a/lib/asn1c/s1ap/S1AP_TAI.c +++ b/lib/asn1c/s1ap/S1AP_TAI.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TAI_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TAI, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P132, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P132, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TAI.h b/lib/asn1c/s1ap/S1AP_TAI.h index a2944e691..0c7169ac2 100644 --- a/lib/asn1c/s1ap/S1AP_TAI.h +++ b/lib/asn1c/s1ap/S1AP_TAI.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIBasedMDT.c b/lib/asn1c/s1ap/S1AP_TAIBasedMDT.c index 9126e2f78..d58e4ee42 100644 --- a/lib/asn1c/s1ap/S1AP_TAIBasedMDT.c +++ b/lib/asn1c/s1ap/S1AP_TAIBasedMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TAIBasedMDT_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TAIBasedMDT, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P131, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P131, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TAIBasedMDT.h b/lib/asn1c/s1ap/S1AP_TAIBasedMDT.h index f7f4f1bd9..3fe38a577 100644 --- a/lib/asn1c/s1ap/S1AP_TAIBasedMDT.h +++ b/lib/asn1c/s1ap/S1AP_TAIBasedMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIBasedQMC.c b/lib/asn1c/s1ap/S1AP_TAIBasedQMC.c index 84a3e98f1..31eedab76 100644 --- a/lib/asn1c/s1ap/S1AP_TAIBasedQMC.c +++ b/lib/asn1c/s1ap/S1AP_TAIBasedQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TAIBasedQMC_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TAIBasedQMC, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P137, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P137, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TAIBasedQMC.h b/lib/asn1c/s1ap/S1AP_TAIBasedQMC.h index 7d1196989..2b0bfda0e 100644 --- a/lib/asn1c/s1ap/S1AP_TAIBasedQMC.h +++ b/lib/asn1c/s1ap/S1AP_TAIBasedQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIItem.c b/lib/asn1c/s1ap/S1AP_TAIItem.c index 89cb3ed9c..745bfdb99 100644 --- a/lib/asn1c/s1ap/S1AP_TAIItem.c +++ b/lib/asn1c/s1ap/S1AP_TAIItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_TAIItem_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TAIItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P13, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P13, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TAIItem.h b/lib/asn1c/s1ap/S1AP_TAIItem.h index 6f6196ac5..1a68ad74e 100644 --- a/lib/asn1c/s1ap/S1AP_TAIItem.h +++ b/lib/asn1c/s1ap/S1AP_TAIItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIList.c b/lib/asn1c/s1ap/S1AP_TAIList.c index f9ff9bfe9..4f16a5c0c 100644 --- a/lib/asn1c/s1ap/S1AP_TAIList.c +++ b/lib/asn1c/s1ap/S1AP_TAIList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_TAIList_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P7, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P7, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TAIList.h b/lib/asn1c/s1ap/S1AP_TAIList.h index c0685a699..74f9034cf 100644 --- a/lib/asn1c/s1ap/S1AP_TAIList.h +++ b/lib/asn1c/s1ap/S1AP_TAIList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIListForRestart.c b/lib/asn1c/s1ap/S1AP_TAIListForRestart.c index 3c7f681be..9133844be 100644 --- a/lib/asn1c/s1ap/S1AP_TAIListForRestart.c +++ b/lib/asn1c/s1ap/S1AP_TAIListForRestart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIListForRestart.h b/lib/asn1c/s1ap/S1AP_TAIListForRestart.h index f2e852428..9665f8ed9 100644 --- a/lib/asn1c/s1ap/S1AP_TAIListForRestart.h +++ b/lib/asn1c/s1ap/S1AP_TAIListForRestart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIListforMDT.c b/lib/asn1c/s1ap/S1AP_TAIListforMDT.c index 2ab788bad..7fee0ef22 100644 --- a/lib/asn1c/s1ap/S1AP_TAIListforMDT.c +++ b/lib/asn1c/s1ap/S1AP_TAIListforMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIListforMDT.h b/lib/asn1c/s1ap/S1AP_TAIListforMDT.h index ff2d1d854..d61e21af8 100644 --- a/lib/asn1c/s1ap/S1AP_TAIListforMDT.h +++ b/lib/asn1c/s1ap/S1AP_TAIListforMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIListforQMC.c b/lib/asn1c/s1ap/S1AP_TAIListforQMC.c index 75179ed7f..3ce16ab29 100644 --- a/lib/asn1c/s1ap/S1AP_TAIListforQMC.c +++ b/lib/asn1c/s1ap/S1AP_TAIListforQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIListforQMC.h b/lib/asn1c/s1ap/S1AP_TAIListforQMC.h index 9ba1aea1f..d7b71ba61 100644 --- a/lib/asn1c/s1ap/S1AP_TAIListforQMC.h +++ b/lib/asn1c/s1ap/S1AP_TAIListforQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIListforWarning.c b/lib/asn1c/s1ap/S1AP_TAIListforWarning.c index 17993883d..5016a1f75 100644 --- a/lib/asn1c/s1ap/S1AP_TAIListforWarning.c +++ b/lib/asn1c/s1ap/S1AP_TAIListforWarning.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAIListforWarning.h b/lib/asn1c/s1ap/S1AP_TAIListforWarning.h index cdfd8144f..5c31d0030 100644 --- a/lib/asn1c/s1ap/S1AP_TAIListforWarning.h +++ b/lib/asn1c/s1ap/S1AP_TAIListforWarning.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAListforMDT.c b/lib/asn1c/s1ap/S1AP_TAListforMDT.c index 21366f6aa..80c5ff2d5 100644 --- a/lib/asn1c/s1ap/S1AP_TAListforMDT.c +++ b/lib/asn1c/s1ap/S1AP_TAListforMDT.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAListforMDT.h b/lib/asn1c/s1ap/S1AP_TAListforMDT.h index 0774e001d..78a8fab16 100644 --- a/lib/asn1c/s1ap/S1AP_TAListforMDT.h +++ b/lib/asn1c/s1ap/S1AP_TAListforMDT.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAListforQMC.c b/lib/asn1c/s1ap/S1AP_TAListforQMC.c index 48575921b..9323e15fa 100644 --- a/lib/asn1c/s1ap/S1AP_TAListforQMC.c +++ b/lib/asn1c/s1ap/S1AP_TAListforQMC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TAListforQMC.h b/lib/asn1c/s1ap/S1AP_TAListforQMC.h index da8839848..032faebc3 100644 --- a/lib/asn1c/s1ap/S1AP_TAListforQMC.h +++ b/lib/asn1c/s1ap/S1AP_TAListforQMC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TBCD-STRING.c b/lib/asn1c/s1ap/S1AP_TBCD-STRING.c index 3168dc816..74b712a2b 100644 --- a/lib/asn1c/s1ap/S1AP_TBCD-STRING.c +++ b/lib/asn1c/s1ap/S1AP_TBCD-STRING.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TBCD-STRING.h b/lib/asn1c/s1ap/S1AP_TBCD-STRING.h index 550bc0ca9..675a5798e 100644 --- a/lib/asn1c/s1ap/S1AP_TBCD-STRING.h +++ b/lib/asn1c/s1ap/S1AP_TBCD-STRING.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Target-ToSource-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_Target-ToSource-TransparentContainer.c index f9b263c33..b4836e8a9 100644 --- a/lib/asn1c/s1ap/S1AP_Target-ToSource-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_Target-ToSource-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Target-ToSource-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_Target-ToSource-TransparentContainer.h index 27b632c57..666f05b89 100644 --- a/lib/asn1c/s1ap/S1AP_Target-ToSource-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_Target-ToSource-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetBSS-ToSourceBSS-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_TargetBSS-ToSourceBSS-TransparentContainer.c index 2d1eccc3e..23a7b024a 100644 --- a/lib/asn1c/s1ap/S1AP_TargetBSS-ToSourceBSS-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_TargetBSS-ToSourceBSS-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetBSS-ToSourceBSS-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_TargetBSS-ToSourceBSS-TransparentContainer.h index 5f09dd816..73616081e 100644 --- a/lib/asn1c/s1ap/S1AP_TargetBSS-ToSourceBSS-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_TargetBSS-ToSourceBSS-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetID.c b/lib/asn1c/s1ap/S1AP_TargetID.c index 1d7f7084c..053250d13 100644 --- a/lib/asn1c/s1ap/S1AP_TargetID.c +++ b/lib/asn1c/s1ap/S1AP_TargetID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetID.h b/lib/asn1c/s1ap/S1AP_TargetID.h index 0e7be1a60..a682cf588 100644 --- a/lib/asn1c/s1ap/S1AP_TargetID.h +++ b/lib/asn1c/s1ap/S1AP_TargetID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ID.c b/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ID.c index 5c30a5f2d..bba883dec 100644 --- a/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ID.c +++ b/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TargetNgRanNode_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TargetNgRanNode_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P141, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P141, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ID.h b/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ID.h index 9928c2a04..ddd92fcd1 100644 --- a/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ID.h +++ b/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ToSourceNgRanNode-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ToSourceNgRanNode-TransparentContainer.c index d1fecfcb3..91be4157d 100644 --- a/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ToSourceNgRanNode-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ToSourceNgRanNode-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ToSourceNgRanNode-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ToSourceNgRanNode-TransparentContainer.h index 585c4b3c3..cb40305cf 100644 --- a/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ToSourceNgRanNode-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_TargetNgRanNode-ToSourceNgRanNode-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetRNC-ID.c b/lib/asn1c/s1ap/S1AP_TargetRNC-ID.c index 44c25a9bc..1f0db8d3d 100644 --- a/lib/asn1c/s1ap/S1AP_TargetRNC-ID.c +++ b/lib/asn1c/s1ap/S1AP_TargetRNC-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TargetRNC_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TargetRNC_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P140, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P140, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TargetRNC-ID.h b/lib/asn1c/s1ap/S1AP_TargetRNC-ID.h index d0affa86e..097693d1b 100644 --- a/lib/asn1c/s1ap/S1AP_TargetRNC-ID.h +++ b/lib/asn1c/s1ap/S1AP_TargetRNC-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetRNC-ToSourceRNC-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_TargetRNC-ToSourceRNC-TransparentContainer.c index 32b89bf7e..b286cf7cf 100644 --- a/lib/asn1c/s1ap/S1AP_TargetRNC-ToSourceRNC-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_TargetRNC-ToSourceRNC-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargetRNC-ToSourceRNC-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_TargetRNC-ToSourceRNC-TransparentContainer.h index b6c5cea15..c5b2b26c0 100644 --- a/lib/asn1c/s1ap/S1AP_TargetRNC-ToSourceRNC-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_TargetRNC-ToSourceRNC-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargeteNB-ID.c b/lib/asn1c/s1ap/S1AP_TargeteNB-ID.c index 582144726..5d3deb9d3 100644 --- a/lib/asn1c/s1ap/S1AP_TargeteNB-ID.c +++ b/lib/asn1c/s1ap/S1AP_TargeteNB-ID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TargeteNB_ID_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TargeteNB_ID, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P139, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P139, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TargeteNB-ID.h b/lib/asn1c/s1ap/S1AP_TargeteNB-ID.h index 3488ba14b..f73b073aa 100644 --- a/lib/asn1c/s1ap/S1AP_TargeteNB-ID.h +++ b/lib/asn1c/s1ap/S1AP_TargeteNB-ID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TargeteNB-ToSourceeNB-TransparentContainer.c b/lib/asn1c/s1ap/S1AP_TargeteNB-ToSourceeNB-TransparentContainer.c index 7f04d2fe0..13ba3a482 100644 --- a/lib/asn1c/s1ap/S1AP_TargeteNB-ToSourceeNB-TransparentContainer.c +++ b/lib/asn1c/s1ap/S1AP_TargeteNB-ToSourceeNB-TransparentContainer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_TargeteNB_ToSourceeNB_TransparentContainer { ATF_POINTER, 1, offsetof(struct S1AP_TargeteNB_ToSourceeNB_TransparentContainer, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P145, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P145, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TargeteNB-ToSourceeNB-TransparentContainer.h b/lib/asn1c/s1ap/S1AP_TargeteNB-ToSourceeNB-TransparentContainer.h index d0fe48a09..2eaab5b2b 100644 --- a/lib/asn1c/s1ap/S1AP_TargeteNB-ToSourceeNB-TransparentContainer.h +++ b/lib/asn1c/s1ap/S1AP_TargeteNB-ToSourceeNB-TransparentContainer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Threshold-RSRP.c b/lib/asn1c/s1ap/S1AP_Threshold-RSRP.c index f6a92b3fc..862d78129 100644 --- a/lib/asn1c/s1ap/S1AP_Threshold-RSRP.c +++ b/lib/asn1c/s1ap/S1AP_Threshold-RSRP.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Threshold-RSRP.h b/lib/asn1c/s1ap/S1AP_Threshold-RSRP.h index 8672da2d2..be013b05b 100644 --- a/lib/asn1c/s1ap/S1AP_Threshold-RSRP.h +++ b/lib/asn1c/s1ap/S1AP_Threshold-RSRP.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Threshold-RSRQ.c b/lib/asn1c/s1ap/S1AP_Threshold-RSRQ.c index 53476f6d6..bd43a1835 100644 --- a/lib/asn1c/s1ap/S1AP_Threshold-RSRQ.c +++ b/lib/asn1c/s1ap/S1AP_Threshold-RSRQ.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Threshold-RSRQ.h b/lib/asn1c/s1ap/S1AP_Threshold-RSRQ.h index fe77dec30..961ba266e 100644 --- a/lib/asn1c/s1ap/S1AP_Threshold-RSRQ.h +++ b/lib/asn1c/s1ap/S1AP_Threshold-RSRQ.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell-EnhancedGranularity.c b/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell-EnhancedGranularity.c index 8fe5238c8..9ca3cf6f9 100644 --- a/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell-EnhancedGranularity.c +++ b/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell-EnhancedGranularity.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell-EnhancedGranularity.h b/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell-EnhancedGranularity.h index 94b31e965..48c287b2e 100644 --- a/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell-EnhancedGranularity.h +++ b/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell-EnhancedGranularity.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell.c b/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell.c index bde57a9a9..d8d181225 100644 --- a/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell.c +++ b/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell.h b/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell.h index 9086c1b6b..2ebb7008c 100644 --- a/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell.h +++ b/lib/asn1c/s1ap/S1AP_Time-UE-StayedInCell.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TimeSinceSecondaryNodeRelease.c b/lib/asn1c/s1ap/S1AP_TimeSinceSecondaryNodeRelease.c index d49507733..98958bf83 100644 --- a/lib/asn1c/s1ap/S1AP_TimeSinceSecondaryNodeRelease.c +++ b/lib/asn1c/s1ap/S1AP_TimeSinceSecondaryNodeRelease.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TimeSinceSecondaryNodeRelease.h b/lib/asn1c/s1ap/S1AP_TimeSinceSecondaryNodeRelease.h index 8b60d161b..6e169fd3f 100644 --- a/lib/asn1c/s1ap/S1AP_TimeSinceSecondaryNodeRelease.h +++ b/lib/asn1c/s1ap/S1AP_TimeSinceSecondaryNodeRelease.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TimeSynchronisationInfo.c b/lib/asn1c/s1ap/S1AP_TimeSynchronisationInfo.c index 319710784..c03938805 100644 --- a/lib/asn1c/s1ap/S1AP_TimeSynchronisationInfo.c +++ b/lib/asn1c/s1ap/S1AP_TimeSynchronisationInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_TimeSynchronisationInfo_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TimeSynchronisationInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P129, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P129, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TimeSynchronisationInfo.h b/lib/asn1c/s1ap/S1AP_TimeSynchronisationInfo.h index 1d54e8e20..c6be3fa26 100644 --- a/lib/asn1c/s1ap/S1AP_TimeSynchronisationInfo.h +++ b/lib/asn1c/s1ap/S1AP_TimeSynchronisationInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TimeToWait.c b/lib/asn1c/s1ap/S1AP_TimeToWait.c index d984041b1..76c5e5f72 100644 --- a/lib/asn1c/s1ap/S1AP_TimeToWait.c +++ b/lib/asn1c/s1ap/S1AP_TimeToWait.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TimeToWait.h b/lib/asn1c/s1ap/S1AP_TimeToWait.h index b09f0459d..87ffd6601 100644 --- a/lib/asn1c/s1ap/S1AP_TimeToWait.h +++ b/lib/asn1c/s1ap/S1AP_TimeToWait.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TraceActivation.c b/lib/asn1c/s1ap/S1AP_TraceActivation.c index c3ca89fe4..e46c34d10 100644 --- a/lib/asn1c/s1ap/S1AP_TraceActivation.c +++ b/lib/asn1c/s1ap/S1AP_TraceActivation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -80,7 +80,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_TraceActivation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TraceActivation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P147, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P147, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TraceActivation.h b/lib/asn1c/s1ap/S1AP_TraceActivation.h index c64d107d2..e43fc3077 100644 --- a/lib/asn1c/s1ap/S1AP_TraceActivation.h +++ b/lib/asn1c/s1ap/S1AP_TraceActivation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TraceDepth.c b/lib/asn1c/s1ap/S1AP_TraceDepth.c index 55b012baf..358cd4a13 100644 --- a/lib/asn1c/s1ap/S1AP_TraceDepth.c +++ b/lib/asn1c/s1ap/S1AP_TraceDepth.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TraceDepth.h b/lib/asn1c/s1ap/S1AP_TraceDepth.h index 6847aff0c..bcc076466 100644 --- a/lib/asn1c/s1ap/S1AP_TraceDepth.h +++ b/lib/asn1c/s1ap/S1AP_TraceDepth.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TraceFailureIndication.c b/lib/asn1c/s1ap/S1AP_TraceFailureIndication.c index b05934c91..763ea74b3 100644 --- a/lib/asn1c/s1ap/S1AP_TraceFailureIndication.c +++ b/lib/asn1c/s1ap/S1AP_TraceFailureIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TraceFailureIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_TraceFailureIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P58, + &asn_DEF_S1AP_ProtocolIE_Container_7847P58, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TraceFailureIndication.h b/lib/asn1c/s1ap/S1AP_TraceFailureIndication.h index c4d614363..7036fa339 100644 --- a/lib/asn1c/s1ap/S1AP_TraceFailureIndication.h +++ b/lib/asn1c/s1ap/S1AP_TraceFailureIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_TraceFailureIndication */ typedef struct S1AP_TraceFailureIndication { - S1AP_ProtocolIE_Container_7838P58_t protocolIEs; + S1AP_ProtocolIE_Container_7847P58_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_TraceStart.c b/lib/asn1c/s1ap/S1AP_TraceStart.c index 13692f5f1..1f0990a54 100644 --- a/lib/asn1c/s1ap/S1AP_TraceStart.c +++ b/lib/asn1c/s1ap/S1AP_TraceStart.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_TraceStart_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_TraceStart, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P57, + &asn_DEF_S1AP_ProtocolIE_Container_7847P57, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TraceStart.h b/lib/asn1c/s1ap/S1AP_TraceStart.h index 8c23f7ccc..886f46b43 100644 --- a/lib/asn1c/s1ap/S1AP_TraceStart.h +++ b/lib/asn1c/s1ap/S1AP_TraceStart.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_TraceStart */ typedef struct S1AP_TraceStart { - S1AP_ProtocolIE_Container_7838P57_t protocolIEs; + S1AP_ProtocolIE_Container_7847P57_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_TrafficLoadReductionIndication.c b/lib/asn1c/s1ap/S1AP_TrafficLoadReductionIndication.c index 19bb6e28d..25592e168 100644 --- a/lib/asn1c/s1ap/S1AP_TrafficLoadReductionIndication.c +++ b/lib/asn1c/s1ap/S1AP_TrafficLoadReductionIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TrafficLoadReductionIndication.h b/lib/asn1c/s1ap/S1AP_TrafficLoadReductionIndication.h index 62e9db513..b11b33d9b 100644 --- a/lib/asn1c/s1ap/S1AP_TrafficLoadReductionIndication.h +++ b/lib/asn1c/s1ap/S1AP_TrafficLoadReductionIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TransportInformation.c b/lib/asn1c/s1ap/S1AP_TransportInformation.c index 4960d1f67..2d98b516f 100644 --- a/lib/asn1c/s1ap/S1AP_TransportInformation.c +++ b/lib/asn1c/s1ap/S1AP_TransportInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TransportInformation.h b/lib/asn1c/s1ap/S1AP_TransportInformation.h index 63c98d2c7..0d4b72c10 100644 --- a/lib/asn1c/s1ap/S1AP_TransportInformation.h +++ b/lib/asn1c/s1ap/S1AP_TransportInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TransportLayerAddress.c b/lib/asn1c/s1ap/S1AP_TransportLayerAddress.c index 533d03826..f61f88098 100644 --- a/lib/asn1c/s1ap/S1AP_TransportLayerAddress.c +++ b/lib/asn1c/s1ap/S1AP_TransportLayerAddress.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TransportLayerAddress.h b/lib/asn1c/s1ap/S1AP_TransportLayerAddress.h index 2caf0b831..c353cc7ec 100644 --- a/lib/asn1c/s1ap/S1AP_TransportLayerAddress.h +++ b/lib/asn1c/s1ap/S1AP_TransportLayerAddress.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TriggeringMessage.c b/lib/asn1c/s1ap/S1AP_TriggeringMessage.c index 45aab6e3f..f3249b51d 100644 --- a/lib/asn1c/s1ap/S1AP_TriggeringMessage.c +++ b/lib/asn1c/s1ap/S1AP_TriggeringMessage.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TriggeringMessage.h b/lib/asn1c/s1ap/S1AP_TriggeringMessage.h index 4dba733c4..959d8f87c 100644 --- a/lib/asn1c/s1ap/S1AP_TriggeringMessage.h +++ b/lib/asn1c/s1ap/S1AP_TriggeringMessage.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-CommonDataTypes" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TunnelInformation.c b/lib/asn1c/s1ap/S1AP_TunnelInformation.c index c2bb03acb..7f3f3fb6d 100644 --- a/lib/asn1c/s1ap/S1AP_TunnelInformation.c +++ b/lib/asn1c/s1ap/S1AP_TunnelInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_TunnelInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_TunnelInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P148, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P148, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_TunnelInformation.h b/lib/asn1c/s1ap/S1AP_TunnelInformation.h index 884dbd503..e5a6808d4 100644 --- a/lib/asn1c/s1ap/S1AP_TunnelInformation.h +++ b/lib/asn1c/s1ap/S1AP_TunnelInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TypeOfError.c b/lib/asn1c/s1ap/S1AP_TypeOfError.c index 1c2ee8948..b126bb419 100644 --- a/lib/asn1c/s1ap/S1AP_TypeOfError.c +++ b/lib/asn1c/s1ap/S1AP_TypeOfError.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_TypeOfError.h b/lib/asn1c/s1ap/S1AP_TypeOfError.h index f7e70b2b6..a0897ad1d 100644 --- a/lib/asn1c/s1ap/S1AP_TypeOfError.h +++ b/lib/asn1c/s1ap/S1AP_TypeOfError.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-Application-Layer-Measurement-Capability.c b/lib/asn1c/s1ap/S1AP_UE-Application-Layer-Measurement-Capability.c index 7123753f3..c91c155ea 100644 --- a/lib/asn1c/s1ap/S1AP_UE-Application-Layer-Measurement-Capability.c +++ b/lib/asn1c/s1ap/S1AP_UE-Application-Layer-Measurement-Capability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-Application-Layer-Measurement-Capability.h b/lib/asn1c/s1ap/S1AP_UE-Application-Layer-Measurement-Capability.h index ff37b94d2..6549e0f21 100644 --- a/lib/asn1c/s1ap/S1AP_UE-Application-Layer-Measurement-Capability.h +++ b/lib/asn1c/s1ap/S1AP_UE-Application-Layer-Measurement-Capability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-HistoryInformation.c b/lib/asn1c/s1ap/S1AP_UE-HistoryInformation.c index dc08fb4c0..f94dc6874 100644 --- a/lib/asn1c/s1ap/S1AP_UE-HistoryInformation.c +++ b/lib/asn1c/s1ap/S1AP_UE-HistoryInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-HistoryInformation.h b/lib/asn1c/s1ap/S1AP_UE-HistoryInformation.h index 56b20749f..3a621b5b1 100644 --- a/lib/asn1c/s1ap/S1AP_UE-HistoryInformation.h +++ b/lib/asn1c/s1ap/S1AP_UE-HistoryInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-HistoryInformationFromTheUE.c b/lib/asn1c/s1ap/S1AP_UE-HistoryInformationFromTheUE.c index 80e286392..61b687fbd 100644 --- a/lib/asn1c/s1ap/S1AP_UE-HistoryInformationFromTheUE.c +++ b/lib/asn1c/s1ap/S1AP_UE-HistoryInformationFromTheUE.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-HistoryInformationFromTheUE.h b/lib/asn1c/s1ap/S1AP_UE-HistoryInformationFromTheUE.h index 0ad7de458..9a4225b9f 100644 --- a/lib/asn1c/s1ap/S1AP_UE-HistoryInformationFromTheUE.h +++ b/lib/asn1c/s1ap/S1AP_UE-HistoryInformationFromTheUE.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container-for-extended-bands.c b/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container-for-extended-bands.c index cc4b4104e..6c98d3870 100644 --- a/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container-for-extended-bands.c +++ b/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container-for-extended-bands.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container-for-extended-bands.h b/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container-for-extended-bands.h index b8c9a9c31..c33b57678 100644 --- a/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container-for-extended-bands.h +++ b/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container-for-extended-bands.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container.c b/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container.c index c2b26b66f..59820626c 100644 --- a/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container.c +++ b/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container.h b/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container.h index 2b732157d..e9803a01b 100644 --- a/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container.h +++ b/lib/asn1c/s1ap/S1AP_UE-RLF-Report-Container.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-RetentionInformation.c b/lib/asn1c/s1ap/S1AP_UE-RetentionInformation.c index b9d60eb0e..a29541102 100644 --- a/lib/asn1c/s1ap/S1AP_UE-RetentionInformation.c +++ b/lib/asn1c/s1ap/S1AP_UE-RetentionInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-RetentionInformation.h b/lib/asn1c/s1ap/S1AP_UE-RetentionInformation.h index bf0ccfc81..80da4529f 100644 --- a/lib/asn1c/s1ap/S1AP_UE-RetentionInformation.h +++ b/lib/asn1c/s1ap/S1AP_UE-RetentionInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-S1AP-ID-pair.c b/lib/asn1c/s1ap/S1AP_UE-S1AP-ID-pair.c index 1618bab8e..f28490dc5 100644 --- a/lib/asn1c/s1ap/S1AP_UE-S1AP-ID-pair.c +++ b/lib/asn1c/s1ap/S1AP_UE-S1AP-ID-pair.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UE_S1AP_ID_pair_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_UE_S1AP_ID_pair, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P151, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P151, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UE-S1AP-ID-pair.h b/lib/asn1c/s1ap/S1AP_UE-S1AP-ID-pair.h index 3db9d2496..78c91f5b4 100644 --- a/lib/asn1c/s1ap/S1AP_UE-S1AP-ID-pair.h +++ b/lib/asn1c/s1ap/S1AP_UE-S1AP-ID-pair.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-S1AP-IDs.c b/lib/asn1c/s1ap/S1AP_UE-S1AP-IDs.c index c84b45397..1a11b8607 100644 --- a/lib/asn1c/s1ap/S1AP_UE-S1AP-IDs.c +++ b/lib/asn1c/s1ap/S1AP_UE-S1AP-IDs.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-S1AP-IDs.h b/lib/asn1c/s1ap/S1AP_UE-S1AP-IDs.h index 55972e741..25e6e8a18 100644 --- a/lib/asn1c/s1ap/S1AP_UE-S1AP-IDs.h +++ b/lib/asn1c/s1ap/S1AP_UE-S1AP-IDs.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-Usage-Type.c b/lib/asn1c/s1ap/S1AP_UE-Usage-Type.c index c32f58d01..903c9975f 100644 --- a/lib/asn1c/s1ap/S1AP_UE-Usage-Type.c +++ b/lib/asn1c/s1ap/S1AP_UE-Usage-Type.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-Usage-Type.h b/lib/asn1c/s1ap/S1AP_UE-Usage-Type.h index ab25eabf2..b69d12e85 100644 --- a/lib/asn1c/s1ap/S1AP_UE-Usage-Type.h +++ b/lib/asn1c/s1ap/S1AP_UE-Usage-Type.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionItem.c b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionItem.c index 99b50d089..49cf08a1a 100644 --- a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionItem.c +++ b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionItem.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_UE_associatedLogicalS1_ConnectionItem_1[] { ATF_POINTER, 1, offsetof(struct S1AP_UE_associatedLogicalS1_ConnectionItem, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P152, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P152, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionItem.h b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionItem.h index b15045a16..999f3b864 100644 --- a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionItem.h +++ b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionItem.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListRes.c b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListRes.c index 879932df0..8bcfebbde 100644 --- a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListRes.c +++ b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListRes.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UE_associatedLogicalS1_ConnectionListRes_1[] = { { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P8, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P8, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListRes.h b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListRes.h index f287bf35e..e5efad682 100644 --- a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListRes.h +++ b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListRes.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListResAck.c b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListResAck.c index 0b07cadbd..0d83b8434 100644 --- a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListResAck.c +++ b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListResAck.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -19,7 +19,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_UE_associatedLogicalS1_ConnectionListResAc { ATF_POINTER, 0, 0, (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, - &asn_DEF_S1AP_ProtocolIE_SingleContainer_7841P9, + &asn_DEF_S1AP_ProtocolIE_SingleContainer_7850P9, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListResAck.h b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListResAck.h index 6b3bda1a9..7bb6b0297 100644 --- a/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListResAck.h +++ b/lib/asn1c/s1ap/S1AP_UE-associatedLogicalS1-ConnectionListResAck.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UEAggregateMaximumBitrate.c b/lib/asn1c/s1ap/S1AP_UEAggregateMaximumBitrate.c index ef0b38104..0103e5b7e 100644 --- a/lib/asn1c/s1ap/S1AP_UEAggregateMaximumBitrate.c +++ b/lib/asn1c/s1ap/S1AP_UEAggregateMaximumBitrate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_UEAggregateMaximumBitrate_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_UEAggregateMaximumBitrate, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P149, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P149, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEAggregateMaximumBitrate.h b/lib/asn1c/s1ap/S1AP_UEAggregateMaximumBitrate.h index 0e50ea625..3e48584de 100644 --- a/lib/asn1c/s1ap/S1AP_UEAggregateMaximumBitrate.h +++ b/lib/asn1c/s1ap/S1AP_UEAggregateMaximumBitrate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UEAppLayerMeasConfig.c b/lib/asn1c/s1ap/S1AP_UEAppLayerMeasConfig.c index e84fc03b4..ec047e3b9 100644 --- a/lib/asn1c/s1ap/S1AP_UEAppLayerMeasConfig.c +++ b/lib/asn1c/s1ap/S1AP_UEAppLayerMeasConfig.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -79,7 +79,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_UEAppLayerMeasConfig_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_UEAppLayerMeasConfig, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P150, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P150, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEAppLayerMeasConfig.h b/lib/asn1c/s1ap/S1AP_UEAppLayerMeasConfig.h index 38594649a..e22611bbf 100644 --- a/lib/asn1c/s1ap/S1AP_UEAppLayerMeasConfig.h +++ b/lib/asn1c/s1ap/S1AP_UEAppLayerMeasConfig.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UECapabilityInfoIndication.c b/lib/asn1c/s1ap/S1AP_UECapabilityInfoIndication.c index dded8e5a1..8a02a10d8 100644 --- a/lib/asn1c/s1ap/S1AP_UECapabilityInfoIndication.c +++ b/lib/asn1c/s1ap/S1AP_UECapabilityInfoIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UECapabilityInfoIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UECapabilityInfoIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P54, + &asn_DEF_S1AP_ProtocolIE_Container_7847P54, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UECapabilityInfoIndication.h b/lib/asn1c/s1ap/S1AP_UECapabilityInfoIndication.h index 2ec9bf790..e320e0703 100644 --- a/lib/asn1c/s1ap/S1AP_UECapabilityInfoIndication.h +++ b/lib/asn1c/s1ap/S1AP_UECapabilityInfoIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UECapabilityInfoIndication */ typedef struct S1AP_UECapabilityInfoIndication { - S1AP_ProtocolIE_Container_7838P54_t protocolIEs; + S1AP_ProtocolIE_Container_7847P54_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UECapabilityInfoRequest.c b/lib/asn1c/s1ap/S1AP_UECapabilityInfoRequest.c index 6f530ae8a..049a2c370 100644 --- a/lib/asn1c/s1ap/S1AP_UECapabilityInfoRequest.c +++ b/lib/asn1c/s1ap/S1AP_UECapabilityInfoRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UECapabilityInfoRequest.h b/lib/asn1c/s1ap/S1AP_UECapabilityInfoRequest.h index 21366d453..e55b56f49 100644 --- a/lib/asn1c/s1ap/S1AP_UECapabilityInfoRequest.h +++ b/lib/asn1c/s1ap/S1AP_UECapabilityInfoRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationConfirm.c b/lib/asn1c/s1ap/S1AP_UEContextModificationConfirm.c index f238572b0..cfcbc6eff 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationConfirm.c +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationConfirm.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextModificationConfirm_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextModificationConfirm, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P83, + &asn_DEF_S1AP_ProtocolIE_Container_7847P83, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationConfirm.h b/lib/asn1c/s1ap/S1AP_UEContextModificationConfirm.h index a54145491..b4c307e47 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationConfirm.h +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationConfirm.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextModificationConfirm */ typedef struct S1AP_UEContextModificationConfirm { - S1AP_ProtocolIE_Container_7838P83_t protocolIEs; + S1AP_ProtocolIE_Container_7847P83_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationFailure.c b/lib/asn1c/s1ap/S1AP_UEContextModificationFailure.c index fae6e0b1e..0eddbeb33 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationFailure.c +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextModificationFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextModificationFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P31, + &asn_DEF_S1AP_ProtocolIE_Container_7847P31, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationFailure.h b/lib/asn1c/s1ap/S1AP_UEContextModificationFailure.h index ba37cf35f..8c893ade0 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationFailure.h +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextModificationFailure */ typedef struct S1AP_UEContextModificationFailure { - S1AP_ProtocolIE_Container_7838P31_t protocolIEs; + S1AP_ProtocolIE_Container_7847P31_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationIndication.c b/lib/asn1c/s1ap/S1AP_UEContextModificationIndication.c index 7d56cbbbb..4e1badf73 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationIndication.c +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationIndication.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextModificationIndication_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextModificationIndication, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P82, + &asn_DEF_S1AP_ProtocolIE_Container_7847P82, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationIndication.h b/lib/asn1c/s1ap/S1AP_UEContextModificationIndication.h index 9b2a67799..815f22d0d 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationIndication.h +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationIndication.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextModificationIndication */ typedef struct S1AP_UEContextModificationIndication { - S1AP_ProtocolIE_Container_7838P82_t protocolIEs; + S1AP_ProtocolIE_Container_7847P82_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationRequest.c b/lib/asn1c/s1ap/S1AP_UEContextModificationRequest.c index 9e86c8097..ae6848b97 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationRequest.c +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextModificationRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextModificationRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P29, + &asn_DEF_S1AP_ProtocolIE_Container_7847P29, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationRequest.h b/lib/asn1c/s1ap/S1AP_UEContextModificationRequest.h index efd3a995e..2de9f98f4 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationRequest.h +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextModificationRequest */ typedef struct S1AP_UEContextModificationRequest { - S1AP_ProtocolIE_Container_7838P29_t protocolIEs; + S1AP_ProtocolIE_Container_7847P29_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationResponse.c b/lib/asn1c/s1ap/S1AP_UEContextModificationResponse.c index 1722d2fce..347dc6185 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationResponse.c +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextModificationResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextModificationResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P30, + &asn_DEF_S1AP_ProtocolIE_Container_7847P30, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextModificationResponse.h b/lib/asn1c/s1ap/S1AP_UEContextModificationResponse.h index 22116325c..af34c65a6 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextModificationResponse.h +++ b/lib/asn1c/s1ap/S1AP_UEContextModificationResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextModificationResponse */ typedef struct S1AP_UEContextModificationResponse { - S1AP_ProtocolIE_Container_7838P30_t protocolIEs; + S1AP_ProtocolIE_Container_7847P30_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextReleaseCommand.c b/lib/asn1c/s1ap/S1AP_UEContextReleaseCommand.c index 715100934..9ac7bb74a 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextReleaseCommand.c +++ b/lib/asn1c/s1ap/S1AP_UEContextReleaseCommand.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextReleaseCommand_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextReleaseCommand, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P27, + &asn_DEF_S1AP_ProtocolIE_Container_7847P27, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextReleaseCommand.h b/lib/asn1c/s1ap/S1AP_UEContextReleaseCommand.h index 1a9b24565..3b4c649c9 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextReleaseCommand.h +++ b/lib/asn1c/s1ap/S1AP_UEContextReleaseCommand.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextReleaseCommand */ typedef struct S1AP_UEContextReleaseCommand { - S1AP_ProtocolIE_Container_7838P27_t protocolIEs; + S1AP_ProtocolIE_Container_7847P27_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextReleaseComplete.c b/lib/asn1c/s1ap/S1AP_UEContextReleaseComplete.c index 3f0628f98..23ae85488 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextReleaseComplete.c +++ b/lib/asn1c/s1ap/S1AP_UEContextReleaseComplete.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextReleaseComplete_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextReleaseComplete, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P28, + &asn_DEF_S1AP_ProtocolIE_Container_7847P28, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextReleaseComplete.h b/lib/asn1c/s1ap/S1AP_UEContextReleaseComplete.h index afa26f7af..b333b1fcf 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextReleaseComplete.h +++ b/lib/asn1c/s1ap/S1AP_UEContextReleaseComplete.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextReleaseComplete */ typedef struct S1AP_UEContextReleaseComplete { - S1AP_ProtocolIE_Container_7838P28_t protocolIEs; + S1AP_ProtocolIE_Container_7847P28_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextReleaseRequest.c b/lib/asn1c/s1ap/S1AP_UEContextReleaseRequest.c index 964bef413..e80650d1a 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextReleaseRequest.c +++ b/lib/asn1c/s1ap/S1AP_UEContextReleaseRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextReleaseRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextReleaseRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P26, + &asn_DEF_S1AP_ProtocolIE_Container_7847P26, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextReleaseRequest.h b/lib/asn1c/s1ap/S1AP_UEContextReleaseRequest.h index 2651d7e1b..c819a2852 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextReleaseRequest.h +++ b/lib/asn1c/s1ap/S1AP_UEContextReleaseRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextReleaseRequest */ typedef struct S1AP_UEContextReleaseRequest { - S1AP_ProtocolIE_Container_7838P26_t protocolIEs; + S1AP_ProtocolIE_Container_7847P26_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextResumeFailure.c b/lib/asn1c/s1ap/S1AP_UEContextResumeFailure.c index 516e9e612..2a0de968a 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextResumeFailure.c +++ b/lib/asn1c/s1ap/S1AP_UEContextResumeFailure.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextResumeFailure_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextResumeFailure, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P88, + &asn_DEF_S1AP_ProtocolIE_Container_7847P88, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextResumeFailure.h b/lib/asn1c/s1ap/S1AP_UEContextResumeFailure.h index 5cef96036..2d845ac18 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextResumeFailure.h +++ b/lib/asn1c/s1ap/S1AP_UEContextResumeFailure.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextResumeFailure */ typedef struct S1AP_UEContextResumeFailure { - S1AP_ProtocolIE_Container_7838P88_t protocolIEs; + S1AP_ProtocolIE_Container_7847P88_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextResumeRequest.c b/lib/asn1c/s1ap/S1AP_UEContextResumeRequest.c index b9f7808b7..ac242242a 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextResumeRequest.c +++ b/lib/asn1c/s1ap/S1AP_UEContextResumeRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextResumeRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextResumeRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P86, + &asn_DEF_S1AP_ProtocolIE_Container_7847P86, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextResumeRequest.h b/lib/asn1c/s1ap/S1AP_UEContextResumeRequest.h index f75d055cc..9444f4c6b 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextResumeRequest.h +++ b/lib/asn1c/s1ap/S1AP_UEContextResumeRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextResumeRequest */ typedef struct S1AP_UEContextResumeRequest { - S1AP_ProtocolIE_Container_7838P86_t protocolIEs; + S1AP_ProtocolIE_Container_7847P86_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextResumeResponse.c b/lib/asn1c/s1ap/S1AP_UEContextResumeResponse.c index feaf8621a..8376391b7 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextResumeResponse.c +++ b/lib/asn1c/s1ap/S1AP_UEContextResumeResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextResumeResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextResumeResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P87, + &asn_DEF_S1AP_ProtocolIE_Container_7847P87, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextResumeResponse.h b/lib/asn1c/s1ap/S1AP_UEContextResumeResponse.h index f4e61611b..bf9cdfe75 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextResumeResponse.h +++ b/lib/asn1c/s1ap/S1AP_UEContextResumeResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextResumeResponse */ typedef struct S1AP_UEContextResumeResponse { - S1AP_ProtocolIE_Container_7838P87_t protocolIEs; + S1AP_ProtocolIE_Container_7847P87_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextSuspendRequest.c b/lib/asn1c/s1ap/S1AP_UEContextSuspendRequest.c index 8b4029faf..e36275006 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextSuspendRequest.c +++ b/lib/asn1c/s1ap/S1AP_UEContextSuspendRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextSuspendRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextSuspendRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P84, + &asn_DEF_S1AP_ProtocolIE_Container_7847P84, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextSuspendRequest.h b/lib/asn1c/s1ap/S1AP_UEContextSuspendRequest.h index e652699cf..38e06d60d 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextSuspendRequest.h +++ b/lib/asn1c/s1ap/S1AP_UEContextSuspendRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextSuspendRequest */ typedef struct S1AP_UEContextSuspendRequest { - S1AP_ProtocolIE_Container_7838P84_t protocolIEs; + S1AP_ProtocolIE_Container_7847P84_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEContextSuspendResponse.c b/lib/asn1c/s1ap/S1AP_UEContextSuspendResponse.c index 2f9a0f72d..b3b625fca 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextSuspendResponse.c +++ b/lib/asn1c/s1ap/S1AP_UEContextSuspendResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEContextSuspendResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEContextSuspendResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P85, + &asn_DEF_S1AP_ProtocolIE_Container_7847P85, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEContextSuspendResponse.h b/lib/asn1c/s1ap/S1AP_UEContextSuspendResponse.h index fe25387ed..a2630ff75 100644 --- a/lib/asn1c/s1ap/S1AP_UEContextSuspendResponse.h +++ b/lib/asn1c/s1ap/S1AP_UEContextSuspendResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEContextSuspendResponse */ typedef struct S1AP_UEContextSuspendResponse { - S1AP_ProtocolIE_Container_7838P85_t protocolIEs; + S1AP_ProtocolIE_Container_7847P85_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEIdentityIndexValue.c b/lib/asn1c/s1ap/S1AP_UEIdentityIndexValue.c index c06da8990..2f8a82b2a 100644 --- a/lib/asn1c/s1ap/S1AP_UEIdentityIndexValue.c +++ b/lib/asn1c/s1ap/S1AP_UEIdentityIndexValue.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UEIdentityIndexValue.h b/lib/asn1c/s1ap/S1AP_UEIdentityIndexValue.h index 4e3f50f08..9482b07f8 100644 --- a/lib/asn1c/s1ap/S1AP_UEIdentityIndexValue.h +++ b/lib/asn1c/s1ap/S1AP_UEIdentityIndexValue.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UEInformationTransfer.c b/lib/asn1c/s1ap/S1AP_UEInformationTransfer.c index 5abc7f5f3..f53c96f7d 100644 --- a/lib/asn1c/s1ap/S1AP_UEInformationTransfer.c +++ b/lib/asn1c/s1ap/S1AP_UEInformationTransfer.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UEInformationTransfer_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UEInformationTransfer, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P91, + &asn_DEF_S1AP_ProtocolIE_Container_7847P91, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UEInformationTransfer.h b/lib/asn1c/s1ap/S1AP_UEInformationTransfer.h index 889774a2f..d1608af4f 100644 --- a/lib/asn1c/s1ap/S1AP_UEInformationTransfer.h +++ b/lib/asn1c/s1ap/S1AP_UEInformationTransfer.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UEInformationTransfer */ typedef struct S1AP_UEInformationTransfer { - S1AP_ProtocolIE_Container_7838P91_t protocolIEs; + S1AP_ProtocolIE_Container_7847P91_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UEPagingID.c b/lib/asn1c/s1ap/S1AP_UEPagingID.c index 34dda7e15..3cada1138 100644 --- a/lib/asn1c/s1ap/S1AP_UEPagingID.c +++ b/lib/asn1c/s1ap/S1AP_UEPagingID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UEPagingID.h b/lib/asn1c/s1ap/S1AP_UEPagingID.h index 1ea52fc59..86d9f5086 100644 --- a/lib/asn1c/s1ap/S1AP_UEPagingID.h +++ b/lib/asn1c/s1ap/S1AP_UEPagingID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapability.c b/lib/asn1c/s1ap/S1AP_UERadioCapability.c index c14fad5dd..66263964f 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapability.c +++ b/lib/asn1c/s1ap/S1AP_UERadioCapability.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapability.h b/lib/asn1c/s1ap/S1AP_UERadioCapability.h index f62658b75..6d9bfa4b1 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapability.h +++ b/lib/asn1c/s1ap/S1AP_UERadioCapability.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityForPaging.c b/lib/asn1c/s1ap/S1AP_UERadioCapabilityForPaging.c index 9966bc4a9..5e99fd818 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityForPaging.c +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityForPaging.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityForPaging.h b/lib/asn1c/s1ap/S1AP_UERadioCapabilityForPaging.h index 82ddd965e..c6841dca6 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityForPaging.h +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityForPaging.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityID.c b/lib/asn1c/s1ap/S1AP_UERadioCapabilityID.c index 2804e7f08..a613bc914 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityID.c +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityID.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityID.h b/lib/asn1c/s1ap/S1AP_UERadioCapabilityID.h index 7c95a7685..6a55be809 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityID.h +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityID.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingRequest.c b/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingRequest.c index a39e7fdbb..dfc4957ab 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingRequest.c +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UERadioCapabilityIDMappingRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UERadioCapabilityIDMappingRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P95, + &asn_DEF_S1AP_ProtocolIE_Container_7847P95, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingRequest.h b/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingRequest.h index 2445664b4..a5a7f9381 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingRequest.h +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UERadioCapabilityIDMappingRequest */ typedef struct S1AP_UERadioCapabilityIDMappingRequest { - S1AP_ProtocolIE_Container_7838P95_t protocolIEs; + S1AP_ProtocolIE_Container_7847P95_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingResponse.c b/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingResponse.c index 6c5a25a11..0e9e6a226 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingResponse.c +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UERadioCapabilityIDMappingResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UERadioCapabilityIDMappingResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P96, + &asn_DEF_S1AP_ProtocolIE_Container_7847P96, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingResponse.h b/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingResponse.h index e8080fc56..9afaddc53 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingResponse.h +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityIDMappingResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UERadioCapabilityIDMappingResponse */ typedef struct S1AP_UERadioCapabilityIDMappingResponse { - S1AP_ProtocolIE_Container_7838P96_t protocolIEs; + S1AP_ProtocolIE_Container_7847P96_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchRequest.c b/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchRequest.c index 1fef2aea3..568d0e3b9 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchRequest.c +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UERadioCapabilityMatchRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UERadioCapabilityMatchRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P32, + &asn_DEF_S1AP_ProtocolIE_Container_7847P32, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchRequest.h b/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchRequest.h index d89103a3b..68310c561 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchRequest.h +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UERadioCapabilityMatchRequest */ typedef struct S1AP_UERadioCapabilityMatchRequest { - S1AP_ProtocolIE_Container_7838P32_t protocolIEs; + S1AP_ProtocolIE_Container_7847P32_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchResponse.c b/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchResponse.c index 04d65a29b..bbb437578 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchResponse.c +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UERadioCapabilityMatchResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UERadioCapabilityMatchResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P33, + &asn_DEF_S1AP_ProtocolIE_Container_7847P33, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchResponse.h b/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchResponse.h index a8b90f0c1..af11eed8a 100644 --- a/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchResponse.h +++ b/lib/asn1c/s1ap/S1AP_UERadioCapabilityMatchResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UERadioCapabilityMatchResponse */ typedef struct S1AP_UERadioCapabilityMatchResponse { - S1AP_ProtocolIE_Container_7838P33_t protocolIEs; + S1AP_ProtocolIE_Container_7847P33_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UESecurityCapabilities.c b/lib/asn1c/s1ap/S1AP_UESecurityCapabilities.c index cdd53cf3c..3862b6428 100644 --- a/lib/asn1c/s1ap/S1AP_UESecurityCapabilities.c +++ b/lib/asn1c/s1ap/S1AP_UESecurityCapabilities.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_UESecurityCapabilities_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_UESecurityCapabilities, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P153, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P153, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UESecurityCapabilities.h b/lib/asn1c/s1ap/S1AP_UESecurityCapabilities.h index d3fcf95bc..d9c1b1fea 100644 --- a/lib/asn1c/s1ap/S1AP_UESecurityCapabilities.h +++ b/lib/asn1c/s1ap/S1AP_UESecurityCapabilities.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UESidelinkAggregateMaximumBitrate.c b/lib/asn1c/s1ap/S1AP_UESidelinkAggregateMaximumBitrate.c index cbe57c423..7b5c8e4d2 100644 --- a/lib/asn1c/s1ap/S1AP_UESidelinkAggregateMaximumBitrate.c +++ b/lib/asn1c/s1ap/S1AP_UESidelinkAggregateMaximumBitrate.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_UESidelinkAggregateMaximumBitrate_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_UESidelinkAggregateMaximumBitrate, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P154, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P154, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UESidelinkAggregateMaximumBitrate.h b/lib/asn1c/s1ap/S1AP_UESidelinkAggregateMaximumBitrate.h index 5802832f7..7764b040c 100644 --- a/lib/asn1c/s1ap/S1AP_UESidelinkAggregateMaximumBitrate.h +++ b/lib/asn1c/s1ap/S1AP_UESidelinkAggregateMaximumBitrate.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UEUserPlaneCIoTSupportIndicator.c b/lib/asn1c/s1ap/S1AP_UEUserPlaneCIoTSupportIndicator.c index 2381f628c..5b3a2e12c 100644 --- a/lib/asn1c/s1ap/S1AP_UEUserPlaneCIoTSupportIndicator.c +++ b/lib/asn1c/s1ap/S1AP_UEUserPlaneCIoTSupportIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UEUserPlaneCIoTSupportIndicator.h b/lib/asn1c/s1ap/S1AP_UEUserPlaneCIoTSupportIndicator.h index 61c339fcc..1ccdcd225 100644 --- a/lib/asn1c/s1ap/S1AP_UEUserPlaneCIoTSupportIndicator.h +++ b/lib/asn1c/s1ap/S1AP_UEUserPlaneCIoTSupportIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UL-CP-SecurityInformation.c b/lib/asn1c/s1ap/S1AP_UL-CP-SecurityInformation.c index 635db419d..8766642e3 100644 --- a/lib/asn1c/s1ap/S1AP_UL-CP-SecurityInformation.c +++ b/lib/asn1c/s1ap/S1AP_UL-CP-SecurityInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_UL_CP_SecurityInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_UL_CP_SecurityInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P155, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P155, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UL-CP-SecurityInformation.h b/lib/asn1c/s1ap/S1AP_UL-CP-SecurityInformation.h index 82f079778..cc5d5d447 100644 --- a/lib/asn1c/s1ap/S1AP_UL-CP-SecurityInformation.h +++ b/lib/asn1c/s1ap/S1AP_UL-CP-SecurityInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UL-NAS-Count.c b/lib/asn1c/s1ap/S1AP_UL-NAS-Count.c index a1751a2f4..063749985 100644 --- a/lib/asn1c/s1ap/S1AP_UL-NAS-Count.c +++ b/lib/asn1c/s1ap/S1AP_UL-NAS-Count.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UL-NAS-Count.h b/lib/asn1c/s1ap/S1AP_UL-NAS-Count.h index 25105d8f8..cbf02abef 100644 --- a/lib/asn1c/s1ap/S1AP_UL-NAS-Count.h +++ b/lib/asn1c/s1ap/S1AP_UL-NAS-Count.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UL-NAS-MAC.c b/lib/asn1c/s1ap/S1AP_UL-NAS-MAC.c index d0e781b32..2cc3789e6 100644 --- a/lib/asn1c/s1ap/S1AP_UL-NAS-MAC.c +++ b/lib/asn1c/s1ap/S1AP_UL-NAS-MAC.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UL-NAS-MAC.h b/lib/asn1c/s1ap/S1AP_UL-NAS-MAC.h index f9a2f3c79..107c2839c 100644 --- a/lib/asn1c/s1ap/S1AP_UL-NAS-MAC.h +++ b/lib/asn1c/s1ap/S1AP_UL-NAS-MAC.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_URI-Address.c b/lib/asn1c/s1ap/S1AP_URI-Address.c index b05f6b250..aae67f93b 100644 --- a/lib/asn1c/s1ap/S1AP_URI-Address.c +++ b/lib/asn1c/s1ap/S1AP_URI-Address.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_URI-Address.h b/lib/asn1c/s1ap/S1AP_URI-Address.h index 0b7fd7d57..88ff57380 100644 --- a/lib/asn1c/s1ap/S1AP_URI-Address.h +++ b/lib/asn1c/s1ap/S1AP_URI-Address.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UnlicensedSpectrumRestriction.c b/lib/asn1c/s1ap/S1AP_UnlicensedSpectrumRestriction.c index fe9c3cb17..03d49d109 100644 --- a/lib/asn1c/s1ap/S1AP_UnlicensedSpectrumRestriction.c +++ b/lib/asn1c/s1ap/S1AP_UnlicensedSpectrumRestriction.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UnlicensedSpectrumRestriction.h b/lib/asn1c/s1ap/S1AP_UnlicensedSpectrumRestriction.h index ab37435d2..dd06cf245 100644 --- a/lib/asn1c/s1ap/S1AP_UnlicensedSpectrumRestriction.h +++ b/lib/asn1c/s1ap/S1AP_UnlicensedSpectrumRestriction.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UnsuccessfulOutcome.c b/lib/asn1c/s1ap/S1AP_UnsuccessfulOutcome.c index 6b20b9983..9b69369c5 100644 --- a/lib/asn1c/s1ap/S1AP_UnsuccessfulOutcome.c +++ b/lib/asn1c/s1ap/S1AP_UnsuccessfulOutcome.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Descriptions" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UnsuccessfulOutcome.h b/lib/asn1c/s1ap/S1AP_UnsuccessfulOutcome.h index bc7c095f9..6e899a1dc 100644 --- a/lib/asn1c/s1ap/S1AP_UnsuccessfulOutcome.h +++ b/lib/asn1c/s1ap/S1AP_UnsuccessfulOutcome.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Descriptions" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_UplinkNASTransport.c b/lib/asn1c/s1ap/S1AP_UplinkNASTransport.c index 80a020e3a..148988846 100644 --- a/lib/asn1c/s1ap/S1AP_UplinkNASTransport.c +++ b/lib/asn1c/s1ap/S1AP_UplinkNASTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UplinkNASTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UplinkNASTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P36, + &asn_DEF_S1AP_ProtocolIE_Container_7847P36, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UplinkNASTransport.h b/lib/asn1c/s1ap/S1AP_UplinkNASTransport.h index 076435f67..9cb0608d0 100644 --- a/lib/asn1c/s1ap/S1AP_UplinkNASTransport.h +++ b/lib/asn1c/s1ap/S1AP_UplinkNASTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UplinkNASTransport */ typedef struct S1AP_UplinkNASTransport { - S1AP_ProtocolIE_Container_7838P36_t protocolIEs; + S1AP_ProtocolIE_Container_7847P36_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UplinkNonUEAssociatedLPPaTransport.c b/lib/asn1c/s1ap/S1AP_UplinkNonUEAssociatedLPPaTransport.c index bb040c18d..7c58932df 100644 --- a/lib/asn1c/s1ap/S1AP_UplinkNonUEAssociatedLPPaTransport.c +++ b/lib/asn1c/s1ap/S1AP_UplinkNonUEAssociatedLPPaTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UplinkNonUEAssociatedLPPaTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UplinkNonUEAssociatedLPPaTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P79, + &asn_DEF_S1AP_ProtocolIE_Container_7847P79, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UplinkNonUEAssociatedLPPaTransport.h b/lib/asn1c/s1ap/S1AP_UplinkNonUEAssociatedLPPaTransport.h index 8f4ced2e4..038cd2a06 100644 --- a/lib/asn1c/s1ap/S1AP_UplinkNonUEAssociatedLPPaTransport.h +++ b/lib/asn1c/s1ap/S1AP_UplinkNonUEAssociatedLPPaTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UplinkNonUEAssociatedLPPaTransport */ typedef struct S1AP_UplinkNonUEAssociatedLPPaTransport { - S1AP_ProtocolIE_Container_7838P79_t protocolIEs; + S1AP_ProtocolIE_Container_7847P79_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UplinkS1cdma2000tunnelling.c b/lib/asn1c/s1ap/S1AP_UplinkS1cdma2000tunnelling.c index 35fdaa17c..21bf31098 100644 --- a/lib/asn1c/s1ap/S1AP_UplinkS1cdma2000tunnelling.c +++ b/lib/asn1c/s1ap/S1AP_UplinkS1cdma2000tunnelling.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UplinkS1cdma2000tunnelling_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UplinkS1cdma2000tunnelling, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P53, + &asn_DEF_S1AP_ProtocolIE_Container_7847P53, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UplinkS1cdma2000tunnelling.h b/lib/asn1c/s1ap/S1AP_UplinkS1cdma2000tunnelling.h index 8b2d719b0..56032f278 100644 --- a/lib/asn1c/s1ap/S1AP_UplinkS1cdma2000tunnelling.h +++ b/lib/asn1c/s1ap/S1AP_UplinkS1cdma2000tunnelling.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UplinkS1cdma2000tunnelling */ typedef struct S1AP_UplinkS1cdma2000tunnelling { - S1AP_ProtocolIE_Container_7838P53_t protocolIEs; + S1AP_ProtocolIE_Container_7847P53_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UplinkUEAssociatedLPPaTransport.c b/lib/asn1c/s1ap/S1AP_UplinkUEAssociatedLPPaTransport.c index f5fd10d49..04c20b270 100644 --- a/lib/asn1c/s1ap/S1AP_UplinkUEAssociatedLPPaTransport.c +++ b/lib/asn1c/s1ap/S1AP_UplinkUEAssociatedLPPaTransport.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_UplinkUEAssociatedLPPaTransport_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_UplinkUEAssociatedLPPaTransport, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P77, + &asn_DEF_S1AP_ProtocolIE_Container_7847P77, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UplinkUEAssociatedLPPaTransport.h b/lib/asn1c/s1ap/S1AP_UplinkUEAssociatedLPPaTransport.h index e37aecfd1..1974f41e4 100644 --- a/lib/asn1c/s1ap/S1AP_UplinkUEAssociatedLPPaTransport.h +++ b/lib/asn1c/s1ap/S1AP_UplinkUEAssociatedLPPaTransport.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_UplinkUEAssociatedLPPaTransport */ typedef struct S1AP_UplinkUEAssociatedLPPaTransport { - S1AP_ProtocolIE_Container_7838P77_t protocolIEs; + S1AP_ProtocolIE_Container_7847P77_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_UserLocationInformation.c b/lib/asn1c/s1ap/S1AP_UserLocationInformation.c index 6f29cc33c..f3c6d0639 100644 --- a/lib/asn1c/s1ap/S1AP_UserLocationInformation.c +++ b/lib/asn1c/s1ap/S1AP_UserLocationInformation.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_UserLocationInformation_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_UserLocationInformation, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P156, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P156, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_UserLocationInformation.h b/lib/asn1c/s1ap/S1AP_UserLocationInformation.h index 84727ae13..4ebc725cb 100644 --- a/lib/asn1c/s1ap/S1AP_UserLocationInformation.h +++ b/lib/asn1c/s1ap/S1AP_UserLocationInformation.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_V2XServicesAuthorized.c b/lib/asn1c/s1ap/S1AP_V2XServicesAuthorized.c index 9a3f7418c..f60d8a10d 100644 --- a/lib/asn1c/s1ap/S1AP_V2XServicesAuthorized.c +++ b/lib/asn1c/s1ap/S1AP_V2XServicesAuthorized.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -46,7 +46,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_V2XServicesAuthorized_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_V2XServicesAuthorized, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (2 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P157, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P157, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_V2XServicesAuthorized.h b/lib/asn1c/s1ap/S1AP_V2XServicesAuthorized.h index d1760396c..2d6183d7f 100644 --- a/lib/asn1c/s1ap/S1AP_V2XServicesAuthorized.h +++ b/lib/asn1c/s1ap/S1AP_V2XServicesAuthorized.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_VehicleUE.c b/lib/asn1c/s1ap/S1AP_VehicleUE.c index 4fe81cef1..c468f3c28 100644 --- a/lib/asn1c/s1ap/S1AP_VehicleUE.c +++ b/lib/asn1c/s1ap/S1AP_VehicleUE.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_VehicleUE.h b/lib/asn1c/s1ap/S1AP_VehicleUE.h index 19ab15bb9..33823db5c 100644 --- a/lib/asn1c/s1ap/S1AP_VehicleUE.h +++ b/lib/asn1c/s1ap/S1AP_VehicleUE.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_VoiceSupportMatchIndicator.c b/lib/asn1c/s1ap/S1AP_VoiceSupportMatchIndicator.c index b5b162a58..28c9c1dfe 100644 --- a/lib/asn1c/s1ap/S1AP_VoiceSupportMatchIndicator.c +++ b/lib/asn1c/s1ap/S1AP_VoiceSupportMatchIndicator.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_VoiceSupportMatchIndicator.h b/lib/asn1c/s1ap/S1AP_VoiceSupportMatchIndicator.h index 3b629e2a5..721c0478b 100644 --- a/lib/asn1c/s1ap/S1AP_VoiceSupportMatchIndicator.h +++ b/lib/asn1c/s1ap/S1AP_VoiceSupportMatchIndicator.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WLANMeasConfig.c b/lib/asn1c/s1ap/S1AP_WLANMeasConfig.c index ba60c80b8..39174c551 100644 --- a/lib/asn1c/s1ap/S1AP_WLANMeasConfig.c +++ b/lib/asn1c/s1ap/S1AP_WLANMeasConfig.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WLANMeasConfig.h b/lib/asn1c/s1ap/S1AP_WLANMeasConfig.h index 51135aa23..de5503d11 100644 --- a/lib/asn1c/s1ap/S1AP_WLANMeasConfig.h +++ b/lib/asn1c/s1ap/S1AP_WLANMeasConfig.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WLANMeasConfigNameList.c b/lib/asn1c/s1ap/S1AP_WLANMeasConfigNameList.c index 5df706a58..64fa7cdc3 100644 --- a/lib/asn1c/s1ap/S1AP_WLANMeasConfigNameList.c +++ b/lib/asn1c/s1ap/S1AP_WLANMeasConfigNameList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WLANMeasConfigNameList.h b/lib/asn1c/s1ap/S1AP_WLANMeasConfigNameList.h index fefa01def..2d728678e 100644 --- a/lib/asn1c/s1ap/S1AP_WLANMeasConfigNameList.h +++ b/lib/asn1c/s1ap/S1AP_WLANMeasConfigNameList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WLANMeasurementConfiguration.c b/lib/asn1c/s1ap/S1AP_WLANMeasurementConfiguration.c index 61b85eb6e..77e77b926 100644 --- a/lib/asn1c/s1ap/S1AP_WLANMeasurementConfiguration.c +++ b/lib/asn1c/s1ap/S1AP_WLANMeasurementConfiguration.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -193,7 +193,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_WLANMeasurementConfiguration_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_WLANMeasurementConfiguration, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (4 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P158, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P158, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_WLANMeasurementConfiguration.h b/lib/asn1c/s1ap/S1AP_WLANMeasurementConfiguration.h index 05c34fb02..f7e45fbd7 100644 --- a/lib/asn1c/s1ap/S1AP_WLANMeasurementConfiguration.h +++ b/lib/asn1c/s1ap/S1AP_WLANMeasurementConfiguration.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WLANName.c b/lib/asn1c/s1ap/S1AP_WLANName.c index 8e2753786..4ad0216a3 100644 --- a/lib/asn1c/s1ap/S1AP_WLANName.c +++ b/lib/asn1c/s1ap/S1AP_WLANName.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WLANName.h b/lib/asn1c/s1ap/S1AP_WLANName.h index 7fa872170..975ec9b3d 100644 --- a/lib/asn1c/s1ap/S1AP_WLANName.h +++ b/lib/asn1c/s1ap/S1AP_WLANName.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WUS-Assistance-Information.c b/lib/asn1c/s1ap/S1AP_WUS-Assistance-Information.c index 4793934c0..da109b03d 100644 --- a/lib/asn1c/s1ap/S1AP_WUS-Assistance-Information.c +++ b/lib/asn1c/s1ap/S1AP_WUS-Assistance-Information.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ static asn_TYPE_member_t asn_MBR_S1AP_WUS_Assistance_Information_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_WUS_Assistance_Information, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P159, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P159, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_WUS-Assistance-Information.h b/lib/asn1c/s1ap/S1AP_WUS-Assistance-Information.h index 6be42e2d8..339b1dc70 100644 --- a/lib/asn1c/s1ap/S1AP_WUS-Assistance-Information.h +++ b/lib/asn1c/s1ap/S1AP_WUS-Assistance-Information.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningAreaCoordinates.c b/lib/asn1c/s1ap/S1AP_WarningAreaCoordinates.c index ceaeca041..c3f78c1ea 100644 --- a/lib/asn1c/s1ap/S1AP_WarningAreaCoordinates.c +++ b/lib/asn1c/s1ap/S1AP_WarningAreaCoordinates.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningAreaCoordinates.h b/lib/asn1c/s1ap/S1AP_WarningAreaCoordinates.h index 66063d6f2..5b0b0b1e6 100644 --- a/lib/asn1c/s1ap/S1AP_WarningAreaCoordinates.h +++ b/lib/asn1c/s1ap/S1AP_WarningAreaCoordinates.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningAreaList.c b/lib/asn1c/s1ap/S1AP_WarningAreaList.c index 98efc9ae3..9a414e760 100644 --- a/lib/asn1c/s1ap/S1AP_WarningAreaList.c +++ b/lib/asn1c/s1ap/S1AP_WarningAreaList.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningAreaList.h b/lib/asn1c/s1ap/S1AP_WarningAreaList.h index 0ff277c10..ea002468e 100644 --- a/lib/asn1c/s1ap/S1AP_WarningAreaList.h +++ b/lib/asn1c/s1ap/S1AP_WarningAreaList.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningMessageContents.c b/lib/asn1c/s1ap/S1AP_WarningMessageContents.c index 723ab5c92..bd0c62d8c 100644 --- a/lib/asn1c/s1ap/S1AP_WarningMessageContents.c +++ b/lib/asn1c/s1ap/S1AP_WarningMessageContents.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningMessageContents.h b/lib/asn1c/s1ap/S1AP_WarningMessageContents.h index 3f59e29b9..c46bec94b 100644 --- a/lib/asn1c/s1ap/S1AP_WarningMessageContents.h +++ b/lib/asn1c/s1ap/S1AP_WarningMessageContents.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningSecurityInfo.c b/lib/asn1c/s1ap/S1AP_WarningSecurityInfo.c index 939a9f3b0..237627b01 100644 --- a/lib/asn1c/s1ap/S1AP_WarningSecurityInfo.c +++ b/lib/asn1c/s1ap/S1AP_WarningSecurityInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningSecurityInfo.h b/lib/asn1c/s1ap/S1AP_WarningSecurityInfo.h index badfd870f..11e3a5bb6 100644 --- a/lib/asn1c/s1ap/S1AP_WarningSecurityInfo.h +++ b/lib/asn1c/s1ap/S1AP_WarningSecurityInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningType.c b/lib/asn1c/s1ap/S1AP_WarningType.c index bbdb593a3..6c335b709 100644 --- a/lib/asn1c/s1ap/S1AP_WarningType.c +++ b/lib/asn1c/s1ap/S1AP_WarningType.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WarningType.h b/lib/asn1c/s1ap/S1AP_WarningType.h index 7b7d2fb73..8c68af0df 100644 --- a/lib/asn1c/s1ap/S1AP_WarningType.h +++ b/lib/asn1c/s1ap/S1AP_WarningType.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/S1AP_WriteReplaceWarningRequest.c b/lib/asn1c/s1ap/S1AP_WriteReplaceWarningRequest.c index f5d7df7e0..05ec2bcb6 100644 --- a/lib/asn1c/s1ap/S1AP_WriteReplaceWarningRequest.c +++ b/lib/asn1c/s1ap/S1AP_WriteReplaceWarningRequest.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_WriteReplaceWarningRequest_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_WriteReplaceWarningRequest, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P66, + &asn_DEF_S1AP_ProtocolIE_Container_7847P66, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_WriteReplaceWarningRequest.h b/lib/asn1c/s1ap/S1AP_WriteReplaceWarningRequest.h index 4bd7876b4..15b2acc9a 100644 --- a/lib/asn1c/s1ap/S1AP_WriteReplaceWarningRequest.h +++ b/lib/asn1c/s1ap/S1AP_WriteReplaceWarningRequest.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_WriteReplaceWarningRequest */ typedef struct S1AP_WriteReplaceWarningRequest { - S1AP_ProtocolIE_Container_7838P66_t protocolIEs; + S1AP_ProtocolIE_Container_7847P66_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_WriteReplaceWarningResponse.c b/lib/asn1c/s1ap/S1AP_WriteReplaceWarningResponse.c index e28d92391..9fe4b8805 100644 --- a/lib/asn1c/s1ap/S1AP_WriteReplaceWarningResponse.c +++ b/lib/asn1c/s1ap/S1AP_WriteReplaceWarningResponse.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -11,7 +11,7 @@ asn_TYPE_member_t asn_MBR_S1AP_WriteReplaceWarningResponse_1[] = { { ATF_NOFLAGS, 0, offsetof(struct S1AP_WriteReplaceWarningResponse, protocolIEs), (ASN_TAG_CLASS_CONTEXT | (0 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolIE_Container_7838P67, + &asn_DEF_S1AP_ProtocolIE_Container_7847P67, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_WriteReplaceWarningResponse.h b/lib/asn1c/s1ap/S1AP_WriteReplaceWarningResponse.h index 4e45ca02b..42f5e9cde 100644 --- a/lib/asn1c/s1ap/S1AP_WriteReplaceWarningResponse.h +++ b/lib/asn1c/s1ap/S1AP_WriteReplaceWarningResponse.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-PDU-Contents" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -21,7 +21,7 @@ extern "C" { /* S1AP_WriteReplaceWarningResponse */ typedef struct S1AP_WriteReplaceWarningResponse { - S1AP_ProtocolIE_Container_7838P67_t protocolIEs; + S1AP_ProtocolIE_Container_7847P67_t protocolIEs; /* * This type is extensible, * possible extensions are below. diff --git a/lib/asn1c/s1ap/S1AP_X2TNLConfigurationInfo.c b/lib/asn1c/s1ap/S1AP_X2TNLConfigurationInfo.c index 7628bca60..4f4eec468 100644 --- a/lib/asn1c/s1ap/S1AP_X2TNLConfigurationInfo.c +++ b/lib/asn1c/s1ap/S1AP_X2TNLConfigurationInfo.c @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ @@ -29,7 +29,7 @@ asn_TYPE_member_t asn_MBR_S1AP_X2TNLConfigurationInfo_1[] = { { ATF_POINTER, 1, offsetof(struct S1AP_X2TNLConfigurationInfo, iE_Extensions), (ASN_TAG_CLASS_CONTEXT | (1 << 2)), -1, /* IMPLICIT tag at current level */ - &asn_DEF_S1AP_ProtocolExtensionContainer_7889P160, + &asn_DEF_S1AP_ProtocolExtensionContainer_7898P160, 0, { #if !defined(ASN_DISABLE_OER_SUPPORT) diff --git a/lib/asn1c/s1ap/S1AP_X2TNLConfigurationInfo.h b/lib/asn1c/s1ap/S1AP_X2TNLConfigurationInfo.h index 226916f72..ea53de324 100644 --- a/lib/asn1c/s1ap/S1AP_X2TNLConfigurationInfo.h +++ b/lib/asn1c/s1ap/S1AP_X2TNLConfigurationInfo.h @@ -1,7 +1,7 @@ /* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" - * found in "../support/s1ap-r16.4.0/36413-g40.asn" + * found in "../support/s1ap-r16.7.0/36413-g70.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER` */ diff --git a/lib/asn1c/s1ap/meson.build b/lib/asn1c/s1ap/meson.build index 82f1e7ce6..fa0704924 100644 --- a/lib/asn1c/s1ap/meson.build +++ b/lib/asn1c/s1ap/meson.build @@ -1293,6 +1293,8 @@ libasn1c_s1ap_sources = files(''' S1AP_URI-Address.h S1AP_WUS-Assistance-Information.c S1AP_WUS-Assistance-Information.h + S1AP_EmergencyIndicator.c + S1AP_EmergencyIndicator.h '''.split()) libasn1c_s1ap_inc = include_directories('.') diff --git a/lib/asn1c/support/README.md b/lib/asn1c/support/README.md index 36e7e483e..8e92389db 100644 --- a/lib/asn1c/support/README.md +++ b/lib/asn1c/support/README.md @@ -9,7 +9,7 @@ Date: Sun Nov 1 08:58:12 2020 -0500 user@host ~/Documents/git/my$ \ git clone https://github.com/mouse07410/asn1c.git user@host ~/Documents/git/my$ \ - git checkout dcf963c0e43196057a97feac16421fe79dc7d943 + git checkout 8282f80bc89cc773f9432cde56398a36f2683511 OR @@ -30,15 +30,15 @@ user@host ~/documents/git/open5gs/lib/asn1c/s1ap$ \ ASN1C_PREFIX=S1AP_ ../../../../my/asn1c/asn1c/asn1c -pdu=all \ -fcompound-names -findirect-choice -fno-include-deps \ -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER \ - ../support/s1ap-r16.4.0/36413-g40.asn + ../support/s1ap-r16.7.0/36413-g70.asn user@host ~/Documents/git/open5gs/lib/asn1c/ngap$ \ ASN1C_PREFIX=NGAP_ ../../../../my/asn1c/asn1c/asn1c -pdu=all \ -fcompound-names -findirect-choice -fno-include-deps \ -no-gen-BER -no-gen-XER -no-gen-OER -no-gen-UPER \ - ../support/ngap-r16.4.0/38413-g40.asn + ../support/ngap-r16.7.0/38413-g70.asn -Fix aper_support.c +Fix aper_support.c (Issues #773 - NGReset Decode Problem) =========================================== diff --git a/lib/asn1c/common/aper_support.c b/lib/asn1c/common/aper_support.c index 67ad9db5..1adbdde6 100644 @@ -116,7 +116,7 @@ index 67ad9db5..1adbdde6 100644 return per_put_few_bits(po, length-1, 7) ? -1 : 0; } else { -Fix NGAP_RANNodeNameUTF8String.c/NGAP_AMFNameUTF8String.c +Fix NGAP_RANNodeNameUTF8String.c/NGAP_AMFNameUTF8String.c (Issues #994 - APC_EXTENSIBLE) =========================================== diff --git a/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.c b/lib/asn1c/ngap/NGAP_RANNodeNameUTF8String.c index 9e469f7f..79ebd028 100644 diff --git a/lib/asn1c/support/ngap-r16.7.0/38413-g70.asn b/lib/asn1c/support/ngap-r16.7.0/38413-g70.asn new file mode 100644 index 000000000..029ca2572 --- /dev/null +++ b/lib/asn1c/support/ngap-r16.7.0/38413-g70.asn @@ -0,0 +1,9652 @@ +-- ASN1START +-- ************************************************************** +-- +-- Elementary Procedure definitions +-- +-- ************************************************************** + +NGAP-PDU-Descriptions { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-PDU-Descriptions (0)} + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + Criticality, + ProcedureCode +FROM NGAP-CommonDataTypes + + AMFConfigurationUpdate, + AMFConfigurationUpdateAcknowledge, + AMFConfigurationUpdateFailure, + AMFCPRelocationIndication, + AMFStatusIndication, + CellTrafficTrace, + ConnectionEstablishmentIndication, + DeactivateTrace, + DownlinkNASTransport, + DownlinkNonUEAssociatedNRPPaTransport, + DownlinkRANConfigurationTransfer, + DownlinkRANEarlyStatusTransfer, + DownlinkRANStatusTransfer, + DownlinkUEAssociatedNRPPaTransport, + ErrorIndication, + HandoverCancel, + HandoverCancelAcknowledge, + HandoverCommand, + HandoverFailure, + HandoverNotify, + HandoverPreparationFailure, + HandoverRequest, + HandoverRequestAcknowledge, + HandoverRequired, + HandoverSuccess, + InitialContextSetupFailure, + InitialContextSetupRequest, + InitialContextSetupResponse, + InitialUEMessage, + LocationReport, + LocationReportingControl, + LocationReportingFailureIndication, + NASNonDeliveryIndication, + NGReset, + NGResetAcknowledge, + NGSetupFailure, + NGSetupRequest, + NGSetupResponse, + OverloadStart, + OverloadStop, + Paging, + PathSwitchRequest, + PathSwitchRequestAcknowledge, + PathSwitchRequestFailure, + PDUSessionResourceModifyConfirm, + PDUSessionResourceModifyIndication, + PDUSessionResourceModifyRequest, + PDUSessionResourceModifyResponse, + PDUSessionResourceNotify, + PDUSessionResourceReleaseCommand, + PDUSessionResourceReleaseResponse, + PDUSessionResourceSetupRequest, + PDUSessionResourceSetupResponse, + PrivateMessage, + PWSCancelRequest, + PWSCancelResponse, + PWSFailureIndication, + PWSRestartIndication, + RANConfigurationUpdate, + RANConfigurationUpdateAcknowledge, + RANConfigurationUpdateFailure, + RANCPRelocationIndication, + RerouteNASRequest, + RetrieveUEInformation, + RRCInactiveTransitionReport, + SecondaryRATDataUsageReport, + TraceFailureIndication, + TraceStart, + UEContextModificationFailure, + UEContextModificationRequest, + UEContextModificationResponse, + UEContextReleaseCommand, + UEContextReleaseComplete, + UEContextReleaseRequest, + UEContextResumeRequest, + UEContextResumeResponse, + UEContextResumeFailure, + UEContextSuspendRequest, + UEContextSuspendResponse, + UEContextSuspendFailure, + UEInformationTransfer, + UERadioCapabilityCheckRequest, + UERadioCapabilityCheckResponse, + UERadioCapabilityIDMappingRequest, + UERadioCapabilityIDMappingResponse, + UERadioCapabilityInfoIndication, + UETNLABindingReleaseRequest, + UplinkNASTransport, + UplinkNonUEAssociatedNRPPaTransport, + UplinkRANConfigurationTransfer, + UplinkRANEarlyStatusTransfer, + UplinkRANStatusTransfer, + UplinkUEAssociatedNRPPaTransport, + WriteReplaceWarningRequest, + WriteReplaceWarningResponse, + UplinkRIMInformationTransfer, + DownlinkRIMInformationTransfer + +FROM NGAP-PDU-Contents + + id-AMFConfigurationUpdate, + id-AMFCPRelocationIndication, + id-AMFStatusIndication, + id-CellTrafficTrace, + id-ConnectionEstablishmentIndication, + id-DeactivateTrace, + id-DownlinkNASTransport, + id-DownlinkNonUEAssociatedNRPPaTransport, + id-DownlinkRANConfigurationTransfer, + id-DownlinkRANEarlyStatusTransfer, + id-DownlinkRANStatusTransfer, + id-DownlinkUEAssociatedNRPPaTransport, + id-ErrorIndication, + id-HandoverCancel, + id-HandoverNotification, + id-HandoverPreparation, + id-HandoverResourceAllocation, + id-HandoverSuccess, + id-InitialContextSetup, + id-InitialUEMessage, + id-LocationReport, + id-LocationReportingControl, + id-LocationReportingFailureIndication, + id-NASNonDeliveryIndication, + id-NGReset, + id-NGSetup, + id-OverloadStart, + id-OverloadStop, + id-Paging, + id-PathSwitchRequest, + id-PDUSessionResourceModify, + id-PDUSessionResourceModifyIndication, + id-PDUSessionResourceNotify, + id-PDUSessionResourceRelease, + id-PDUSessionResourceSetup, + id-PrivateMessage, + id-PWSCancel, + id-PWSFailureIndication, + id-PWSRestartIndication, + id-RANConfigurationUpdate, + id-RANCPRelocationIndication, + id-RerouteNASRequest, + id-RetrieveUEInformation, + id-RRCInactiveTransitionReport, + id-SecondaryRATDataUsageReport, + id-TraceFailureIndication, + id-TraceStart, + id-UEContextModification, + id-UEContextRelease, + id-UEContextReleaseRequest, + id-UEContextResume, + id-UEContextSuspend, + id-UEInformationTransfer, + id-UERadioCapabilityCheck, + id-UERadioCapabilityIDMapping, + id-UERadioCapabilityInfoIndication, + id-UETNLABindingRelease, + id-UplinkNASTransport, + id-UplinkNonUEAssociatedNRPPaTransport, + id-UplinkRANConfigurationTransfer, + id-UplinkRANEarlyStatusTransfer, + id-UplinkRANStatusTransfer, + id-UplinkUEAssociatedNRPPaTransport, + id-WriteReplaceWarning, + id-UplinkRIMInformationTransfer, + id-DownlinkRIMInformationTransfer + +FROM NGAP-Constants; + +-- ************************************************************** +-- +-- Interface Elementary Procedure Class +-- +-- ************************************************************** + +NGAP-ELEMENTARY-PROCEDURE ::= CLASS { + &InitiatingMessage , + &SuccessfulOutcome OPTIONAL, + &UnsuccessfulOutcome OPTIONAL, + &procedureCode ProcedureCode UNIQUE, + &criticality Criticality DEFAULT ignore +} + +WITH SYNTAX { + INITIATING MESSAGE &InitiatingMessage + [SUCCESSFUL OUTCOME &SuccessfulOutcome] + [UNSUCCESSFUL OUTCOME &UnsuccessfulOutcome] + PROCEDURE CODE &procedureCode + [CRITICALITY &criticality] +} + +-- ************************************************************** +-- +-- Interface PDU Definition +-- +-- ************************************************************** + +NGAP-PDU ::= CHOICE { + initiatingMessage InitiatingMessage, + successfulOutcome SuccessfulOutcome, + unsuccessfulOutcome UnsuccessfulOutcome, + ... +} + +InitiatingMessage ::= SEQUENCE { + procedureCode NGAP-ELEMENTARY-PROCEDURE.&procedureCode ({NGAP-ELEMENTARY-PROCEDURES}), + criticality NGAP-ELEMENTARY-PROCEDURE.&criticality ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value NGAP-ELEMENTARY-PROCEDURE.&InitiatingMessage ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +SuccessfulOutcome ::= SEQUENCE { + procedureCode NGAP-ELEMENTARY-PROCEDURE.&procedureCode ({NGAP-ELEMENTARY-PROCEDURES}), + criticality NGAP-ELEMENTARY-PROCEDURE.&criticality ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value NGAP-ELEMENTARY-PROCEDURE.&SuccessfulOutcome ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +UnsuccessfulOutcome ::= SEQUENCE { + procedureCode NGAP-ELEMENTARY-PROCEDURE.&procedureCode ({NGAP-ELEMENTARY-PROCEDURES}), + criticality NGAP-ELEMENTARY-PROCEDURE.&criticality ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value NGAP-ELEMENTARY-PROCEDURE.&UnsuccessfulOutcome ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +-- ************************************************************** +-- +-- Interface Elementary Procedure List +-- +-- ************************************************************** + +NGAP-ELEMENTARY-PROCEDURES NGAP-ELEMENTARY-PROCEDURE ::= { + NGAP-ELEMENTARY-PROCEDURES-CLASS-1 | + NGAP-ELEMENTARY-PROCEDURES-CLASS-2, + ... +} + +NGAP-ELEMENTARY-PROCEDURES-CLASS-1 NGAP-ELEMENTARY-PROCEDURE ::= { + aMFConfigurationUpdate | + handoverCancel | + handoverPreparation | + handoverResourceAllocation | + initialContextSetup | + nGReset | + nGSetup | + pathSwitchRequest | + pDUSessionResourceModify | + pDUSessionResourceModifyIndication | + pDUSessionResourceRelease | + pDUSessionResourceSetup | + pWSCancel | + rANConfigurationUpdate | + uEContextModification | + uEContextRelease | + uEContextResume | + uEContextSuspend | + uERadioCapabilityCheck | + uERadioCapabilityIDMapping | + writeReplaceWarning, + ... +} + +NGAP-ELEMENTARY-PROCEDURES-CLASS-2 NGAP-ELEMENTARY-PROCEDURE ::= { + aMFCPRelocationIndication | + aMFStatusIndication | + cellTrafficTrace | + connectionEstablishmentIndication | + deactivateTrace | + downlinkNASTransport | + downlinkNonUEAssociatedNRPPaTransport | + downlinkRANConfigurationTransfer | + downlinkRANEarlyStatusTransfer | + downlinkRANStatusTransfer | + downlinkRIMInformationTransfer | + downlinkUEAssociatedNRPPaTransport | + errorIndication | + handoverNotification | + handoverSuccess | + initialUEMessage | + locationReport | + locationReportingControl | + locationReportingFailureIndication | + nASNonDeliveryIndication | + overloadStart | + overloadStop | + paging | + pDUSessionResourceNotify | + privateMessage | + pWSFailureIndication | + pWSRestartIndication | + rANCPRelocationIndication | + rerouteNASRequest | + retrieveUEInformation | + rRCInactiveTransitionReport | + secondaryRATDataUsageReport | + traceFailureIndication | + traceStart | + uEContextReleaseRequest | + uEInformationTransfer | + uERadioCapabilityInfoIndication | + uETNLABindingRelease | + uplinkNASTransport | + uplinkNonUEAssociatedNRPPaTransport | + uplinkRANConfigurationTransfer | + uplinkRANEarlyStatusTransfer | + uplinkRANStatusTransfer | + uplinkRIMInformationTransfer | + uplinkUEAssociatedNRPPaTransport, + ... + +} + +-- ************************************************************** +-- +-- Interface Elementary Procedures +-- +-- ************************************************************** + +aMFConfigurationUpdate NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE AMFConfigurationUpdate + SUCCESSFUL OUTCOME AMFConfigurationUpdateAcknowledge + UNSUCCESSFUL OUTCOME AMFConfigurationUpdateFailure + PROCEDURE CODE id-AMFConfigurationUpdate + CRITICALITY reject +} + +aMFCPRelocationIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE AMFCPRelocationIndication + PROCEDURE CODE id-AMFCPRelocationIndication + CRITICALITY reject +} + +aMFStatusIndication NGAP-ELEMENTARY-PROCEDURE ::={ + INITIATING MESSAGE AMFStatusIndication + PROCEDURE CODE id-AMFStatusIndication + CRITICALITY ignore +} + +cellTrafficTrace NGAP-ELEMENTARY-PROCEDURE ::={ + INITIATING MESSAGE CellTrafficTrace + PROCEDURE CODE id-CellTrafficTrace + CRITICALITY ignore +} + +connectionEstablishmentIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ConnectionEstablishmentIndication + PROCEDURE CODE id-ConnectionEstablishmentIndication + CRITICALITY reject +} + +deactivateTrace NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DeactivateTrace + PROCEDURE CODE id-DeactivateTrace + CRITICALITY ignore +} + +downlinkNASTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkNASTransport + PROCEDURE CODE id-DownlinkNASTransport + CRITICALITY ignore +} + +downlinkNonUEAssociatedNRPPaTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkNonUEAssociatedNRPPaTransport + PROCEDURE CODE id-DownlinkNonUEAssociatedNRPPaTransport + CRITICALITY ignore +} + +downlinkRANConfigurationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkRANConfigurationTransfer + PROCEDURE CODE id-DownlinkRANConfigurationTransfer + CRITICALITY ignore +} + +downlinkRANEarlyStatusTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkRANEarlyStatusTransfer + PROCEDURE CODE id-DownlinkRANEarlyStatusTransfer + CRITICALITY ignore +} + +downlinkRANStatusTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkRANStatusTransfer + PROCEDURE CODE id-DownlinkRANStatusTransfer + CRITICALITY ignore +} + +downlinkUEAssociatedNRPPaTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkUEAssociatedNRPPaTransport + PROCEDURE CODE id-DownlinkUEAssociatedNRPPaTransport + CRITICALITY ignore +} + +errorIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ErrorIndication + PROCEDURE CODE id-ErrorIndication + CRITICALITY ignore +} + +handoverCancel NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverCancel + SUCCESSFUL OUTCOME HandoverCancelAcknowledge + PROCEDURE CODE id-HandoverCancel + CRITICALITY reject +} + +handoverNotification NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverNotify + PROCEDURE CODE id-HandoverNotification + CRITICALITY ignore +} + +handoverPreparation NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverRequired + SUCCESSFUL OUTCOME HandoverCommand + UNSUCCESSFUL OUTCOME HandoverPreparationFailure + PROCEDURE CODE id-HandoverPreparation + CRITICALITY reject +} + +handoverResourceAllocation NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverRequest + SUCCESSFUL OUTCOME HandoverRequestAcknowledge + UNSUCCESSFUL OUTCOME HandoverFailure + PROCEDURE CODE id-HandoverResourceAllocation + CRITICALITY reject +} + +handoverSuccess NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverSuccess + PROCEDURE CODE id-HandoverSuccess + CRITICALITY ignore +} + +initialContextSetup NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE InitialContextSetupRequest + SUCCESSFUL OUTCOME InitialContextSetupResponse + UNSUCCESSFUL OUTCOME InitialContextSetupFailure + PROCEDURE CODE id-InitialContextSetup + CRITICALITY reject +} + +initialUEMessage NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE InitialUEMessage + PROCEDURE CODE id-InitialUEMessage + CRITICALITY ignore +} + +locationReport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReport + PROCEDURE CODE id-LocationReport + CRITICALITY ignore +} + +locationReportingControl NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReportingControl + PROCEDURE CODE id-LocationReportingControl + CRITICALITY ignore +} + +locationReportingFailureIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReportingFailureIndication + PROCEDURE CODE id-LocationReportingFailureIndication + CRITICALITY ignore +} + +nASNonDeliveryIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NASNonDeliveryIndication + PROCEDURE CODE id-NASNonDeliveryIndication + CRITICALITY ignore +} + +nGReset NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NGReset + SUCCESSFUL OUTCOME NGResetAcknowledge + PROCEDURE CODE id-NGReset + CRITICALITY reject +} + +nGSetup NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NGSetupRequest + SUCCESSFUL OUTCOME NGSetupResponse + UNSUCCESSFUL OUTCOME NGSetupFailure + PROCEDURE CODE id-NGSetup + CRITICALITY reject +} + +overloadStart NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE OverloadStart + PROCEDURE CODE id-OverloadStart + CRITICALITY ignore +} + +overloadStop NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE OverloadStop + PROCEDURE CODE id-OverloadStop + CRITICALITY reject +} + +paging NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE Paging + PROCEDURE CODE id-Paging + CRITICALITY ignore +} + +pathSwitchRequest NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PathSwitchRequest + SUCCESSFUL OUTCOME PathSwitchRequestAcknowledge + UNSUCCESSFUL OUTCOME PathSwitchRequestFailure + PROCEDURE CODE id-PathSwitchRequest + CRITICALITY reject +} + +pDUSessionResourceModify NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceModifyRequest + SUCCESSFUL OUTCOME PDUSessionResourceModifyResponse + PROCEDURE CODE id-PDUSessionResourceModify + CRITICALITY reject +} + +pDUSessionResourceModifyIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceModifyIndication + SUCCESSFUL OUTCOME PDUSessionResourceModifyConfirm + PROCEDURE CODE id-PDUSessionResourceModifyIndication + CRITICALITY reject +} + +pDUSessionResourceNotify NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceNotify + PROCEDURE CODE id-PDUSessionResourceNotify + CRITICALITY ignore +} + +pDUSessionResourceRelease NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceReleaseCommand + SUCCESSFUL OUTCOME PDUSessionResourceReleaseResponse + PROCEDURE CODE id-PDUSessionResourceRelease + CRITICALITY reject +} + +pDUSessionResourceSetup NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceSetupRequest + SUCCESSFUL OUTCOME PDUSessionResourceSetupResponse + PROCEDURE CODE id-PDUSessionResourceSetup + CRITICALITY reject +} + +privateMessage NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PrivateMessage + PROCEDURE CODE id-PrivateMessage + CRITICALITY ignore +} + +pWSCancel NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSCancelRequest + SUCCESSFUL OUTCOME PWSCancelResponse + PROCEDURE CODE id-PWSCancel + CRITICALITY reject +} + +pWSFailureIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSFailureIndication + PROCEDURE CODE id-PWSFailureIndication + CRITICALITY ignore +} + +pWSRestartIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSRestartIndication + PROCEDURE CODE id-PWSRestartIndication + CRITICALITY ignore +} + +rANConfigurationUpdate NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RANConfigurationUpdate + SUCCESSFUL OUTCOME RANConfigurationUpdateAcknowledge + UNSUCCESSFUL OUTCOME RANConfigurationUpdateFailure + PROCEDURE CODE id-RANConfigurationUpdate + CRITICALITY reject +} + +rANCPRelocationIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RANCPRelocationIndication + PROCEDURE CODE id-RANCPRelocationIndication + CRITICALITY reject +} + +rerouteNASRequest NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RerouteNASRequest + PROCEDURE CODE id-RerouteNASRequest + CRITICALITY reject +} + + +retrieveUEInformation NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RetrieveUEInformation + PROCEDURE CODE id-RetrieveUEInformation + CRITICALITY reject +} + +rRCInactiveTransitionReport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RRCInactiveTransitionReport + PROCEDURE CODE id-RRCInactiveTransitionReport + CRITICALITY ignore +} + +secondaryRATDataUsageReport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE SecondaryRATDataUsageReport + PROCEDURE CODE id-SecondaryRATDataUsageReport + CRITICALITY ignore +} + +traceFailureIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE TraceFailureIndication + PROCEDURE CODE id-TraceFailureIndication + CRITICALITY ignore +} + +traceStart NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE TraceStart + PROCEDURE CODE id-TraceStart + CRITICALITY ignore +} + +uEContextModification NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextModificationRequest + SUCCESSFUL OUTCOME UEContextModificationResponse + UNSUCCESSFUL OUTCOME UEContextModificationFailure + PROCEDURE CODE id-UEContextModification + CRITICALITY reject +} + +uEContextRelease NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextReleaseCommand + SUCCESSFUL OUTCOME UEContextReleaseComplete + PROCEDURE CODE id-UEContextRelease + CRITICALITY reject +} + +uEContextReleaseRequest NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextReleaseRequest + PROCEDURE CODE id-UEContextReleaseRequest + CRITICALITY ignore +} + +uEContextResume NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextResumeRequest + SUCCESSFUL OUTCOME UEContextResumeResponse + UNSUCCESSFUL OUTCOME UEContextResumeFailure + PROCEDURE CODE id-UEContextResume + CRITICALITY reject +} + +uEContextSuspend NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextSuspendRequest + SUCCESSFUL OUTCOME UEContextSuspendResponse + UNSUCCESSFUL OUTCOME UEContextSuspendFailure + PROCEDURE CODE id-UEContextSuspend + CRITICALITY reject +} + +uEInformationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEInformationTransfer + PROCEDURE CODE id-UEInformationTransfer + CRITICALITY reject +} + +uERadioCapabilityCheck NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityCheckRequest + SUCCESSFUL OUTCOME UERadioCapabilityCheckResponse + PROCEDURE CODE id-UERadioCapabilityCheck + CRITICALITY reject +} + +uERadioCapabilityIDMapping NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityIDMappingRequest + SUCCESSFUL OUTCOME UERadioCapabilityIDMappingResponse + PROCEDURE CODE id-UERadioCapabilityIDMapping + CRITICALITY reject +} + +uERadioCapabilityInfoIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityInfoIndication + PROCEDURE CODE id-UERadioCapabilityInfoIndication + CRITICALITY ignore +} + +uETNLABindingRelease NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UETNLABindingReleaseRequest + PROCEDURE CODE id-UETNLABindingRelease + CRITICALITY ignore +} + +uplinkNASTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkNASTransport + PROCEDURE CODE id-UplinkNASTransport + CRITICALITY ignore +} + +uplinkNonUEAssociatedNRPPaTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkNonUEAssociatedNRPPaTransport + PROCEDURE CODE id-UplinkNonUEAssociatedNRPPaTransport + CRITICALITY ignore +} + +uplinkRANConfigurationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkRANConfigurationTransfer + PROCEDURE CODE id-UplinkRANConfigurationTransfer + CRITICALITY ignore +} + +uplinkRANEarlyStatusTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkRANEarlyStatusTransfer + PROCEDURE CODE id-UplinkRANEarlyStatusTransfer + CRITICALITY reject +} + +uplinkRANStatusTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkRANStatusTransfer + PROCEDURE CODE id-UplinkRANStatusTransfer + CRITICALITY ignore +} + +uplinkUEAssociatedNRPPaTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkUEAssociatedNRPPaTransport + PROCEDURE CODE id-UplinkUEAssociatedNRPPaTransport + CRITICALITY ignore +} + +writeReplaceWarning NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE WriteReplaceWarningRequest + SUCCESSFUL OUTCOME WriteReplaceWarningResponse + PROCEDURE CODE id-WriteReplaceWarning + CRITICALITY reject +} + +uplinkRIMInformationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkRIMInformationTransfer + PROCEDURE CODE id-UplinkRIMInformationTransfer + CRITICALITY ignore +} + +downlinkRIMInformationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkRIMInformationTransfer + PROCEDURE CODE id-DownlinkRIMInformationTransfer + CRITICALITY ignore +} + +END +-- ASN1STOP + +-- ASN1START +-- ************************************************************** +-- +-- PDU definitions for NGAP. +-- +-- ************************************************************** + +NGAP-PDU-Contents { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-PDU-Contents (1) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + AllowedNSSAI, + AMFName, + AMFSetID, + AMF-TNLAssociationSetupList, + AMF-TNLAssociationToAddList, + AMF-TNLAssociationToRemoveList, + AMF-TNLAssociationToUpdateList, + AMF-UE-NGAP-ID, + AssistanceDataForPaging, + AuthenticatedIndication, + BroadcastCancelledAreaList, + BroadcastCompletedAreaList, + CancelAllWarningMessages, + Cause, + CellIDListForRestart, + CEmodeBrestricted, + CEmodeBSupport-Indicator, + CNAssistedRANTuning, + ConcurrentWarningMessageInd, + CoreNetworkAssistanceInformationForInactive, + CPTransportLayerInformation, + CriticalityDiagnostics, + DataCodingScheme, + DL-CP-SecurityInformation, + DirectForwardingPathAvailability, + EarlyStatusTransfer-TransparentContainer, + EDT-Session, + EmergencyAreaIDListForRestart, + EmergencyFallbackIndicator, + EN-DCSONConfigurationTransfer, + EndIndication, + Enhanced-CoverageRestriction, + EUTRA-CGI, + Extended-AMFName, + Extended-ConnectedTime, + Extended-RANNodeName, + FiveG-S-TMSI, + GlobalRANNodeID, + GUAMI, + HandoverFlag, + HandoverType, + IAB-Authorized, + IAB-Supported, + IABNodeIndication, + IMSVoiceSupportIndicator, + IndexToRFSP, + InfoOnRecommendedCellsAndRANNodesForPaging, + IntersystemSONConfigurationTransfer, + LAI, + LTEM-Indication, + LocationReportingRequestType, + LTEUESidelinkAggregateMaximumBitrate, + LTEV2XServicesAuthorized, + MaskedIMEISV, + MessageIdentifier, + MDTPLMNList, + MobilityRestrictionList, + NAS-PDU, + NASSecurityParametersFromNGRAN, + NB-IoT-DefaultPagingDRX, + NB-IoT-PagingDRX, + NB-IoT-Paging-eDRXInfo, + NB-IoT-UEPriority, + NewSecurityContextInd, + NGRAN-CGI, + NGRAN-TNLAssociationToRemoveList, + NGRANTraceID, + NotifySourceNGRANNode, + NPN-AccessInformation, + NR-CGI, + NRPPa-PDU, + NumberOfBroadcastsRequested, + NRUESidelinkAggregateMaximumBitrate, + NRV2XServicesAuthorized, + OverloadResponse, + OverloadStartNSSAIList, + PagingAssisDataforCEcapabUE, + PagingDRX, + PagingOrigin, + PagingPriority, + PagingeDRXInformation, + PDUSessionAggregateMaximumBitRate, + PDUSessionResourceAdmittedList, + PDUSessionResourceFailedToModifyListModCfm, + PDUSessionResourceFailedToModifyListModRes, + PDUSessionResourceFailedToResumeListRESReq, + PDUSessionResourceFailedToResumeListRESRes, + PDUSessionResourceFailedToSetupListCxtFail, + PDUSessionResourceFailedToSetupListCxtRes, + PDUSessionResourceFailedToSetupListHOAck, + PDUSessionResourceFailedToSetupListPSReq, + PDUSessionResourceFailedToSetupListSURes, + PDUSessionResourceHandoverList, + PDUSessionResourceListCxtRelCpl, + PDUSessionResourceListCxtRelReq, + PDUSessionResourceListHORqd, + PDUSessionResourceModifyListModCfm, + PDUSessionResourceModifyListModInd, + PDUSessionResourceModifyListModReq, + PDUSessionResourceModifyListModRes, + PDUSessionResourceNotifyList, + PDUSessionResourceReleasedListNot, + PDUSessionResourceReleasedListPSAck, + PDUSessionResourceReleasedListPSFail, + PDUSessionResourceReleasedListRelRes, + PDUSessionResourceResumeListRESReq, + PDUSessionResourceResumeListRESRes, + PDUSessionResourceSecondaryRATUsageList, + PDUSessionResourceSetupListCxtReq, + PDUSessionResourceSetupListCxtRes, + PDUSessionResourceSetupListHOReq, + PDUSessionResourceSetupListSUReq, + PDUSessionResourceSetupListSURes, + PDUSessionResourceSuspendListSUSReq, + PDUSessionResourceSwitchedList, + PDUSessionResourceToBeSwitchedDLList, + PDUSessionResourceToReleaseListHOCmd, + PDUSessionResourceToReleaseListRelCmd, + PLMNIdentity, + PLMNSupportList, + PrivacyIndicator, + PWSFailedCellIDList, + PC5QoSParameters, + RANNodeName, + RANPagingPriority, + RANStatusTransfer-TransparentContainer, + RAN-UE-NGAP-ID, + RedirectionVoiceFallback, + RelativeAMFCapacity, + RepetitionPeriod, + ResetType, + RGLevelWirelineAccessCharacteristics, + RoutingID, + RRCEstablishmentCause, + RRCInactiveTransitionReportRequest, + RRCState, + SecurityContext, + SecurityKey, + SerialNumber, + ServedGUAMIList, + SliceSupportList, + S-NSSAI, + SONConfigurationTransfer, + SourceToTarget-TransparentContainer, + SourceToTarget-AMFInformationReroute, + SRVCCOperationPossible, + SupportedTAList, + Suspend-Request-Indication, + Suspend-Response-Indication, + TAI, + TAIListForPaging, + TAIListForRestart, + TargetID, + TargetToSource-TransparentContainer, + TargettoSource-Failure-TransparentContainer, + TimeToWait, + TNLAssociationList, + TraceActivation, + TrafficLoadReductionIndication, + TransportLayerAddress, + UEAggregateMaximumBitRate, + UE-associatedLogicalNG-connectionList, + UECapabilityInfoRequest, + UEContextRequest, + UE-DifferentiationInfo, + UE-NGAP-IDs, + UEPagingIdentity, + UEPresenceInAreaOfInterestList, + UERadioCapability, + UERadioCapabilityForPaging, + UERadioCapabilityID, + UERetentionInformation, + UESecurityCapabilities, + UE-UP-CIoT-Support, + UL-CP-SecurityInformation, + UnavailableGUAMIList, + URI-address, + UserLocationInformation, + WarningAreaCoordinates, + WarningAreaList, + WarningMessageContents, + WarningSecurityInfo, + WarningType, + WUS-Assistance-Information, + RIMInformationTransfer + +FROM NGAP-IEs + + PrivateIE-Container{}, + ProtocolExtensionContainer{}, + ProtocolIE-Container{}, + ProtocolIE-ContainerList{}, + ProtocolIE-ContainerPair{}, + ProtocolIE-SingleContainer{}, + NGAP-PRIVATE-IES, + NGAP-PROTOCOL-EXTENSION, + NGAP-PROTOCOL-IES, + NGAP-PROTOCOL-IES-PAIR +FROM NGAP-Containers + + id-AllowedNSSAI, + id-AMFName, + id-AMFOverloadResponse, + id-AMFSetID, + id-AMF-TNLAssociationFailedToSetupList, + id-AMF-TNLAssociationSetupList, + id-AMF-TNLAssociationToAddList, + id-AMF-TNLAssociationToRemoveList, + id-AMF-TNLAssociationToUpdateList, + id-AMFTrafficLoadReductionIndication, + id-AMF-UE-NGAP-ID, + id-AssistanceDataForPaging, + id-AuthenticatedIndication, + id-BroadcastCancelledAreaList, + id-BroadcastCompletedAreaList, + id-CancelAllWarningMessages, + id-Cause, + id-CellIDListForRestart, + id-CEmodeBrestricted, + id-CEmodeBSupport-Indicator, + id-CNAssistedRANTuning, + id-ConcurrentWarningMessageInd, + id-CoreNetworkAssistanceInformationForInactive, + id-CriticalityDiagnostics, + id-DataCodingScheme, + id-DefaultPagingDRX, + id-DirectForwardingPathAvailability, + id-DL-CP-SecurityInformation, + id-EarlyStatusTransfer-TransparentContainer, + id-EDT-Session, + id-EmergencyAreaIDListForRestart, + id-EmergencyFallbackIndicator, + id-ENDC-SONConfigurationTransferDL, + id-ENDC-SONConfigurationTransferUL, + id-EndIndication, + id-Enhanced-CoverageRestriction, + id-EUTRA-CGI, + id-Extended-AMFName, + id-Extended-ConnectedTime, + id-Extended-RANNodeName, + id-FiveG-S-TMSI, + id-GlobalRANNodeID, + id-GUAMI, + id-HandoverFlag, + id-HandoverType, + id-IAB-Authorized, + id-IAB-Supported, + id-IABNodeIndication, + id-IMSVoiceSupportIndicator, + id-IndexToRFSP, + id-InfoOnRecommendedCellsAndRANNodesForPaging, + id-IntersystemSONConfigurationTransferDL, + id-IntersystemSONConfigurationTransferUL, + id-LocationReportingRequestType, + id-LTEM-Indication, + id-LTEV2XServicesAuthorized, + id-LTEUESidelinkAggregateMaximumBitrate, + id-ManagementBasedMDTPLMNList, + id-MaskedIMEISV, + id-MessageIdentifier, + id-MobilityRestrictionList, + id-NAS-PDU, + id-NASC, + id-NASSecurityParametersFromNGRAN, + id-NB-IoT-DefaultPagingDRX, + id-NB-IoT-PagingDRX, + id-NB-IoT-Paging-eDRXInfo, + id-NB-IoT-UEPriority, + id-NewAMF-UE-NGAP-ID, + id-NewGUAMI, + id-NewSecurityContextInd, + id-NGAP-Message, + id-NGRAN-CGI, + id-NGRAN-TNLAssociationToRemoveList, + id-NGRANTraceID, + id-NotifySourceNGRANNode, + id-NPN-AccessInformation, + id-NR-CGI, + id-NRPPa-PDU, + id-NRV2XServicesAuthorized, + id-NRUESidelinkAggregateMaximumBitrate, + id-NumberOfBroadcastsRequested, + id-OldAMF, + id-OverloadStartNSSAIList, + id-PagingAssisDataforCEcapabUE, + id-PagingDRX, + id-PagingeDRXInformation, + id-PagingOrigin, + id-PagingPriority, + id-PDUSessionResourceAdmittedList, + id-PDUSessionResourceFailedToModifyListModCfm, + id-PDUSessionResourceFailedToModifyListModRes, + id-PDUSessionResourceFailedToResumeListRESReq, + id-PDUSessionResourceFailedToResumeListRESRes, + id-PDUSessionResourceFailedToSetupListCxtFail, + id-PDUSessionResourceFailedToSetupListCxtRes, + id-PDUSessionResourceFailedToSetupListHOAck, + id-PDUSessionResourceFailedToSetupListPSReq, + id-PDUSessionResourceFailedToSetupListSURes, + id-PDUSessionResourceHandoverList, + id-PDUSessionResourceListCxtRelCpl, + id-PDUSessionResourceListCxtRelReq, + id-PDUSessionResourceListHORqd, + id-PDUSessionResourceModifyListModCfm, + id-PDUSessionResourceModifyListModInd, + id-PDUSessionResourceModifyListModReq, + id-PDUSessionResourceModifyListModRes, + id-PDUSessionResourceNotifyList, + id-PDUSessionResourceReleasedListNot, + id-PDUSessionResourceReleasedListPSAck, + id-PDUSessionResourceReleasedListPSFail, + id-PDUSessionResourceReleasedListRelRes, + id-PDUSessionResourceResumeListRESReq, + id-PDUSessionResourceResumeListRESRes, + id-PDUSessionResourceSecondaryRATUsageList, + id-PDUSessionResourceSetupListCxtReq, + id-PDUSessionResourceSetupListCxtRes, + id-PDUSessionResourceSetupListHOReq, + id-PDUSessionResourceSetupListSUReq, + id-PDUSessionResourceSetupListSURes, + id-PDUSessionResourceSuspendListSUSReq, + id-PDUSessionResourceSwitchedList, + id-PDUSessionResourceToBeSwitchedDLList, + id-PDUSessionResourceToReleaseListHOCmd, + id-PDUSessionResourceToReleaseListRelCmd, + id-PLMNSupportList, + id-PrivacyIndicator, + id-PWSFailedCellIDList, + id-PC5QoSParameters, + id-RANNodeName, + id-RANPagingPriority, + id-RANStatusTransfer-TransparentContainer, + id-RAN-UE-NGAP-ID, + id-RedirectionVoiceFallback, + id-RelativeAMFCapacity, + id-RepetitionPeriod, + id-ResetType, + id-RGLevelWirelineAccessCharacteristics, + id-RoutingID, + id-RRCEstablishmentCause, + id-RRCInactiveTransitionReportRequest, + id-RRC-Resume-Cause, + id-RRCState, + id-SecurityContext, + id-SecurityKey, + id-SelectedPLMNIdentity, + id-SerialNumber, + id-ServedGUAMIList, + id-SliceSupportList, + id-S-NSSAI, + id-SONConfigurationTransferDL, + id-SONConfigurationTransferUL, + id-SourceAMF-UE-NGAP-ID, + id-SourceToTarget-TransparentContainer, + id-SourceToTarget-AMFInformationReroute, + id-SRVCCOperationPossible, + id-SupportedTAList, + id-Suspend-Request-Indication, + id-Suspend-Response-Indication, + id-TAI, + id-TAIListForPaging, + id-TAIListForRestart, + id-TargetID, + id-TargetToSource-TransparentContainer, + id-TargettoSource-Failure-TransparentContainer, + id-TimeToWait, + id-TNGFIdentityInformation, + id-TraceActivation, + id-TraceCollectionEntityIPAddress, + id-TraceCollectionEntityURI, + id-TWIFIdentityInformation, + id-UEAggregateMaximumBitRate, + id-UE-associatedLogicalNG-connectionList, + id-UECapabilityInfoRequest, + id-UEContextRequest, + id-UE-DifferentiationInfo, + id-UE-NGAP-IDs, + id-UEPagingIdentity, + id-UEPresenceInAreaOfInterestList, + id-UERadioCapability, + id-UERadioCapabilityForPaging, + id-UERadioCapabilityID, + id-UERadioCapability-EUTRA-Format, + id-UERetentionInformation, + id-UESecurityCapabilities, + id-UE-UP-CIoT-Support, + id-UL-CP-SecurityInformation, + id-UnavailableGUAMIList, + id-UserLocationInformation, + id-W-AGFIdentityInformation, + id-WarningAreaCoordinates, + id-WarningAreaList, + id-WarningMessageContents, + id-WarningSecurityInfo, + id-WarningType, + id-WUS-Assistance-Information, + id-RIMInformationTransfer + +FROM NGAP-Constants; + +-- ************************************************************** +-- +-- PDU SESSION MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU Session Resource Setup Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE SETUP REQUEST +-- +-- ************************************************************** + +PDUSessionResourceSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceSetupRequestIEs} }, + ... +} + +PDUSessionResourceSetupRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE optional }| + { ID id-PDUSessionResourceSetupListSUReq CRITICALITY reject TYPE PDUSessionResourceSetupListSUReq PRESENCE mandatory }| + { ID id-UEAggregateMaximumBitRate CRITICALITY ignore TYPE UEAggregateMaximumBitRate PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE SETUP RESPONSE +-- +-- ************************************************************** + +PDUSessionResourceSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceSetupResponseIEs} }, + ... +} + +PDUSessionResourceSetupResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceSetupListSURes CRITICALITY ignore TYPE PDUSessionResourceSetupListSURes PRESENCE optional }| + { ID id-PDUSessionResourceFailedToSetupListSURes CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListSURes PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PDU Session Resource Release Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE RELEASE COMMAND +-- +-- ************************************************************** + +PDUSessionResourceReleaseCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceReleaseCommandIEs} }, + ... +} + +PDUSessionResourceReleaseCommandIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE optional }| + { ID id-PDUSessionResourceToReleaseListRelCmd CRITICALITY reject TYPE PDUSessionResourceToReleaseListRelCmd PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE RELEASE RESPONSE +-- +-- ************************************************************** + +PDUSessionResourceReleaseResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceReleaseResponseIEs} }, + ... +} + +PDUSessionResourceReleaseResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceReleasedListRelRes CRITICALITY ignore TYPE PDUSessionResourceReleasedListRelRes PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PDU Session Resource Modify Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE MODIFY REQUEST +-- +-- ************************************************************** + +PDUSessionResourceModifyRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyRequestIEs} }, + ... +} + +PDUSessionResourceModifyRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-PDUSessionResourceModifyListModReq CRITICALITY reject TYPE PDUSessionResourceModifyListModReq PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE MODIFY RESPONSE +-- +-- ************************************************************** + +PDUSessionResourceModifyResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyResponseIEs} }, + ... +} + +PDUSessionResourceModifyResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceModifyListModRes CRITICALITY ignore TYPE PDUSessionResourceModifyListModRes PRESENCE optional }| + { ID id-PDUSessionResourceFailedToModifyListModRes CRITICALITY ignore TYPE PDUSessionResourceFailedToModifyListModRes PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PDU Session Resource Notify Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE NOTIFY +-- +-- ************************************************************** + +PDUSessionResourceNotify ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceNotifyIEs} }, + ... +} + +PDUSessionResourceNotifyIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceNotifyList CRITICALITY reject TYPE PDUSessionResourceNotifyList PRESENCE optional }| + { ID id-PDUSessionResourceReleasedListNot CRITICALITY ignore TYPE PDUSessionResourceReleasedListNot PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PDU Session Resource Modify Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE MODIFY INDICATION +-- +-- ************************************************************** + +PDUSessionResourceModifyIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyIndicationIEs} }, + ... +} + +PDUSessionResourceModifyIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceModifyListModInd CRITICALITY reject TYPE PDUSessionResourceModifyListModInd PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE MODIFY CONFIRM +-- +-- ************************************************************** + +PDUSessionResourceModifyConfirm ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyConfirmIEs} }, + ... +} + +PDUSessionResourceModifyConfirmIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceModifyListModCfm CRITICALITY ignore TYPE PDUSessionResourceModifyListModCfm PRESENCE optional }| + { ID id-PDUSessionResourceFailedToModifyListModCfm CRITICALITY ignore TYPE PDUSessionResourceFailedToModifyListModCfm PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Initial Context Setup Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- INITIAL CONTEXT SETUP REQUEST +-- +-- ************************************************************** + +InitialContextSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupRequestIEs} }, + ... +} + +InitialContextSetupRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-OldAMF CRITICALITY reject TYPE AMFName PRESENCE optional }| + { ID id-UEAggregateMaximumBitRate CRITICALITY reject TYPE UEAggregateMaximumBitRate PRESENCE conditional }| + { ID id-CoreNetworkAssistanceInformationForInactive CRITICALITY ignore TYPE CoreNetworkAssistanceInformationForInactive PRESENCE optional }| + { ID id-GUAMI CRITICALITY reject TYPE GUAMI PRESENCE mandatory }| + { ID id-PDUSessionResourceSetupListCxtReq CRITICALITY reject TYPE PDUSessionResourceSetupListCxtReq PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE mandatory }| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE mandatory }| + { ID id-SecurityKey CRITICALITY reject TYPE SecurityKey PRESENCE mandatory }| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE optional }| + { ID id-MobilityRestrictionList CRITICALITY ignore TYPE MobilityRestrictionList PRESENCE optional }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-IndexToRFSP CRITICALITY ignore TYPE IndexToRFSP PRESENCE optional }| + { ID id-MaskedIMEISV CRITICALITY ignore TYPE MaskedIMEISV PRESENCE optional }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE optional }| + { ID id-EmergencyFallbackIndicator CRITICALITY reject TYPE EmergencyFallbackIndicator PRESENCE optional }| + { ID id-RRCInactiveTransitionReportRequest CRITICALITY ignore TYPE RRCInactiveTransitionReportRequest PRESENCE optional }| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional }| + { ID id-RedirectionVoiceFallback CRITICALITY ignore TYPE RedirectionVoiceFallback PRESENCE optional }| + { ID id-LocationReportingRequestType CRITICALITY ignore TYPE LocationReportingRequestType PRESENCE optional }| + { ID id-CNAssistedRANTuning CRITICALITY ignore TYPE CNAssistedRANTuning PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY ignore TYPE IAB-Authorized PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| +{ ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| +{ ID id-LTEV2XServicesAuthorized CRITICALITY ignore TYPE LTEV2XServicesAuthorized PRESENCE optional }| +{ ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| +{ ID id-LTEUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE LTEUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UE-UP-CIoT-Support CRITICALITY ignore TYPE UE-UP-CIoT-Support PRESENCE optional }| + { ID id-RGLevelWirelineAccessCharacteristics CRITICALITY ignore TYPE RGLevelWirelineAccessCharacteristics PRESENCE optional }| + { ID id-ManagementBasedMDTPLMNList CRITICALITY ignore TYPE MDTPLMNList PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- INITIAL CONTEXT SETUP RESPONSE +-- +-- ************************************************************** + +InitialContextSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupResponseIEs} }, + ... +} + +InitialContextSetupResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceSetupListCxtRes CRITICALITY ignore TYPE PDUSessionResourceSetupListCxtRes PRESENCE optional }| + { ID id-PDUSessionResourceFailedToSetupListCxtRes CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListCxtRes PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- INITIAL CONTEXT SETUP FAILURE +-- +-- ************************************************************** + +InitialContextSetupFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupFailureIEs} }, + ... +} + +InitialContextSetupFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceFailedToSetupListCxtFail CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListCxtFail PRESENCE optional }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Release Request Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT RELEASE REQUEST +-- +-- ************************************************************** + +UEContextReleaseRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextReleaseRequest-IEs} }, + ... +} + +UEContextReleaseRequest-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceListCxtRelReq CRITICALITY reject TYPE PDUSessionResourceListCxtRelReq PRESENCE optional }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE Context Release Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT RELEASE COMMAND +-- +-- ************************************************************** + +UEContextReleaseCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextReleaseCommand-IEs} }, + ... +} + +UEContextReleaseCommand-IEs NGAP-PROTOCOL-IES ::= { + { ID id-UE-NGAP-IDs CRITICALITY reject TYPE UE-NGAP-IDs PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RELEASE COMPLETE +-- +-- ************************************************************** + +UEContextReleaseComplete ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextReleaseComplete-IEs} }, + ... +} + +UEContextReleaseComplete-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-InfoOnRecommendedCellsAndRANNodesForPaging CRITICALITY ignore TYPE InfoOnRecommendedCellsAndRANNodesForPaging PRESENCE optional }| + { ID id-PDUSessionResourceListCxtRelCpl CRITICALITY reject TYPE PDUSessionResourceListCxtRelCpl PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-PagingAssisDataforCEcapabUE CRITICALITY ignore TYPE PagingAssisDataforCEcapabUE PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Resume Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT RESUME REQUEST +-- +-- ************************************************************** + +UEContextResumeRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextResumeRequestIEs} }, + ... +} + +UEContextResumeRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RRC-Resume-Cause CRITICALITY ignore TYPE RRCEstablishmentCause PRESENCE mandatory }| + { ID id-PDUSessionResourceResumeListRESReq CRITICALITY reject TYPE PDUSessionResourceResumeListRESReq PRESENCE optional }| + { ID id-PDUSessionResourceFailedToResumeListRESReq CRITICALITY reject TYPE PDUSessionResourceFailedToResumeListRESReq PRESENCE optional }| + { ID id-Suspend-Request-Indication CRITICALITY ignore TYPE Suspend-Request-Indication PRESENCE optional }| + { ID id-InfoOnRecommendedCellsAndRANNodesForPaging CRITICALITY ignore TYPE InfoOnRecommendedCellsAndRANNodesForPaging PRESENCE optional }| + { ID id-PagingAssisDataforCEcapabUE CRITICALITY ignore TYPE PagingAssisDataforCEcapabUE PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RESUME RESPONSE +-- +-- ************************************************************** + +UEContextResumeResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextResumeResponseIEs} }, + ... +} + +UEContextResumeResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceResumeListRESRes CRITICALITY reject TYPE PDUSessionResourceResumeListRESRes PRESENCE optional }| + { ID id-PDUSessionResourceFailedToResumeListRESRes CRITICALITY reject TYPE PDUSessionResourceFailedToResumeListRESRes PRESENCE optional }| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE optional }| + { ID id-Suspend-Response-Indication CRITICALITY ignore TYPE Suspend-Response-Indication PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RESUME FAILURE +-- +-- ************************************************************** + +UEContextResumeFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextResumeFailureIEs} }, + ... +} + +UEContextResumeFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- UE Context Suspend Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT SUSPEND REQUEST +-- +-- ************************************************************** + +UEContextSuspendRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextSuspendRequestIEs} }, + ... +} + +UEContextSuspendRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-InfoOnRecommendedCellsAndRANNodesForPaging CRITICALITY ignore TYPE InfoOnRecommendedCellsAndRANNodesForPaging PRESENCE optional }| + { ID id-PagingAssisDataforCEcapabUE CRITICALITY ignore TYPE PagingAssisDataforCEcapabUE PRESENCE optional }| + { ID id-PDUSessionResourceSuspendListSUSReq CRITICALITY reject TYPE PDUSessionResourceSuspendListSUSReq PRESENCE optional }, ... +} + +-- ************************************************************** +-- +-- UE CONTEXT SUSPEND RESPONSE +-- +-- ************************************************************** + +UEContextSuspendResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextSuspendResponseIEs} }, + ... +} + +UEContextSuspendResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT SUSPEND FAILURE +-- +-- ************************************************************** + +UEContextSuspendFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextSuspendFailureIEs} }, + ... +} + +UEContextSuspendFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Modification Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION REQUEST +-- +-- ************************************************************** + +UEContextModificationRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextModificationRequestIEs} }, + ... +} + +UEContextModificationRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-SecurityKey CRITICALITY reject TYPE SecurityKey PRESENCE optional }| + { ID id-IndexToRFSP CRITICALITY ignore TYPE IndexToRFSP PRESENCE optional }| + { ID id-UEAggregateMaximumBitRate CRITICALITY ignore TYPE UEAggregateMaximumBitRate PRESENCE optional }| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE optional }| + { ID id-CoreNetworkAssistanceInformationForInactive CRITICALITY ignore TYPE CoreNetworkAssistanceInformationForInactive PRESENCE optional }| + { ID id-EmergencyFallbackIndicator CRITICALITY reject TYPE EmergencyFallbackIndicator PRESENCE optional }| + { ID id-NewAMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE optional }| + { ID id-RRCInactiveTransitionReportRequest CRITICALITY ignore TYPE RRCInactiveTransitionReportRequest PRESENCE optional }| + { ID id-NewGUAMI CRITICALITY reject TYPE GUAMI PRESENCE optional }| + { ID id-CNAssistedRANTuning CRITICALITY ignore TYPE CNAssistedRANTuning PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY ignore TYPE IAB-Authorized PRESENCE optional }| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-LTEV2XServicesAuthorized CRITICALITY ignore TYPE LTEV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-LTEUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE LTEUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }| + { ID id-RGLevelWirelineAccessCharacteristics CRITICALITY ignore TYPE RGLevelWirelineAccessCharacteristics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION RESPONSE +-- +-- ************************************************************** + +UEContextModificationResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextModificationResponseIEs} }, + ... +} + +UEContextModificationResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RRCState CRITICALITY ignore TYPE RRCState PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION FAILURE +-- +-- ************************************************************** + +UEContextModificationFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextModificationFailureIEs} }, + ... +} + +UEContextModificationFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RRC INACTIVE TRANSITION REPORT +-- +-- ************************************************************** + +RRCInactiveTransitionReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RRCInactiveTransitionReportIEs} }, + ... +} + +RRCInactiveTransitionReportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RRCState CRITICALITY ignore TYPE RRCState PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Retrieve UE Information +-- +-- ************************************************************** + +RetrieveUEInformation ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { RetrieveUEInformationIEs} }, + ... +} + +RetrieveUEInformationIEs NGAP-PROTOCOL-IES ::= { + { ID id-FiveG-S-TMSI CRITICALITY reject TYPE FiveG-S-TMSI PRESENCE mandatory }, + ... + +} + +-- ************************************************************** + +-- UE Information Transfer +-- +-- ************************************************************** + +UEInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEInformationTransferIEs} }, + ... +} + +UEInformationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-FiveG-S-TMSI CRITICALITY reject TYPE FiveG-S-TMSI PRESENCE mandatory }| + { ID id-NB-IoT-UEPriority CRITICALITY ignore TYPE NB-IoT-UEPriority PRESENCE optional }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-S-NSSAI CRITICALITY ignore TYPE S-NSSAI PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY ignore TYPE AllowedNSSAI PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RAN CP Relocation Indication +-- +-- ************************************************************** + +RANCPRelocationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { RANCPRelocationIndicationIEs} }, + ... +} + +RANCPRelocationIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-FiveG-S-TMSI CRITICALITY reject TYPE FiveG-S-TMSI PRESENCE mandatory }| + { ID id-EUTRA-CGI CRITICALITY ignore TYPE EUTRA-CGI PRESENCE mandatory }| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory }| + { ID id-UL-CP-SecurityInformation CRITICALITY reject TYPE UL-CP-SecurityInformation PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE MOBILITY MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Preparation Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER REQUIRED +-- +-- ************************************************************** + +HandoverRequired ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequiredIEs} }, + ... +} + +HandoverRequiredIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TargetID CRITICALITY reject TYPE TargetID PRESENCE mandatory }| + { ID id-DirectForwardingPathAvailability CRITICALITY ignore TYPE DirectForwardingPathAvailability PRESENCE optional }| + { ID id-PDUSessionResourceListHORqd CRITICALITY reject TYPE PDUSessionResourceListHORqd PRESENCE mandatory }| + { ID id-SourceToTarget-TransparentContainer CRITICALITY reject TYPE SourceToTarget-TransparentContainer PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER COMMAND +-- +-- ************************************************************** + +HandoverCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverCommandIEs} }, + ... +} + +HandoverCommandIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory }| + { ID id-NASSecurityParametersFromNGRAN CRITICALITY reject TYPE NASSecurityParametersFromNGRAN PRESENCE conditional }| + -- This IE shall be present if HandoverType IE is set to value "5GStoEPPS" or 5GStoUTRAN -- + { ID id-PDUSessionResourceHandoverList CRITICALITY ignore TYPE PDUSessionResourceHandoverList PRESENCE optional }| + { ID id-PDUSessionResourceToReleaseListHOCmd CRITICALITY ignore TYPE PDUSessionResourceToReleaseListHOCmd PRESENCE optional }| + { ID id-TargetToSource-TransparentContainer CRITICALITY reject TYPE TargetToSource-TransparentContainer PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- HANDOVER PREPARATION FAILURE +-- +-- ************************************************************** + +HandoverPreparationFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverPreparationFailureIEs} }, + ... +} + +HandoverPreparationFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-TargettoSource-Failure-TransparentContainer CRITICALITY ignore TYPE TargettoSource-Failure-TransparentContainer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Handover Resource Allocation Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER REQUEST +-- +-- ************************************************************** + +HandoverRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequestIEs} }, + ... +} + +HandoverRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-UEAggregateMaximumBitRate CRITICALITY reject TYPE UEAggregateMaximumBitRate PRESENCE mandatory }| + { ID id-CoreNetworkAssistanceInformationForInactive CRITICALITY ignore TYPE CoreNetworkAssistanceInformationForInactive PRESENCE optional }| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE mandatory }| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE mandatory }| + { ID id-NewSecurityContextInd CRITICALITY reject TYPE NewSecurityContextInd PRESENCE optional }| + { ID id-NASC CRITICALITY reject TYPE NAS-PDU PRESENCE optional }| + { ID id-PDUSessionResourceSetupListHOReq CRITICALITY reject TYPE PDUSessionResourceSetupListHOReq PRESENCE mandatory }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE mandatory }| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE optional }| + { ID id-MaskedIMEISV CRITICALITY ignore TYPE MaskedIMEISV PRESENCE optional }| + { ID id-SourceToTarget-TransparentContainer CRITICALITY reject TYPE SourceToTarget-TransparentContainer PRESENCE mandatory }| + { ID id-MobilityRestrictionList CRITICALITY ignore TYPE MobilityRestrictionList PRESENCE optional }| + { ID id-LocationReportingRequestType CRITICALITY ignore TYPE LocationReportingRequestType PRESENCE optional }| + { ID id-RRCInactiveTransitionReportRequest CRITICALITY ignore TYPE RRCInactiveTransitionReportRequest PRESENCE optional }| + { ID id-GUAMI CRITICALITY reject TYPE GUAMI PRESENCE mandatory }| + { ID id-RedirectionVoiceFallback CRITICALITY ignore TYPE RedirectionVoiceFallback PRESENCE optional }| + { ID id-CNAssistedRANTuning CRITICALITY ignore TYPE CNAssistedRANTuning PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY reject TYPE IAB-Authorized PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-LTEV2XServicesAuthorized CRITICALITY ignore TYPE LTEV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-LTEUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE LTEUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UE-UP-CIoT-Support CRITICALITY ignore TYPE UE-UP-CIoT-Support PRESENCE optional }| + { ID id-ManagementBasedMDTPLMNList CRITICALITY ignore TYPE MDTPLMNList PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER REQUEST ACKNOWLEDGE +-- +-- ************************************************************** + +HandoverRequestAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequestAcknowledgeIEs} }, + ... +} + +HandoverRequestAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceAdmittedList CRITICALITY ignore TYPE PDUSessionResourceAdmittedList PRESENCE mandatory }| + { ID id-PDUSessionResourceFailedToSetupListHOAck CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListHOAck PRESENCE optional }| + { ID id-TargetToSource-TransparentContainer CRITICALITY reject TYPE TargetToSource-TransparentContainer PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- HANDOVER FAILURE +-- +-- ************************************************************** + +HandoverFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverFailureIEs} }, + ... +} + +HandoverFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-TargettoSource-Failure-TransparentContainer CRITICALITY ignore TYPE TargettoSource-Failure-TransparentContainer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Handover Notification Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER NOTIFY +-- +-- ************************************************************** + +HandoverNotify ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverNotifyIEs} }, + ... +} + +HandoverNotifyIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-NotifySourceNGRANNode CRITICALITY ignore TYPE NotifySourceNGRANNode PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Path Switch Request Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PATH SWITCH REQUEST +-- +-- ************************************************************** + +PathSwitchRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestIEs} }, + ... +} + +PathSwitchRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-SourceAMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-UESecurityCapabilities CRITICALITY ignore TYPE UESecurityCapabilities PRESENCE mandatory }| + { ID id-PDUSessionResourceToBeSwitchedDLList CRITICALITY reject TYPE PDUSessionResourceToBeSwitchedDLList PRESENCE mandatory }| + { ID id-PDUSessionResourceFailedToSetupListPSReq CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListPSReq PRESENCE optional }| + { ID id-RRC-Resume-Cause CRITICALITY ignore TYPE RRCEstablishmentCause PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PATH SWITCH REQUEST ACKNOWLEDGE +-- +-- ************************************************************** + +PathSwitchRequestAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestAcknowledgeIEs} }, + ... +} + +PathSwitchRequestAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE optional }| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE mandatory }| + { ID id-NewSecurityContextInd CRITICALITY reject TYPE NewSecurityContextInd PRESENCE optional }| + { ID id-PDUSessionResourceSwitchedList CRITICALITY ignore TYPE PDUSessionResourceSwitchedList PRESENCE mandatory }| + { ID id-PDUSessionResourceReleasedListPSAck CRITICALITY ignore TYPE PDUSessionResourceReleasedListPSAck PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE mandatory }| + { ID id-CoreNetworkAssistanceInformationForInactive CRITICALITY ignore TYPE CoreNetworkAssistanceInformationForInactive PRESENCE optional }| + { ID id-RRCInactiveTransitionReportRequest CRITICALITY ignore TYPE RRCInactiveTransitionReportRequest PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-RedirectionVoiceFallback CRITICALITY ignore TYPE RedirectionVoiceFallback PRESENCE optional }| + { ID id-CNAssistedRANTuning CRITICALITY ignore TYPE CNAssistedRANTuning PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-LTEV2XServicesAuthorized CRITICALITY ignore TYPE LTEV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-LTEUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE LTEUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UE-UP-CIoT-Support CRITICALITY ignore TYPE UE-UP-CIoT-Support PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PATH SWITCH REQUEST FAILURE +-- +-- ************************************************************** + +PathSwitchRequestFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestFailureIEs} }, + ... +} + +PathSwitchRequestFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceReleasedListPSFail CRITICALITY ignore TYPE PDUSessionResourceReleasedListPSFail PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Handover Cancellation Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER CANCEL +-- +-- ************************************************************** + +HandoverCancel ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCancelIEs} }, + ... +} + +HandoverCancelIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER CANCEL ACKNOWLEDGE +-- +-- ************************************************************** + +HandoverCancelAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCancelAcknowledgeIEs} }, + ... +} + +HandoverCancelAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER SUCCESS ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER SUCCESS +-- +-- ************************************************************** + +HandoverSuccess ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverSuccessIEs} }, + ... +} + +HandoverSuccessIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK RAN EARLY STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Uplink RAN Early Status Transfer +-- +-- ************************************************************** + +UplinkRANEarlyStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkRANEarlyStatusTransferIEs} }, + ... +} + +UplinkRANEarlyStatusTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory}| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory}| + { ID id-EarlyStatusTransfer-TransparentContainer CRITICALITY reject TYPE EarlyStatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK RAN EARLY STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Downlink RAN Early Status Transfer +-- +-- ************************************************************** + +DownlinkRANEarlyStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkRANEarlyStatusTransferIEs} }, + ... +} + +DownlinkRANEarlyStatusTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory}| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory}| + { ID id-EarlyStatusTransfer-TransparentContainer CRITICALITY reject TYPE EarlyStatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- Uplink RAN Status Transfer Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UPLINK RAN STATUS TRANSFER +-- +-- ************************************************************** + +UplinkRANStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkRANStatusTransferIEs} }, + ... +} + +UplinkRANStatusTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANStatusTransfer-TransparentContainer CRITICALITY reject TYPE RANStatusTransfer-TransparentContainer PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Downlink RAN Status Transfer Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- DOWNLINK RAN STATUS TRANSFER +-- +-- ************************************************************** + +DownlinkRANStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkRANStatusTransferIEs} }, + ... +} + +DownlinkRANStatusTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANStatusTransfer-TransparentContainer CRITICALITY reject TYPE RANStatusTransfer-TransparentContainer PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- PAGING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PAGING +-- +-- ************************************************************** + +Paging ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PagingIEs} }, + ... +} + +PagingIEs NGAP-PROTOCOL-IES ::= { + { ID id-UEPagingIdentity CRITICALITY ignore TYPE UEPagingIdentity PRESENCE mandatory }| + { ID id-PagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE optional }| + { ID id-TAIListForPaging CRITICALITY ignore TYPE TAIListForPaging PRESENCE mandatory }| + { ID id-PagingPriority CRITICALITY ignore TYPE PagingPriority PRESENCE optional }| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional }| + { ID id-PagingOrigin CRITICALITY ignore TYPE PagingOrigin PRESENCE optional }| + { ID id-AssistanceDataForPaging CRITICALITY ignore TYPE AssistanceDataForPaging PRESENCE optional }| + { ID id-NB-IoT-Paging-eDRXInfo CRITICALITY ignore TYPE NB-IoT-Paging-eDRXInfo PRESENCE optional }| + { ID id-NB-IoT-PagingDRX CRITICALITY ignore TYPE NB-IoT-PagingDRX PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-WUS-Assistance-Information CRITICALITY ignore TYPE WUS-Assistance-Information PRESENCE optional }| + { ID id-PagingeDRXInformation CRITICALITY ignore TYPE PagingeDRXInformation PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NAS TRANSPORT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- INITIAL UE MESSAGE +-- +-- ************************************************************** + +InitialUEMessage ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialUEMessage-IEs} }, + ... +} + +InitialUEMessage-IEs NGAP-PROTOCOL-IES ::= { + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY reject TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-RRCEstablishmentCause CRITICALITY ignore TYPE RRCEstablishmentCause PRESENCE mandatory }| + { ID id-FiveG-S-TMSI CRITICALITY reject TYPE FiveG-S-TMSI PRESENCE optional }| + { ID id-AMFSetID CRITICALITY ignore TYPE AMFSetID PRESENCE optional }| + { ID id-UEContextRequest CRITICALITY ignore TYPE UEContextRequest PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE optional }| + { ID id-SourceToTarget-AMFInformationReroute CRITICALITY ignore TYPE SourceToTarget-AMFInformationReroute PRESENCE optional }| + { ID id-SelectedPLMNIdentity CRITICALITY ignore TYPE PLMNIdentity PRESENCE optional }| + { ID id-IABNodeIndication CRITICALITY reject TYPE IABNodeIndication PRESENCE optional }| + { ID id-CEmodeBSupport-Indicator CRITICALITY reject TYPE CEmodeBSupport-Indicator PRESENCE optional }| + { ID id-LTEM-Indication CRITICALITY ignore TYPE LTEM-Indication PRESENCE optional }| + { ID id-EDT-Session CRITICALITY ignore TYPE EDT-Session PRESENCE optional }| + { ID id-AuthenticatedIndication CRITICALITY ignore TYPE AuthenticatedIndication PRESENCE optional }| + { ID id-NPN-AccessInformation CRITICALITY reject TYPE NPN-AccessInformation PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK NAS TRANSPORT +-- +-- ************************************************************** + +DownlinkNASTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkNASTransport-IEs} }, + ... +} + +DownlinkNASTransport-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-OldAMF CRITICALITY reject TYPE AMFName PRESENCE optional }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory }| + { ID id-MobilityRestrictionList CRITICALITY ignore TYPE MobilityRestrictionList PRESENCE optional }| + { ID id-IndexToRFSP CRITICALITY ignore TYPE IndexToRFSP PRESENCE optional }| + { ID id-UEAggregateMaximumBitRate CRITICALITY ignore TYPE UEAggregateMaximumBitRate PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-UECapabilityInfoRequest CRITICALITY ignore TYPE UECapabilityInfoRequest PRESENCE optional }| + { ID id-EndIndication CRITICALITY ignore TYPE EndIndication PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UPLINK NAS TRANSPORT +-- +-- ************************************************************** + +UplinkNASTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkNASTransport-IEs} }, + ... +} + +UplinkNASTransport-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-W-AGFIdentityInformation CRITICALITY reject TYPE OCTET STRING PRESENCE optional }| + { ID id-TNGFIdentityInformation CRITICALITY reject TYPE OCTET STRING PRESENCE optional }| + { ID id-TWIFIdentityInformation CRITICALITY reject TYPE OCTET STRING PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NAS NON DELIVERY INDICATION +-- +-- ************************************************************** + +NASNonDeliveryIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NASNonDeliveryIndication-IEs} }, + ... +} + +NASNonDeliveryIndication-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- REROUTE NAS REQUEST +-- +-- ************************************************************** + +RerouteNASRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RerouteNASRequest-IEs} }, + ... +} + +RerouteNASRequest-IEs NGAP-PROTOCOL-IES ::= { + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE optional }| + { ID id-NGAP-Message CRITICALITY reject TYPE OCTET STRING PRESENCE mandatory }| + { ID id-AMFSetID CRITICALITY reject TYPE AMFSetID PRESENCE mandatory }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE optional }| + { ID id-SourceToTarget-AMFInformationReroute CRITICALITY ignore TYPE SourceToTarget-AMFInformationReroute PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- INTERFACE MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- NG Setup Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- NG SETUP REQUEST +-- +-- ************************************************************** + +NGSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGSetupRequestIEs} }, + ... +} + +NGSetupRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-GlobalRANNodeID CRITICALITY reject TYPE GlobalRANNodeID PRESENCE mandatory }| + { ID id-RANNodeName CRITICALITY ignore TYPE RANNodeName PRESENCE optional }| + { ID id-SupportedTAList CRITICALITY reject TYPE SupportedTAList PRESENCE mandatory }| + { ID id-DefaultPagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE mandatory }| + { ID id-UERetentionInformation CRITICALITY ignore TYPE UERetentionInformation PRESENCE optional }| + { ID id-NB-IoT-DefaultPagingDRX CRITICALITY ignore TYPE NB-IoT-DefaultPagingDRX PRESENCE optional }| + { ID id-Extended-RANNodeName CRITICALITY ignore TYPE Extended-RANNodeName PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NG SETUP RESPONSE +-- +-- ************************************************************** + +NGSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGSetupResponseIEs} }, + ... +} + +NGSetupResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMFName CRITICALITY reject TYPE AMFName PRESENCE mandatory }| + { ID id-ServedGUAMIList CRITICALITY reject TYPE ServedGUAMIList PRESENCE mandatory }| + { ID id-RelativeAMFCapacity CRITICALITY ignore TYPE RelativeAMFCapacity PRESENCE mandatory }| + { ID id-PLMNSupportList CRITICALITY reject TYPE PLMNSupportList PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-UERetentionInformation CRITICALITY ignore TYPE UERetentionInformation PRESENCE optional }| + { ID id-IAB-Supported CRITICALITY ignore TYPE IAB-Supported PRESENCE optional }| + { ID id-Extended-AMFName CRITICALITY ignore TYPE Extended-AMFName PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NG SETUP FAILURE +-- +-- ************************************************************** + +NGSetupFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGSetupFailureIEs} }, + ... +} + +NGSetupFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RAN Configuration Update Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- RAN CONFIGURATION UPDATE +-- +-- ************************************************************** + +RANConfigurationUpdate ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RANConfigurationUpdateIEs} }, + ... +} + +RANConfigurationUpdateIEs NGAP-PROTOCOL-IES ::= { + { ID id-RANNodeName CRITICALITY ignore TYPE RANNodeName PRESENCE optional }| + { ID id-SupportedTAList CRITICALITY reject TYPE SupportedTAList PRESENCE optional }| + { ID id-DefaultPagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore TYPE GlobalRANNodeID PRESENCE optional }| + { ID id-NGRAN-TNLAssociationToRemoveList CRITICALITY reject TYPE NGRAN-TNLAssociationToRemoveList PRESENCE optional }| + { ID id-NB-IoT-DefaultPagingDRX CRITICALITY ignore TYPE NB-IoT-DefaultPagingDRX PRESENCE optional }| + { ID id-Extended-RANNodeName CRITICALITY ignore TYPE Extended-RANNodeName PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RAN CONFIGURATION UPDATE ACKNOWLEDGE +-- +-- ************************************************************** + +RANConfigurationUpdateAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RANConfigurationUpdateAcknowledgeIEs} }, + ... +} + +RANConfigurationUpdateAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RAN CONFIGURATION UPDATE FAILURE +-- +-- ************************************************************** + +RANConfigurationUpdateFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RANConfigurationUpdateFailureIEs} }, + ... +} + +RANConfigurationUpdateFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, +... +} + +-- ************************************************************** +-- +-- AMF Configuration Update Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- AMF CONFIGURATION UPDATE +-- +-- ************************************************************** + +AMFConfigurationUpdate ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {AMFConfigurationUpdateIEs} }, + ... +} + +AMFConfigurationUpdateIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMFName CRITICALITY reject TYPE AMFName PRESENCE optional }| + { ID id-ServedGUAMIList CRITICALITY reject TYPE ServedGUAMIList PRESENCE optional }| + { ID id-RelativeAMFCapacity CRITICALITY ignore TYPE RelativeAMFCapacity PRESENCE optional }| + { ID id-PLMNSupportList CRITICALITY reject TYPE PLMNSupportList PRESENCE optional }| + { ID id-AMF-TNLAssociationToAddList CRITICALITY ignore TYPE AMF-TNLAssociationToAddList PRESENCE optional }| + { ID id-AMF-TNLAssociationToRemoveList CRITICALITY ignore TYPE AMF-TNLAssociationToRemoveList PRESENCE optional }| + { ID id-AMF-TNLAssociationToUpdateList CRITICALITY ignore TYPE AMF-TNLAssociationToUpdateList PRESENCE optional }| + { ID id-Extended-AMFName CRITICALITY ignore TYPE Extended-AMFName PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- AMF CONFIGURATION UPDATE ACKNOWLEDGE +-- +-- ************************************************************** + +AMFConfigurationUpdateAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {AMFConfigurationUpdateAcknowledgeIEs} }, + ... +} + +AMFConfigurationUpdateAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-TNLAssociationSetupList CRITICALITY ignore TYPE AMF-TNLAssociationSetupList PRESENCE optional }| + { ID id-AMF-TNLAssociationFailedToSetupList CRITICALITY ignore TYPE TNLAssociationList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- AMF CONFIGURATION UPDATE FAILURE +-- +-- ************************************************************** + +AMFConfigurationUpdateFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {AMFConfigurationUpdateFailureIEs} }, + ... +} + +AMFConfigurationUpdateFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- AMF Status Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- AMF STATUS INDICATION +-- +-- ************************************************************** + +AMFStatusIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {AMFStatusIndicationIEs} }, + ... +} + +AMFStatusIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-UnavailableGUAMIList CRITICALITY reject TYPE UnavailableGUAMIList PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- NG Reset Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- NG RESET +-- +-- ************************************************************** + +NGReset ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGResetIEs} }, + ... +} + +NGResetIEs NGAP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-ResetType CRITICALITY reject TYPE ResetType PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- NG RESET ACKNOWLEDGE +-- +-- ************************************************************** + +NGResetAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGResetAcknowledgeIEs} }, + ... +} + +NGResetAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-UE-associatedLogicalNG-connectionList CRITICALITY ignore TYPE UE-associatedLogicalNG-connectionList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Error Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- ERROR INDICATION +-- +-- ************************************************************** + +ErrorIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ErrorIndicationIEs} }, + ... +} + +ErrorIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE optional }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE optional }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-FiveG-S-TMSI CRITICALITY ignore TYPE FiveG-S-TMSI PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- OVERLOAD START +-- +-- ************************************************************** + +OverloadStart ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {OverloadStartIEs} }, + ... +} + +OverloadStartIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMFOverloadResponse CRITICALITY reject TYPE OverloadResponse PRESENCE optional }| + { ID id-AMFTrafficLoadReductionIndication CRITICALITY ignore TYPE TrafficLoadReductionIndication PRESENCE optional }| + { ID id-OverloadStartNSSAIList CRITICALITY ignore TYPE OverloadStartNSSAIList PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- OVERLOAD STOP +-- +-- ************************************************************** + +OverloadStop ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {OverloadStopIEs} }, + ... +} + +OverloadStopIEs NGAP-PROTOCOL-IES ::= { + ... +} + +-- ************************************************************** +-- +-- CONFIGURATION TRANSFER ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UPLINK RAN CONFIGURATION TRANSFER +-- +-- ************************************************************** + +UplinkRANConfigurationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkRANConfigurationTransferIEs} }, + ... +} + +UplinkRANConfigurationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-SONConfigurationTransferUL CRITICALITY ignore TYPE SONConfigurationTransfer PRESENCE optional }| + { ID id-ENDC-SONConfigurationTransferUL CRITICALITY ignore TYPE EN-DCSONConfigurationTransfer PRESENCE optional }| + { ID id-IntersystemSONConfigurationTransferUL CRITICALITY ignore TYPE IntersystemSONConfigurationTransfer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK RAN CONFIGURATION TRANSFER +-- +-- ************************************************************** + +DownlinkRANConfigurationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkRANConfigurationTransferIEs} }, + ... +} + +DownlinkRANConfigurationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-SONConfigurationTransferDL CRITICALITY ignore TYPE SONConfigurationTransfer PRESENCE optional }| + { ID id-ENDC-SONConfigurationTransferDL CRITICALITY ignore TYPE EN-DCSONConfigurationTransfer PRESENCE optional }| + { ID id-IntersystemSONConfigurationTransferDL CRITICALITY ignore TYPE IntersystemSONConfigurationTransfer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- WARNING MESSAGE TRANSMISSION ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Write-Replace Warning Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- WRITE-REPLACE WARNING REQUEST +-- +-- ************************************************************** + +WriteReplaceWarningRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {WriteReplaceWarningRequestIEs} }, + ... +} + +WriteReplaceWarningRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-WarningAreaList CRITICALITY ignore TYPE WarningAreaList PRESENCE optional }| + { ID id-RepetitionPeriod CRITICALITY reject TYPE RepetitionPeriod PRESENCE mandatory }| + { ID id-NumberOfBroadcastsRequested CRITICALITY reject TYPE NumberOfBroadcastsRequested PRESENCE mandatory }| + { ID id-WarningType CRITICALITY ignore TYPE WarningType PRESENCE optional }| + { ID id-WarningSecurityInfo CRITICALITY ignore TYPE WarningSecurityInfo PRESENCE optional }| + { ID id-DataCodingScheme CRITICALITY ignore TYPE DataCodingScheme PRESENCE optional }| + { ID id-WarningMessageContents CRITICALITY ignore TYPE WarningMessageContents PRESENCE optional }| + { ID id-ConcurrentWarningMessageInd CRITICALITY reject TYPE ConcurrentWarningMessageInd PRESENCE optional }| + { ID id-WarningAreaCoordinates CRITICALITY ignore TYPE WarningAreaCoordinates PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- WRITE-REPLACE WARNING RESPONSE +-- +-- ************************************************************** + +WriteReplaceWarningResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {WriteReplaceWarningResponseIEs} }, + ... +} + +WriteReplaceWarningResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-BroadcastCompletedAreaList CRITICALITY ignore TYPE BroadcastCompletedAreaList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS Cancel Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PWS CANCEL REQUEST +-- +-- ************************************************************** + +PWSCancelRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PWSCancelRequestIEs} }, + ... +} + +PWSCancelRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-WarningAreaList CRITICALITY ignore TYPE WarningAreaList PRESENCE optional }| + { ID id-CancelAllWarningMessages CRITICALITY reject TYPE CancelAllWarningMessages PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS CANCEL RESPONSE +-- +-- ************************************************************** + +PWSCancelResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PWSCancelResponseIEs} }, + ... +} + +PWSCancelResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-BroadcastCancelledAreaList CRITICALITY ignore TYPE BroadcastCancelledAreaList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS Restart Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PWS RESTART INDICATION +-- +-- ************************************************************** + +PWSRestartIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PWSRestartIndicationIEs} }, + ... +} + +PWSRestartIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-CellIDListForRestart CRITICALITY reject TYPE CellIDListForRestart PRESENCE mandatory }| + { ID id-GlobalRANNodeID CRITICALITY reject TYPE GlobalRANNodeID PRESENCE mandatory }| + { ID id-TAIListForRestart CRITICALITY reject TYPE TAIListForRestart PRESENCE mandatory }| + { ID id-EmergencyAreaIDListForRestart CRITICALITY reject TYPE EmergencyAreaIDListForRestart PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS Failure Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PWS FAILURE INDICATION +-- +-- ************************************************************** + +PWSFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PWSFailureIndicationIEs} }, + ... +} + +PWSFailureIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-PWSFailedCellIDList CRITICALITY reject TYPE PWSFailedCellIDList PRESENCE mandatory }| + { ID id-GlobalRANNodeID CRITICALITY reject TYPE GlobalRANNodeID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- NRPPA TRANSPORT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- DOWNLINK UE ASSOCIATED NRPPA TRANSPORT +-- +-- ************************************************************** + +DownlinkUEAssociatedNRPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkUEAssociatedNRPPaTransportIEs} }, + ... +} + +DownlinkUEAssociatedNRPPaTransportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RoutingID CRITICALITY reject TYPE RoutingID PRESENCE mandatory }| + { ID id-NRPPa-PDU CRITICALITY reject TYPE NRPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK UE ASSOCIATED NRPPA TRANSPORT +-- +-- ************************************************************** + +UplinkUEAssociatedNRPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkUEAssociatedNRPPaTransportIEs} }, + ... +} + +UplinkUEAssociatedNRPPaTransportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RoutingID CRITICALITY reject TYPE RoutingID PRESENCE mandatory }| + { ID id-NRPPa-PDU CRITICALITY reject TYPE NRPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK NON UE ASSOCIATED NRPPA TRANSPORT +-- +-- ************************************************************** + +DownlinkNonUEAssociatedNRPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkNonUEAssociatedNRPPaTransportIEs} }, + ... +} + +DownlinkNonUEAssociatedNRPPaTransportIEs NGAP-PROTOCOL-IES ::= { + { ID id-RoutingID CRITICALITY reject TYPE RoutingID PRESENCE mandatory }| + { ID id-NRPPa-PDU CRITICALITY reject TYPE NRPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK NON UE ASSOCIATED NRPPA TRANSPORT +-- +-- ************************************************************** + +UplinkNonUEAssociatedNRPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkNonUEAssociatedNRPPaTransportIEs} }, + ... +} + +UplinkNonUEAssociatedNRPPaTransportIEs NGAP-PROTOCOL-IES ::= { + { ID id-RoutingID CRITICALITY reject TYPE RoutingID PRESENCE mandatory }| + { ID id-NRPPa-PDU CRITICALITY reject TYPE NRPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- TRACE ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- TRACE START +-- +-- ************************************************************** + +TraceStart ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {TraceStartIEs} }, + ... +} + +TraceStartIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- TRACE FAILURE INDICATION +-- +-- ************************************************************** + +TraceFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {TraceFailureIndicationIEs} }, + ... +} + +TraceFailureIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NGRANTraceID CRITICALITY ignore TYPE NGRANTraceID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- DEACTIVATE TRACE +-- +-- ************************************************************** + +DeactivateTrace ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DeactivateTraceIEs} }, + ... +} + +DeactivateTraceIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NGRANTraceID CRITICALITY ignore TYPE NGRANTraceID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- CELL TRAFFIC TRACE +-- +-- ************************************************************** + +CellTrafficTrace ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {CellTrafficTraceIEs} }, + ... +} + +CellTrafficTraceIEs NGAP-PROTOCOL-IES ::= { + {ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + {ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + {ID id-NGRANTraceID CRITICALITY ignore TYPE NGRANTraceID PRESENCE mandatory }| + {ID id-NGRAN-CGI CRITICALITY ignore TYPE NGRAN-CGI PRESENCE mandatory }| + {ID id-TraceCollectionEntityIPAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE mandatory }| + {ID id-PrivacyIndicator CRITICALITY ignore TYPE PrivacyIndicator PRESENCE optional }| + {ID id-TraceCollectionEntityURI CRITICALITY ignore TYPE URI-address PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- LOCATION REPORTING ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- LOCATION REPORTING CONTROL +-- +-- ************************************************************** + +LocationReportingControl ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {LocationReportingControlIEs} }, + ... +} + +LocationReportingControlIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-LocationReportingRequestType CRITICALITY ignore TYPE LocationReportingRequestType PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- LOCATION REPORTING FAILURE INDICATION +-- +-- ************************************************************** + +LocationReportingFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {LocationReportingFailureIndicationIEs} }, + ... +} + +LocationReportingFailureIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- LOCATION REPORT +-- +-- ************************************************************** + +LocationReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {LocationReportIEs} }, + ... +} + +LocationReportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-UEPresenceInAreaOfInterestList CRITICALITY ignore TYPE UEPresenceInAreaOfInterestList PRESENCE optional }| + { ID id-LocationReportingRequestType CRITICALITY ignore TYPE LocationReportingRequestType PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE TNLA BINDING ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE TNLA BINDING RELEASE REQUEST +-- +-- ************************************************************** + +UETNLABindingReleaseRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UETNLABindingReleaseRequestIEs} }, + ... +} + +UETNLABindingReleaseRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY INFO INDICATION +-- +-- ************************************************************** + +UERadioCapabilityInfoIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityInfoIndicationIEs} }, + ... +} + +UERadioCapabilityInfoIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE mandatory }| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional }| + { ID id-UERadioCapability-EUTRA-Format CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Radio Capability Check Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY CHECK REQUEST +-- +-- ************************************************************** + +UERadioCapabilityCheckRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityCheckRequestIEs} }, + ... +} + +UERadioCapabilityCheckRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY CHECK RESPONSE +-- +-- ************************************************************** + +UERadioCapabilityCheckResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityCheckResponseIEs} }, + ... +} + +UERadioCapabilityCheckResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-IMSVoiceSupportIndicator CRITICALITY reject TYPE IMSVoiceSupportIndicator PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PRIVATE MESSAGE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PRIVATE MESSAGE +-- +-- ************************************************************** + +PrivateMessage ::= SEQUENCE { + privateIEs PrivateIE-Container { { PrivateMessageIEs } }, + ... +} + +PrivateMessageIEs NGAP-PRIVATE-IES ::= { + ... +} + + +-- ************************************************************** +-- +-- DATA USAGE REPORTING ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- SECONDARY RAT DATA USAGE REPORT +-- +-- ************************************************************** + +SecondaryRATDataUsageReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {SecondaryRATDataUsageReportIEs} }, + ... +} + +SecondaryRATDataUsageReportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceSecondaryRATUsageList CRITICALITY ignore TYPE PDUSessionResourceSecondaryRATUsageList PRESENCE mandatory }| + { ID id-HandoverFlag CRITICALITY ignore TYPE HandoverFlag PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RIM INFORMATION TRANSFER ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UPLINK RIM INFORMATION TRANSFER +-- +-- ************************************************************** + +UplinkRIMInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkRIMInformationTransferIEs} }, + ... +} + +UplinkRIMInformationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-RIMInformationTransfer CRITICALITY ignore TYPE RIMInformationTransfer PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- DOWNLINK RIM INFORMATION TRANSFER +-- +-- ************************************************************** + +DownlinkRIMInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkRIMInformationTransferIEs} }, + ... +} + +DownlinkRIMInformationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-RIMInformationTransfer CRITICALITY ignore TYPE RIMInformationTransfer PRESENCE optional }, + + ... +} + +-- ************************************************************** +-- +-- Connection Establishment Indication +-- +-- ************************************************************** + +ConnectionEstablishmentIndication::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ConnectionEstablishmentIndicationIEs} }, + ... +} + +ConnectionEstablishmentIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-EndIndication CRITICALITY ignore TYPE EndIndication PRESENCE optional }| + { ID id-S-NSSAI CRITICALITY ignore TYPE S-NSSAI PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY ignore TYPE AllowedNSSAI PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| + { ID id-DL-CP-SecurityInformation CRITICALITY ignore TYPE DL-CP-SecurityInformation PRESENCE optional }| + { ID id-NB-IoT-UEPriority CRITICALITY ignore TYPE NB-IoT-UEPriority PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY ID MAPPING ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY ID MAPPING REQUEST +-- +-- ************************************************************** + +UERadioCapabilityIDMappingRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityIDMappingRequestIEs} }, + ... +} + +UERadioCapabilityIDMappingRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY ID MAPPING RESPONSE +-- +-- ************************************************************** + +UERadioCapabilityIDMappingResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityIDMappingResponseIEs} }, + ... +} + +UERadioCapabilityIDMappingResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- AMF CP Relocation Indication +-- +-- ************************************************************** + +AMFCPRelocationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { AMFCPRelocationIndicationIEs} }, + ... +} + +AMFCPRelocationIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-S-NSSAI CRITICALITY ignore TYPE S-NSSAI PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY ignore TYPE AllowedNSSAI PRESENCE optional }, + ... +} + +END +-- ASN1STOP + +-- ASN1START +-- ************************************************************** +-- +-- Information Element Definitions +-- +-- ************************************************************** + +NGAP-IEs { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-IEs (2) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +IMPORTS + + id-AdditionalDLForwardingUPTNLInformation, + id-AdditionalULForwardingUPTNLInformation, + id-AdditionalDLQosFlowPerTNLInformation, + id-AdditionalDLUPTNLInformationForHOList, + id-AdditionalNGU-UP-TNLInformation, + id-AdditionalRedundantDL-NGU-UP-TNLInformation, + id-AdditionalRedundantDLQosFlowPerTNLInformation, + id-AdditionalRedundantNGU-UP-TNLInformation, + id-AdditionalRedundantUL-NGU-UP-TNLInformation, + id-AdditionalUL-NGU-UP-TNLInformation, + id-AlternativeQoSParaSetList, + id-BurstArrivalTimeDownlink, + id-Cause, + id-CNPacketDelayBudgetDL, + id-CNPacketDelayBudgetUL, + id-CNTypeRestrictionsForEquivalent, + id-CNTypeRestrictionsForServing, + id-CommonNetworkInstance, + id-ConfiguredTACIndication, + id-CurrentQoSParaSetIndex, + id-DAPSRequestInfo, + id-DAPSResponseInfoList, + id-DataForwardingNotPossible, + id-DataForwardingResponseERABList, + id-DirectForwardingPathAvailability, + id-DL-NGU-UP-TNLInformation, + id-EndpointIPAddressAndPort, + id-ExtendedPacketDelayBudget, + id-ExtendedRATRestrictionInformation, + id-ExtendedSliceSupportList, + id-ExtendedTAISliceSupportList, + id-ExtendedUEIdentityIndexValue, + id-GlobalCable-ID, + id-GlobalRANNodeID, + id-GlobalTNGF-ID, + id-GlobalTWIF-ID, + id-GlobalW-AGF-ID, + id-GUAMIType, + id-LastEUTRAN-PLMNIdentity, + id-LocationReportingAdditionalInfo, + id-MaximumIntegrityProtectedDataRate-DL, + id-MDTConfiguration, + id-MicoAllPLMN, + id-NetworkInstance, + id-NID, + id-NPN-MobilityInformation, + id-NPN-PagingAssistanceInformation, + id-NPN-Support, + id-OldAssociatedQosFlowList-ULendmarkerexpected, + id-PagingAssisDataforCEcapabUE, + id-PagingeDRXInformation, + id-PDUSessionAggregateMaximumBitRate, + id-PduSessionExpectedUEActivityBehaviour, + id-PDUSessionResourceFailedToSetupListCxtFail, + id-PDUSessionResourceReleaseResponseTransfer, + id-PDUSessionType, + id-PSCellInformation, + id-QosFlowAddOrModifyRequestList, + id-QosFlowFailedToSetupList, + id-QosFlowFeedbackList, + id-QosFlowParametersList, + id-QosFlowSetupRequestList, + id-QosFlowToReleaseList, + id-QosMonitoringRequest, + id-QosMonitoringReportingFrequency, + id-RAT-Information, + id-RedundantCommonNetworkInstance, + id-RedundantDL-NGU-TNLInformationReused, + id-RedundantDL-NGU-UP-TNLInformation, + id-RedundantDLQosFlowPerTNLInformation, + id-RedundantPDUSessionInformation, + id-RedundantQosFlowIndicator, + id-RedundantUL-NGU-UP-TNLInformation, + id-SCTP-TLAs, + id-SecondaryRATUsageInformation, + id-SecurityIndication, + id-SecurityResult, + id-SgNB-UE-X2AP-ID, + id-S-NSSAI, + id-SONInformationReport, + id-TNLAssociationTransportLayerAddressNGRAN, + id-TargetRNC-ID, + id-TraceCollectionEntityURI, + id-TSCTrafficCharacteristics, + id-UEHistoryInformationFromTheUE, + id-UERadioCapabilityForPaging, + id-UERadioCapabilityForPagingOfNB-IoT, + id-UL-NGU-UP-TNLInformation, + id-UL-NGU-UP-TNLModifyList, + id-ULForwarding, + id-ULForwardingUP-TNLInformation, + id-UsedRSNInformation, + id-UserLocationInformationTNGF, + id-UserLocationInformationTWIF, + id-UserLocationInformationW-AGF, + maxnoofAllowedAreas, + maxnoofAllowedCAGsperPLMN, + maxnoofAllowedS-NSSAIs, + maxnoofBluetoothName, + maxnoofBPLMNs, + maxnoofCAGSperCell, + maxnoofCandidateCells, + maxnoofCellIDforMDT, + maxnoofCellIDforWarning, + maxnoofCellinAoI, + maxnoofCellinEAI, + maxnoofCellsingNB, + maxnoofCellsinngeNB, + maxnoofCellinTAI, + maxnoofCellsinUEHistoryInfo, + maxnoofCellsUEMovingTrajectory, + maxnoofDRBs, + maxnoofEmergencyAreaID, + maxnoofEAIforRestart, + maxnoofEPLMNs, + maxnoofEPLMNsPlusOne, + maxnoofE-RABs, + maxnoofErrors, + maxnoofExtSliceItems, + maxnoofForbTACs, + maxnoofFreqforMDT, + maxnoofMDTPLMNs, + maxnoofMultiConnectivity, + maxnoofMultiConnectivityMinusOne, + maxnoofNeighPCIforMDT, + maxnoofNGConnectionsToReset, + maxNRARFCN, + maxnoofNRCellBands, + maxnoofPC5QoSFlows, + maxnoofPDUSessions, + maxnoofPLMNs, + maxnoofQosFlows, + maxnoofQosParaSets, + maxnoofRANNodeinAoI, + maxnoofRecommendedCells, + maxnoofRecommendedRANNodes, + maxnoofAoI, + maxnoofSensorName, + maxnoofServedGUAMIs, + maxnoofSliceItems, + maxnoofTACs, + maxnoofTAforMDT, + maxnoofTAIforInactive, + maxnoofTAIforPaging, + maxnoofTAIforRestart, + maxnoofTAIforWarning, + maxnoofTAIinAoI, + maxnoofTimePeriods, + maxnoofTNLAssociations, + maxnoofWLANName, + maxnoofXnExtTLAs, + maxnoofXnGTP-TLAs, + maxnoofXnTLAs + +FROM NGAP-Constants + + Criticality, + ProcedureCode, + ProtocolIE-ID, + TriggeringMessage +FROM NGAP-CommonDataTypes + + ProtocolExtensionContainer{}, + ProtocolIE-Container{}, + NGAP-PROTOCOL-EXTENSION, + ProtocolIE-SingleContainer{}, + NGAP-PROTOCOL-IES +FROM NGAP-Containers; + +-- A + +AdditionalDLUPTNLInformationForHOList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivityMinusOne)) OF AdditionalDLUPTNLInformationForHOItem + +AdditionalDLUPTNLInformationForHOItem ::= SEQUENCE { + additionalDL-NGU-UP-TNLInformation UPTransportLayerInformation, + additionalQosFlowSetupResponseList QosFlowListWithDataForwarding, + additionalDLForwardingUPTNLInformation UPTransportLayerInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { AdditionalDLUPTNLInformationForHOItem-ExtIEs} } OPTIONAL, + ... +} + +AdditionalDLUPTNLInformationForHOItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalRedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }, + ... +} + +AdditionalQosFlowInformation ::= ENUMERATED { + more-likely, + ... +} + +AllocationAndRetentionPriority ::= SEQUENCE { + priorityLevelARP PriorityLevelARP, + pre-emptionCapability Pre-emptionCapability, + pre-emptionVulnerability Pre-emptionVulnerability, + iE-Extensions ProtocolExtensionContainer { {AllocationAndRetentionPriority-ExtIEs} } OPTIONAL, + ... +} + +AllocationAndRetentionPriority-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Allowed-CAG-List-per-PLMN ::= SEQUENCE (SIZE(1..maxnoofAllowedCAGsperPLMN)) OF CAG-ID + +AllowedNSSAI ::= SEQUENCE (SIZE(1..maxnoofAllowedS-NSSAIs)) OF AllowedNSSAI-Item + +AllowedNSSAI-Item ::= SEQUENCE { + s-NSSAI S-NSSAI, + iE-Extensions ProtocolExtensionContainer { {AllowedNSSAI-Item-ExtIEs} } OPTIONAL, + ... +} + +AllowedNSSAI-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Allowed-PNI-NPN-List ::= SEQUENCE (SIZE(1..maxnoofEPLMNsPlusOne)) OF Allowed-PNI-NPN-Item + +Allowed-PNI-NPN-Item ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + pNI-NPN-restricted ENUMERATED {restricted, not-restricted, ...}, + allowed-CAG-List-per-PLMN Allowed-CAG-List-per-PLMN, + iE-Extensions ProtocolExtensionContainer { {Allowed-PNI-NPN-Item-ExtIEs} } OPTIONAL, + ... +} + +Allowed-PNI-NPN-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AllowedTACs ::= SEQUENCE (SIZE(1..maxnoofAllowedAreas)) OF TAC + +AlternativeQoSParaSetIndex ::= INTEGER (1..8, ...) + +AlternativeQoSParaSetNotifyIndex ::= INTEGER (0..8, ...) + +AlternativeQoSParaSetList ::= SEQUENCE (SIZE(1..maxnoofQosParaSets)) OF AlternativeQoSParaSetItem + +AlternativeQoSParaSetItem ::= SEQUENCE { + alternativeQoSParaSetIndex AlternativeQoSParaSetIndex, + guaranteedFlowBitRateDL BitRate OPTIONAL, + guaranteedFlowBitRateUL BitRate OPTIONAL, + packetDelayBudget PacketDelayBudget OPTIONAL, + packetErrorRate PacketErrorRate OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AlternativeQoSParaSetItem-ExtIEs} } OPTIONAL, + ... +} + +AlternativeQoSParaSetItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AMFName ::= PrintableString (SIZE(1..150, ...)) + +AMFNameVisibleString ::= VisibleString (SIZE(1..150, ...)) + +AMFNameUTF8String ::= UTF8String (SIZE(1..150, ...)) + +AMFPagingTarget ::= CHOICE { + globalRANNodeID GlobalRANNodeID, + tAI TAI, + choice-Extensions ProtocolIE-SingleContainer { {AMFPagingTarget-ExtIEs} } +} + +AMFPagingTarget-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +AMFPointer ::= BIT STRING (SIZE(6)) + +AMFRegionID ::= BIT STRING (SIZE(8)) + +AMFSetID ::= BIT STRING (SIZE(10)) + +AMF-TNLAssociationSetupList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF AMF-TNLAssociationSetupItem + +AMF-TNLAssociationSetupItem ::= SEQUENCE { + aMF-TNLAssociationAddress CPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {AMF-TNLAssociationSetupItem-ExtIEs} } OPTIONAL, + ... +} + +AMF-TNLAssociationSetupItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AMF-TNLAssociationToAddList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF AMF-TNLAssociationToAddItem + +AMF-TNLAssociationToAddItem ::= SEQUENCE { + aMF-TNLAssociationAddress CPTransportLayerInformation, + tNLAssociationUsage TNLAssociationUsage OPTIONAL, + tNLAddressWeightFactor TNLAddressWeightFactor, + iE-Extensions ProtocolExtensionContainer { {AMF-TNLAssociationToAddItem-ExtIEs} } OPTIONAL, + ... +} + +AMF-TNLAssociationToAddItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AMF-TNLAssociationToRemoveList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF AMF-TNLAssociationToRemoveItem + +AMF-TNLAssociationToRemoveItem ::= SEQUENCE { + aMF-TNLAssociationAddress CPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {AMF-TNLAssociationToRemoveItem-ExtIEs} } OPTIONAL, + ... +} + +AMF-TNLAssociationToRemoveItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-TNLAssociationTransportLayerAddressNGRAN CRITICALITY reject EXTENSION CPTransportLayerInformation PRESENCE optional}, + ... +} + +AMF-TNLAssociationToUpdateList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF AMF-TNLAssociationToUpdateItem + +AMF-TNLAssociationToUpdateItem ::= SEQUENCE { + aMF-TNLAssociationAddress CPTransportLayerInformation, + tNLAssociationUsage TNLAssociationUsage OPTIONAL, + tNLAddressWeightFactor TNLAddressWeightFactor OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AMF-TNLAssociationToUpdateItem-ExtIEs} } OPTIONAL, + ... +} + +AMF-TNLAssociationToUpdateItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AMF-UE-NGAP-ID ::= INTEGER (0..1099511627775) + +AreaOfInterest ::= SEQUENCE { + areaOfInterestTAIList AreaOfInterestTAIList OPTIONAL, + areaOfInterestCellList AreaOfInterestCellList OPTIONAL, + areaOfInterestRANNodeList AreaOfInterestRANNodeList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterest-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterest-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AreaOfInterestCellList ::= SEQUENCE (SIZE(1..maxnoofCellinAoI)) OF AreaOfInterestCellItem + +AreaOfInterestCellItem ::= SEQUENCE { + nGRAN-CGI NGRAN-CGI, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterestCellItem-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterestCellItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AreaOfInterestList ::= SEQUENCE (SIZE(1..maxnoofAoI)) OF AreaOfInterestItem + +AreaOfInterestItem ::= SEQUENCE { + areaOfInterest AreaOfInterest, + locationReportingReferenceID LocationReportingReferenceID, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterestItem-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterestItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AreaOfInterestRANNodeList ::= SEQUENCE (SIZE(1..maxnoofRANNodeinAoI)) OF AreaOfInterestRANNodeItem + +AreaOfInterestRANNodeItem ::= SEQUENCE { + globalRANNodeID GlobalRANNodeID, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterestRANNodeItem-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterestRANNodeItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AreaOfInterestTAIList ::= SEQUENCE (SIZE(1..maxnoofTAIinAoI)) OF AreaOfInterestTAIItem + +AreaOfInterestTAIItem ::= SEQUENCE { + tAI TAI, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterestTAIItem-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterestTAIItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AssistanceDataForPaging ::= SEQUENCE { + assistanceDataForRecommendedCells AssistanceDataForRecommendedCells OPTIONAL, + pagingAttemptInformation PagingAttemptInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AssistanceDataForPaging-ExtIEs} } OPTIONAL, + ... +} + +AssistanceDataForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-NPN-PagingAssistanceInformation CRITICALITY ignore EXTENSION NPN-PagingAssistanceInformation PRESENCE optional }| + { ID id-PagingAssisDataforCEcapabUE CRITICALITY ignore EXTENSION PagingAssisDataforCEcapabUE PRESENCE optional }, + ... +} + +AssistanceDataForRecommendedCells ::= SEQUENCE { + recommendedCellsForPaging RecommendedCellsForPaging, + iE-Extensions ProtocolExtensionContainer { {AssistanceDataForRecommendedCells-ExtIEs} } OPTIONAL, + ... +} + +AssistanceDataForRecommendedCells-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AssociatedQosFlowList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF AssociatedQosFlowItem + +AssociatedQosFlowItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + qosFlowMappingIndication ENUMERATED {ul, dl, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AssociatedQosFlowItem-ExtIEs} } OPTIONAL, + ... +} + +AssociatedQosFlowItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetIndex PRESENCE optional }, + ... +} + +AuthenticatedIndication ::= ENUMERATED {true, ...} + +AveragingWindow ::= INTEGER (0..4095, ...) + +AreaScopeOfMDT-NR ::= CHOICE { + cellBased CellBasedMDT-NR, + tABased TABasedMDT, + pLMNWide NULL, + tAIBased TAIBasedMDT, + choice-Extensions ProtocolIE-SingleContainer { {AreaScopeOfMDT-NR-ExtIEs} } +} + +AreaScopeOfMDT-NR-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +AreaScopeOfMDT-EUTRA ::= CHOICE { + cellBased CellBasedMDT-EUTRA, + tABased TABasedMDT, + pLMNWide NULL, + tAIBased TAIBasedMDT, + choice-Extensions ProtocolIE-SingleContainer { {AreaScopeOfMDT-EUTRA-ExtIEs} } +} + +AreaScopeOfMDT-EUTRA-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +AreaScopeOfNeighCellsList ::= SEQUENCE (SIZE(1..maxnoofFreqforMDT)) OF AreaScopeOfNeighCellsItem +AreaScopeOfNeighCellsItem ::= SEQUENCE { + nrFrequencyInfo NRFrequencyInfo, + pciListForMDT PCIListForMDT OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { AreaScopeOfNeighCellsItem-ExtIEs} } OPTIONAL, + ... +} + +AreaScopeOfNeighCellsItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- B + +BitRate ::= INTEGER (0..4000000000000, ...) + +BroadcastCancelledAreaList ::= CHOICE { + cellIDCancelledEUTRA CellIDCancelledEUTRA, + tAICancelledEUTRA TAICancelledEUTRA, + emergencyAreaIDCancelledEUTRA EmergencyAreaIDCancelledEUTRA, + cellIDCancelledNR CellIDCancelledNR, + tAICancelledNR TAICancelledNR, + emergencyAreaIDCancelledNR EmergencyAreaIDCancelledNR, + choice-Extensions ProtocolIE-SingleContainer { {BroadcastCancelledAreaList-ExtIEs} } +} + +BroadcastCancelledAreaList-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +BroadcastCompletedAreaList ::= CHOICE { + cellIDBroadcastEUTRA CellIDBroadcastEUTRA, + tAIBroadcastEUTRA TAIBroadcastEUTRA, + emergencyAreaIDBroadcastEUTRA EmergencyAreaIDBroadcastEUTRA, + cellIDBroadcastNR CellIDBroadcastNR, + tAIBroadcastNR TAIBroadcastNR, + emergencyAreaIDBroadcastNR EmergencyAreaIDBroadcastNR, + choice-Extensions ProtocolIE-SingleContainer { {BroadcastCompletedAreaList-ExtIEs} } +} + +BroadcastCompletedAreaList-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +BroadcastPLMNList ::= SEQUENCE (SIZE(1..maxnoofBPLMNs)) OF BroadcastPLMNItem + +BroadcastPLMNItem ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + tAISliceSupportList SliceSupportList, + iE-Extensions ProtocolExtensionContainer { {BroadcastPLMNItem-ExtIEs} } OPTIONAL, + ... +} + +BroadcastPLMNItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-NPN-Support CRITICALITY reject EXTENSION NPN-Support PRESENCE optional}| + {ID id-ExtendedTAISliceSupportList CRITICALITY reject EXTENSION ExtendedSliceSupportList PRESENCE optional}, + ... +} + +BluetoothMeasurementConfiguration ::= SEQUENCE { + bluetoothMeasConfig BluetoothMeasConfig, + bluetoothMeasConfigNameList BluetoothMeasConfigNameList OPTIONAL, + bt-rssi ENUMERATED {true, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { BluetoothMeasurementConfiguration-ExtIEs } } OPTIONAL, + ... +} + +BluetoothMeasurementConfiguration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +BluetoothMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofBluetoothName)) OF BluetoothMeasConfigNameItem + +BluetoothMeasConfigNameItem ::= SEQUENCE { + bluetoothName BluetoothName, + iE-Extensions ProtocolExtensionContainer { { BluetoothMeasConfigNameItem-ExtIEs } } OPTIONAL, + ... +} + +BluetoothMeasConfigNameItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +BluetoothMeasConfig::= ENUMERATED {setup,...} + +BluetoothName ::= OCTET STRING (SIZE (1..248)) + +BurstArrivalTime ::= OCTET STRING + +-- C + +CAG-ID ::= BIT STRING (SIZE(32)) + +CancelAllWarningMessages ::= ENUMERATED { + true, + ... +} + +CancelledCellsInEAI-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CancelledCellsInEAI-EUTRA-Item + +CancelledCellsInEAI-EUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellsInEAI-EUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellsInEAI-EUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CancelledCellsInEAI-NR ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CancelledCellsInEAI-NR-Item + +CancelledCellsInEAI-NR-Item ::= SEQUENCE { + nR-CGI NR-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellsInEAI-NR-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellsInEAI-NR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CancelledCellsInTAI-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CancelledCellsInTAI-EUTRA-Item + +CancelledCellsInTAI-EUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellsInTAI-EUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellsInTAI-EUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CancelledCellsInTAI-NR ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CancelledCellsInTAI-NR-Item + +CancelledCellsInTAI-NR-Item ::= SEQUENCE{ + nR-CGI NR-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellsInTAI-NR-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellsInTAI-NR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CandidateCellList ::= SEQUENCE (SIZE(1.. maxnoofCandidateCells)) OF CandidateCellItem + +CandidateCellItem ::= SEQUENCE{ + candidateCell CandidateCell, + iE-Extensions ProtocolExtensionContainer { {CandidateCellItem-ExtIEs} } OPTIONAL, + ... +} + +CandidateCellItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CandidateCell::= CHOICE { + candidateCGI CandidateCellID, + candidatePCI CandidatePCI, + choice-Extensions ProtocolIE-SingleContainer { { CandidateCell-ExtIEs} } +} + +CandidateCell-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + + +CandidateCellID::= SEQUENCE { + candidateCellID NR-CGI, + iE-Extensions ProtocolExtensionContainer { { CandidateCellID-ExtIEs} } OPTIONAL, + ... +} + +CandidateCellID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CandidatePCI::= SEQUENCE { + candidatePCI INTEGER (0..1007, ...), + candidateNRARFCN INTEGER (0..3279165), + iE-Extensions ProtocolExtensionContainer { { CandidatePCI-ExtIEs} } OPTIONAL, + ... +} + +CandidatePCI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Cause ::= CHOICE { + radioNetwork CauseRadioNetwork, + transport CauseTransport, + nas CauseNas, + protocol CauseProtocol, + misc CauseMisc, + choice-Extensions ProtocolIE-SingleContainer { {Cause-ExtIEs} } +} + +Cause-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +CauseMisc ::= ENUMERATED { + control-processing-overload, + not-enough-user-plane-processing-resources, + hardware-failure, + om-intervention, + unknown-PLMN-or-SNPN, + unspecified, + ... +} + +CauseNas ::= ENUMERATED { + normal-release, + authentication-failure, + deregister, + unspecified, + ... +} + +CauseProtocol ::= ENUMERATED { + transfer-syntax-error, + abstract-syntax-error-reject, + abstract-syntax-error-ignore-and-notify, + message-not-compatible-with-receiver-state, + semantic-error, + abstract-syntax-error-falsely-constructed-message, + unspecified, + ... +} + +CauseRadioNetwork ::= ENUMERATED { + unspecified, + txnrelocoverall-expiry, + successful-handover, + release-due-to-ngran-generated-reason, + release-due-to-5gc-generated-reason, + handover-cancelled, + partial-handover, + ho-failure-in-target-5GC-ngran-node-or-target-system, + ho-target-not-allowed, + tngrelocoverall-expiry, + tngrelocprep-expiry, + cell-not-available, + unknown-targetID, + no-radio-resources-available-in-target-cell, + unknown-local-UE-NGAP-ID, + inconsistent-remote-UE-NGAP-ID, + handover-desirable-for-radio-reason, + time-critical-handover, + resource-optimisation-handover, + reduce-load-in-serving-cell, + user-inactivity, + radio-connection-with-ue-lost, + radio-resources-not-available, + invalid-qos-combination, + failure-in-radio-interface-procedure, + interaction-with-other-procedure, + unknown-PDU-session-ID, + unkown-qos-flow-ID, + multiple-PDU-session-ID-instances, + multiple-qos-flow-ID-instances, + encryption-and-or-integrity-protection-algorithms-not-supported, + ng-intra-system-handover-triggered, + ng-inter-system-handover-triggered, + xn-handover-triggered, + not-supported-5QI-value, + ue-context-transfer, + ims-voice-eps-fallback-or-rat-fallback-triggered, + up-integrity-protection-not-possible, + up-confidentiality-protection-not-possible, + slice-not-supported, + ue-in-rrc-inactive-state-not-reachable, + redirection, + resources-not-available-for-the-slice, + ue-max-integrity-protected-data-rate-reason, + release-due-to-cn-detected-mobility, + ..., + n26-interface-not-available, + release-due-to-pre-emption, + multiple-location-reporting-reference-ID-instances, + rsn-not-available-for-the-up, + npn-access-denied, + cag-only-access-denied, + insufficient-ue-capabilities +} + +CauseTransport ::= ENUMERATED { + transport-resource-unavailable, + unspecified, + ... +} + +Cell-CAGInformation ::= SEQUENCE { + nGRAN-CGI NGRAN-CGI, + cellCAGList CellCAGList, + iE-Extensions ProtocolExtensionContainer { {Cell-CAGInformation-ExtIEs} } OPTIONAL, + ... +} + +Cell-CAGInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +CellCAGList ::= SEQUENCE (SIZE(1..maxnoofCAGSperCell)) OF CAG-ID + +CellIDBroadcastEUTRA ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF CellIDBroadcastEUTRA-Item + +CellIDBroadcastEUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + iE-Extensions ProtocolExtensionContainer { {CellIDBroadcastEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CellIDBroadcastEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIDBroadcastNR ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF CellIDBroadcastNR-Item + +CellIDBroadcastNR-Item ::= SEQUENCE { + nR-CGI NR-CGI, + iE-Extensions ProtocolExtensionContainer { {CellIDBroadcastNR-Item-ExtIEs} } OPTIONAL, + ... +} + +CellIDBroadcastNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIDCancelledEUTRA ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF CellIDCancelledEUTRA-Item + +CellIDCancelledEUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CellIDCancelledEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CellIDCancelledEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIDCancelledNR ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF CellIDCancelledNR-Item + +CellIDCancelledNR-Item ::= SEQUENCE { + nR-CGI NR-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CellIDCancelledNR-Item-ExtIEs} } OPTIONAL, + ... +} + +CellIDCancelledNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIDListForRestart ::= CHOICE { + eUTRA-CGIListforRestart EUTRA-CGIList, + nR-CGIListforRestart NR-CGIList, + choice-Extensions ProtocolIE-SingleContainer { {CellIDListForRestart-ExtIEs} } +} + +CellIDListForRestart-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +CellSize ::= ENUMERATED {verysmall, small, medium, large, ...} + + +CellType ::= SEQUENCE { + cellSize CellSize, + iE-Extensions ProtocolExtensionContainer { {CellType-ExtIEs} } OPTIONAL, + ... +} + +CellType-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CEmodeBSupport-Indicator ::= ENUMERATED {supported,...} + + +CEmodeBrestricted ::= ENUMERATED { + restricted, + not-restricted, + ... +} + +CNAssistedRANTuning ::= SEQUENCE { + expectedUEBehaviour ExpectedUEBehaviour OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {CNAssistedRANTuning-ExtIEs} } OPTIONAL, + ... +} + +CNAssistedRANTuning-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CNTypeRestrictionsForEquivalent ::= SEQUENCE (SIZE(1..maxnoofEPLMNs)) OF CNTypeRestrictionsForEquivalentItem + +CNTypeRestrictionsForEquivalentItem ::= SEQUENCE { + plmnIdentity PLMNIdentity, + cn-Type ENUMERATED {epc-forbidden, fiveGC-forbidden, ...}, + iE-Extensions ProtocolExtensionContainer { {CNTypeRestrictionsForEquivalentItem-ExtIEs} } OPTIONAL, + ... +} + +CNTypeRestrictionsForEquivalentItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::={ + ... +} + +CNTypeRestrictionsForServing ::= ENUMERATED { + epc-forbidden, + ... +} + +CommonNetworkInstance ::= OCTET STRING + +CompletedCellsInEAI-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CompletedCellsInEAI-EUTRA-Item + +CompletedCellsInEAI-EUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellsInEAI-EUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellsInEAI-EUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CompletedCellsInEAI-NR ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CompletedCellsInEAI-NR-Item + +CompletedCellsInEAI-NR-Item ::= SEQUENCE { + nR-CGI NR-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellsInEAI-NR-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellsInEAI-NR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CompletedCellsInTAI-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CompletedCellsInTAI-EUTRA-Item + +CompletedCellsInTAI-EUTRA-Item ::= SEQUENCE{ + eUTRA-CGI EUTRA-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellsInTAI-EUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellsInTAI-EUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CompletedCellsInTAI-NR ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CompletedCellsInTAI-NR-Item + +CompletedCellsInTAI-NR-Item ::= SEQUENCE{ + nR-CGI NR-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellsInTAI-NR-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellsInTAI-NR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ConcurrentWarningMessageInd ::= ENUMERATED { + true, + ... +} + +ConfidentialityProtectionIndication ::= ENUMERATED { + required, + preferred, + not-needed, + ... +} + +ConfidentialityProtectionResult ::= ENUMERATED { + performed, + not-performed, + ... +} + +ConfiguredTACIndication ::= ENUMERATED { + true, + ... +} + +CoreNetworkAssistanceInformationForInactive ::= SEQUENCE { + uEIdentityIndexValue UEIdentityIndexValue, + uESpecificDRX PagingDRX OPTIONAL, + periodicRegistrationUpdateTimer PeriodicRegistrationUpdateTimer, + mICOModeIndication MICOModeIndication OPTIONAL, + tAIListForInactive TAIListForInactive, + expectedUEBehaviour ExpectedUEBehaviour OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {CoreNetworkAssistanceInformationForInactive-ExtIEs} } OPTIONAL, + ... +} + +CoreNetworkAssistanceInformationForInactive-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PagingeDRXInformation CRITICALITY ignore EXTENSION PagingeDRXInformation PRESENCE optional }| + { ID id-ExtendedUEIdentityIndexValue CRITICALITY ignore EXTENSION ExtendedUEIdentityIndexValue PRESENCE optional }| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore EXTENSION UERadioCapabilityForPaging PRESENCE optional }| + { ID id-MicoAllPLMN CRITICALITY ignore EXTENSION MicoAllPLMN PRESENCE optional }, + ... +} + +COUNTValueForPDCP-SN12 ::= SEQUENCE { + pDCP-SN12 INTEGER (0..4095), + hFN-PDCP-SN12 INTEGER (0..1048575), + iE-Extensions ProtocolExtensionContainer { {COUNTValueForPDCP-SN12-ExtIEs} } OPTIONAL, + ... +} + +COUNTValueForPDCP-SN12-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +COUNTValueForPDCP-SN18 ::= SEQUENCE { + pDCP-SN18 INTEGER (0..262143), + hFN-PDCP-SN18 INTEGER (0..16383), + iE-Extensions ProtocolExtensionContainer { {COUNTValueForPDCP-SN18-ExtIEs} } OPTIONAL, + ... +} + +COUNTValueForPDCP-SN18-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CoverageEnhancementLevel ::= OCTET STRING + +CPTransportLayerInformation ::= CHOICE { + endpointIPAddress TransportLayerAddress, + choice-Extensions ProtocolIE-SingleContainer { {CPTransportLayerInformation-ExtIEs} } +} + +CPTransportLayerInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-EndpointIPAddressAndPort CRITICALITY reject TYPE EndpointIPAddressAndPort PRESENCE mandatory }, + ... +} + +CriticalityDiagnostics ::= SEQUENCE { + procedureCode ProcedureCode OPTIONAL, + triggeringMessage TriggeringMessage OPTIONAL, + procedureCriticality Criticality OPTIONAL, + iEsCriticalityDiagnostics CriticalityDiagnostics-IE-List OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{CriticalityDiagnostics-ExtIEs}} OPTIONAL, + ... +} + +CriticalityDiagnostics-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CriticalityDiagnostics-IE-List ::= SEQUENCE (SIZE(1..maxnoofErrors)) OF CriticalityDiagnostics-IE-Item + +CriticalityDiagnostics-IE-Item ::= SEQUENCE { + iECriticality Criticality, + iE-ID ProtocolIE-ID, + typeOfError TypeOfError, + iE-Extensions ProtocolExtensionContainer {{CriticalityDiagnostics-IE-Item-ExtIEs}} OPTIONAL, + ... +} + +CriticalityDiagnostics-IE-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellBasedMDT-NR::= SEQUENCE { + cellIdListforMDT CellIdListforMDT-NR, + iE-Extensions ProtocolExtensionContainer { {CellBasedMDT-NR-ExtIEs} } OPTIONAL, + ... +} + +CellBasedMDT-NR-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIdListforMDT-NR ::= SEQUENCE (SIZE(1..maxnoofCellIDforMDT)) OF NR-CGI + + +CellBasedMDT-EUTRA::= SEQUENCE { + cellIdListforMDT CellIdListforMDT-EUTRA, + iE-Extensions ProtocolExtensionContainer { {CellBasedMDT-EUTRA-ExtIEs} } OPTIONAL, + ... +} + +CellBasedMDT-EUTRA-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIdListforMDT-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellIDforMDT)) OF EUTRA-CGI + + +-- D + +DataCodingScheme ::= BIT STRING (SIZE(8)) + +DataForwardingAccepted ::= ENUMERATED { + data-forwarding-accepted, + ... +} + +DataForwardingNotPossible ::= ENUMERATED { + data-forwarding-not-possible, + ... +} + +DataForwardingResponseDRBList ::= SEQUENCE (SIZE(1..maxnoofDRBs)) OF DataForwardingResponseDRBItem + +DataForwardingResponseDRBItem ::= SEQUENCE { + dRB-ID DRB-ID, + dLForwardingUP-TNLInformation UPTransportLayerInformation OPTIONAL, + uLForwardingUP-TNLInformation UPTransportLayerInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{DataForwardingResponseDRBItem-ExtIEs}} OPTIONAL, + ... +} + +DataForwardingResponseDRBItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DAPSRequestInfo ::= SEQUENCE { + dAPSIndicator ENUMERATED {daps-ho-required, ...}, + iE-Extensions ProtocolExtensionContainer { {DAPSRequestInfo-ExtIEs} } OPTIONAL, + ... +} + +DAPSRequestInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DAPSResponseInfoList ::= SEQUENCE (SIZE(1.. maxnoofDRBs)) OF DAPSResponseInfoItem + +DAPSResponseInfoItem ::= SEQUENCE { + dRB-ID DRB-ID, + dAPSResponseInfo DAPSResponseInfo, + iE-Extension ProtocolExtensionContainer { {DAPSResponseInfoItem-ExtIEs} } OPTIONAL, + ... +} + +DAPSResponseInfoItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DAPSResponseInfo ::= SEQUENCE { + dapsresponseindicator ENUMERATED {daps-ho-accepted, daps-ho-not-accepted, ...}, + iE-Extensions ProtocolExtensionContainer { { DAPSResponseInfo-ExtIEs} } OPTIONAL, + ... +} + +DAPSResponseInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +DataForwardingResponseERABList ::= SEQUENCE (SIZE(1..maxnoofE-RABs)) OF DataForwardingResponseERABListItem + +DataForwardingResponseERABListItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dLForwardingUP-TNLInformation UPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {DataForwardingResponseERABListItem-ExtIEs} } OPTIONAL, + ... +} + +DataForwardingResponseERABListItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DelayCritical ::= ENUMERATED { + delay-critical, + non-delay-critical, + ... +} + +DL-CP-SecurityInformation ::= SEQUENCE { + dl-NAS-MAC DL-NAS-MAC, + iE-Extensions ProtocolExtensionContainer { { DL-CP-SecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +DL-CP-SecurityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DL-NAS-MAC ::= BIT STRING (SIZE (16)) + +DLForwarding ::= ENUMERATED { + dl-forwarding-proposed, + ... +} + +DL-NGU-TNLInformationReused ::= ENUMERATED { + true, + ... +} + +DirectForwardingPathAvailability ::= ENUMERATED { + direct-path-available, + ... +} + +DRB-ID ::= INTEGER (1..32, ...) + +DRBsSubjectToStatusTransferList ::= SEQUENCE (SIZE(1..maxnoofDRBs)) OF DRBsSubjectToStatusTransferItem + +DRBsSubjectToStatusTransferItem ::= SEQUENCE { + dRB-ID DRB-ID, + dRBStatusUL DRBStatusUL, + dRBStatusDL DRBStatusDL, + iE-Extension ProtocolExtensionContainer { {DRBsSubjectToStatusTransferItem-ExtIEs} } OPTIONAL, + ... +} + +DRBsSubjectToStatusTransferItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-OldAssociatedQosFlowList-ULendmarkerexpected CRITICALITY ignore EXTENSION AssociatedQosFlowList PRESENCE optional }, + ... +} + +DRBStatusDL ::= CHOICE { + dRBStatusDL12 DRBStatusDL12, + dRBStatusDL18 DRBStatusDL18, + choice-Extensions ProtocolIE-SingleContainer { {DRBStatusDL-ExtIEs} } +} + +DRBStatusDL-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +DRBStatusDL12 ::= SEQUENCE { + dL-COUNTValue COUNTValueForPDCP-SN12, + iE-Extension ProtocolExtensionContainer { {DRBStatusDL12-ExtIEs} } OPTIONAL, + ... +} + +DRBStatusDL12-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBStatusDL18 ::= SEQUENCE { + dL-COUNTValue COUNTValueForPDCP-SN18, + iE-Extension ProtocolExtensionContainer { {DRBStatusDL18-ExtIEs} } OPTIONAL, + ... +} + +DRBStatusDL18-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBStatusUL ::= CHOICE { + dRBStatusUL12 DRBStatusUL12, + dRBStatusUL18 DRBStatusUL18, + choice-Extensions ProtocolIE-SingleContainer { {DRBStatusUL-ExtIEs} } +} + +DRBStatusUL-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +DRBStatusUL12 ::= SEQUENCE { + uL-COUNTValue COUNTValueForPDCP-SN12, + receiveStatusOfUL-PDCP-SDUs BIT STRING (SIZE(1..2048)) OPTIONAL, + iE-Extension ProtocolExtensionContainer { {DRBStatusUL12-ExtIEs} } OPTIONAL, + ... +} + +DRBStatusUL12-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBStatusUL18 ::= SEQUENCE { + uL-COUNTValue COUNTValueForPDCP-SN18, + receiveStatusOfUL-PDCP-SDUs BIT STRING (SIZE(1..131072)) OPTIONAL, + iE-Extension ProtocolExtensionContainer { {DRBStatusUL18-ExtIEs} } OPTIONAL, + ... +} + +DRBStatusUL18-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBsToQosFlowsMappingList ::= SEQUENCE (SIZE(1..maxnoofDRBs)) OF DRBsToQosFlowsMappingItem + +DRBsToQosFlowsMappingItem ::= SEQUENCE { + dRB-ID DRB-ID, + associatedQosFlowList AssociatedQosFlowList, + iE-Extensions ProtocolExtensionContainer { {DRBsToQosFlowsMappingItem-ExtIEs} } OPTIONAL, + ... +} + +DRBsToQosFlowsMappingItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-DAPSRequestInfo CRITICALITY ignore EXTENSION DAPSRequestInfo PRESENCE optional }, + ... +} + +Dynamic5QIDescriptor ::= SEQUENCE { + priorityLevelQos PriorityLevelQos, + packetDelayBudget PacketDelayBudget, + packetErrorRate PacketErrorRate, + fiveQI FiveQI OPTIONAL, + delayCritical DelayCritical OPTIONAL, +-- The above IE shall be present in case of GBR QoS flow + averagingWindow AveragingWindow OPTIONAL, +-- The above IE shall be present in case of GBR QoS flow + maximumDataBurstVolume MaximumDataBurstVolume OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {Dynamic5QIDescriptor-ExtIEs} } OPTIONAL, + ... +} + +Dynamic5QIDescriptor-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-ExtendedPacketDelayBudget CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-CNPacketDelayBudgetDL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-CNPacketDelayBudgetUL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }, + ... +} + +-- E + +EarlyStatusTransfer-TransparentContainer ::= SEQUENCE { + procedureStage ProcedureStageChoice, + iE-Extensions ProtocolExtensionContainer { {EarlyStatusTransfer-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +EarlyStatusTransfer-TransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ProcedureStageChoice ::= CHOICE { + first-dl-count FirstDLCount, + choice-Extensions ProtocolIE-SingleContainer { {ProcedureStageChoice-ExtIEs} } +} + +ProcedureStageChoice-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +FirstDLCount ::= SEQUENCE { + dRBsSubjectToEarlyStatusTransfer DRBsSubjectToEarlyStatusTransfer-List, + iE-Extension ProtocolExtensionContainer { {FirstDLCount-ExtIEs} } OPTIONAL, + ... +} + +FirstDLCount-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBsSubjectToEarlyStatusTransfer-List ::= SEQUENCE (SIZE (1.. maxnoofDRBs)) OF DRBsSubjectToEarlyStatusTransfer-Item + +DRBsSubjectToEarlyStatusTransfer-Item ::= SEQUENCE { + dRB-ID DRB-ID, + firstDLCOUNT DRBStatusDL, + iE-Extension ProtocolExtensionContainer { { DRBsSubjectToEarlyStatusTransfer-Item-ExtIEs} } OPTIONAL, + ... +} + +DRBsSubjectToEarlyStatusTransfer-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +EDT-Session ::= ENUMERATED { + true, + ... +} + +EmergencyAreaID ::= OCTET STRING (SIZE(3)) + +EmergencyAreaIDBroadcastEUTRA ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaIDBroadcastEUTRA-Item + +EmergencyAreaIDBroadcastEUTRA-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + completedCellsInEAI-EUTRA CompletedCellsInEAI-EUTRA, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaIDBroadcastEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaIDBroadcastEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaIDBroadcastNR ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaIDBroadcastNR-Item + +EmergencyAreaIDBroadcastNR-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + completedCellsInEAI-NR CompletedCellsInEAI-NR, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaIDBroadcastNR-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaIDBroadcastNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaIDCancelledEUTRA ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaIDCancelledEUTRA-Item + +EmergencyAreaIDCancelledEUTRA-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + cancelledCellsInEAI-EUTRA CancelledCellsInEAI-EUTRA, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaIDCancelledEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaIDCancelledEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaIDCancelledNR ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaIDCancelledNR-Item + +EmergencyAreaIDCancelledNR-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + cancelledCellsInEAI-NR CancelledCellsInEAI-NR, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaIDCancelledNR-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaIDCancelledNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaIDList ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaID + +EmergencyAreaIDListForRestart ::= SEQUENCE (SIZE(1..maxnoofEAIforRestart)) OF EmergencyAreaID + +EmergencyFallbackIndicator ::= SEQUENCE { + emergencyFallbackRequestIndicator EmergencyFallbackRequestIndicator, + emergencyServiceTargetCN EmergencyServiceTargetCN OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {EmergencyFallbackIndicator-ExtIEs} } OPTIONAL, + ... +} + +EmergencyFallbackIndicator-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyFallbackRequestIndicator ::= ENUMERATED { + emergency-fallback-requested, + ... +} + +EmergencyServiceTargetCN ::= ENUMERATED { + fiveGC, + epc, + ... +} + +ENB-ID ::= CHOICE { + macroENB-ID BIT STRING (SIZE(20)), + homeENB-ID BIT STRING (SIZE(28)), + short-macroENB-ID BIT STRING (SIZE(18)), + long-macroENB-ID BIT STRING (SIZE(21)), + choice-Extensions ProtocolIE-SingleContainer { { ENB-ID-ExtIEs} } +} + +ENB-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + + +Enhanced-CoverageRestriction ::= ENUMERATED {restricted, ... } + + +Extended-ConnectedTime ::= INTEGER (0..255) + +EN-DCSONConfigurationTransfer ::= OCTET STRING + +EndpointIPAddressAndPort ::=SEQUENCE { + endpointIPAddress TransportLayerAddress, + portNumber PortNumber, + iE-Extensions ProtocolExtensionContainer { { EndpointIPAddressAndPort-ExtIEs} } OPTIONAL +} + +EndIndication ::= ENUMERATED { + no-further-data, + further-data-exists, + ... +} + +EndpointIPAddressAndPort-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EquivalentPLMNs ::= SEQUENCE (SIZE(1..maxnoofEPLMNs)) OF PLMNIdentity + +EPS-TAC ::= OCTET STRING (SIZE(2)) + +EPS-TAI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + ePS-TAC EPS-TAC, + iE-Extensions ProtocolExtensionContainer { {EPS-TAI-ExtIEs} } OPTIONAL, + ... +} + +EPS-TAI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +E-RAB-ID ::= INTEGER (0..15, ...) + +E-RABInformationList ::= SEQUENCE (SIZE(1..maxnoofE-RABs)) OF E-RABInformationItem + +E-RABInformationItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dLForwarding DLForwarding OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABInformationItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EUTRACellIdentity ::= BIT STRING (SIZE(28)) + +EUTRA-CGI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + eUTRACellIdentity EUTRACellIdentity, + iE-Extensions ProtocolExtensionContainer { {EUTRA-CGI-ExtIEs} } OPTIONAL, + ... +} + +EUTRA-CGI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EUTRA-CGIList ::= SEQUENCE (SIZE(1..maxnoofCellsinngeNB)) OF EUTRA-CGI + +EUTRA-CGIListForWarning ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF EUTRA-CGI + +EUTRAencryptionAlgorithms ::= BIT STRING (SIZE(16, ...)) + +EUTRAintegrityProtectionAlgorithms ::= BIT STRING (SIZE(16, ...)) + +EventType ::= ENUMERATED { + direct, + change-of-serve-cell, + ue-presence-in-area-of-interest, + stop-change-of-serve-cell, + stop-ue-presence-in-area-of-interest, + cancel-location-reporting-for-the-ue, + ... +} + +ExpectedActivityPeriod ::= INTEGER (1..30|40|50|60|80|100|120|150|180|181, ...) + +ExpectedHOInterval ::= ENUMERATED { + sec15, sec30, sec60, sec90, sec120, sec180, long-time, + ... +} + +ExpectedIdlePeriod ::= INTEGER (1..30|40|50|60|80|100|120|150|180|181, ...) + +ExpectedUEActivityBehaviour ::= SEQUENCE { + expectedActivityPeriod ExpectedActivityPeriod OPTIONAL, + expectedIdlePeriod ExpectedIdlePeriod OPTIONAL, + sourceOfUEActivityBehaviourInformation SourceOfUEActivityBehaviourInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ExpectedUEActivityBehaviour-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEActivityBehaviour-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExpectedUEBehaviour ::= SEQUENCE { + expectedUEActivityBehaviour ExpectedUEActivityBehaviour OPTIONAL, + expectedHOInterval ExpectedHOInterval OPTIONAL, + expectedUEMobility ExpectedUEMobility OPTIONAL, + expectedUEMovingTrajectory ExpectedUEMovingTrajectory OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ExpectedUEBehaviour-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEBehaviour-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExpectedUEMobility ::= ENUMERATED { + stationary, + mobile, + ... +} + +ExpectedUEMovingTrajectory ::= SEQUENCE (SIZE(1..maxnoofCellsUEMovingTrajectory)) OF ExpectedUEMovingTrajectoryItem + +ExpectedUEMovingTrajectoryItem ::= SEQUENCE { + nGRAN-CGI NGRAN-CGI, + timeStayedInCell INTEGER (0..4095) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ExpectedUEMovingTrajectoryItem-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEMovingTrajectoryItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Extended-AMFName ::= SEQUENCE { + aMFNameVisibleString AMFNameVisibleString OPTIONAL, + aMFNameUTF8String AMFNameUTF8String OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { Extended-AMFName-ExtIEs } } OPTIONAL, + ... +} + +Extended-AMFName-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExtendedPacketDelayBudget ::= INTEGER (1..65535, ...) + + +Extended-RANNodeName ::= SEQUENCE { + rANNodeNameVisibleString RANNodeNameVisibleString OPTIONAL, + rANNodeNameUTF8String RANNodeNameUTF8String OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { Extended-RANNodeName-ExtIEs } } OPTIONAL, ... +} + +Extended-RANNodeName-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExtendedRATRestrictionInformation ::= SEQUENCE { + primaryRATRestriction BIT STRING (SIZE(8, ...)), + secondaryRATRestriction BIT STRING (SIZE(8, ...)), + iE-Extensions ProtocolExtensionContainer { {ExtendedRATRestrictionInformation-ExtIEs} } OPTIONAL, + ... +} + +ExtendedRATRestrictionInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExtendedRNC-ID ::= INTEGER (4096..65535) + +ExtendedSliceSupportList ::= SEQUENCE (SIZE(1..maxnoofExtSliceItems)) OF SliceSupportItem + +ExtendedUEIdentityIndexValue ::= BIT STRING (SIZE(16)) + +EventTrigger::= CHOICE { + outOfCoverage ENUMERATED {true, ...}, + eventL1LoggedMDTConfig EventL1LoggedMDTConfig, + choice-Extensions ProtocolIE-SingleContainer { { EventTrigger-ExtIEs} } +} + +EventTrigger-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +EventL1LoggedMDTConfig ::= SEQUENCE { + l1Threshold MeasurementThresholdL1LoggedMDT, + hysteresis Hysteresis, + timeToTrigger TimeToTrigger, + iE-Extensions ProtocolExtensionContainer { { EventL1LoggedMDTConfig-ExtIEs} } OPTIONAL, + ... +} + +EventL1LoggedMDTConfig-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MeasurementThresholdL1LoggedMDT ::= CHOICE { + threshold-RSRP Threshold-RSRP, + threshold-RSRQ Threshold-RSRQ, + choice-Extensions ProtocolIE-SingleContainer { { MeasurementThresholdL1LoggedMDT-ExtIEs} } +} + +MeasurementThresholdL1LoggedMDT-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +-- F + +FailureIndication ::= SEQUENCE { + uERLFReportContainer UERLFReportContainer, + iE-Extensions ProtocolExtensionContainer { { FailureIndication-ExtIEs} } OPTIONAL, + ... +} + +FailureIndication-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +FiveG-S-TMSI ::= SEQUENCE { + aMFSetID AMFSetID, + aMFPointer AMFPointer, + fiveG-TMSI FiveG-TMSI, + iE-Extensions ProtocolExtensionContainer { {FiveG-S-TMSI-ExtIEs} } OPTIONAL, + ... +} + +FiveG-S-TMSI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +FiveG-TMSI ::= OCTET STRING (SIZE(4)) + +FiveQI ::= INTEGER (0..255, ...) + +ForbiddenAreaInformation ::= SEQUENCE (SIZE(1.. maxnoofEPLMNsPlusOne)) OF ForbiddenAreaInformation-Item + +ForbiddenAreaInformation-Item ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + forbiddenTACs ForbiddenTACs, + iE-Extensions ProtocolExtensionContainer { {ForbiddenAreaInformation-Item-ExtIEs} } OPTIONAL, + ... +} + +ForbiddenAreaInformation-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ForbiddenTACs ::= SEQUENCE (SIZE(1..maxnoofForbTACs)) OF TAC + +FromEUTRANtoNGRAN ::= SEQUENCE { + sourceeNBID IntersystemSONeNBID, + targetNGRANnodeID IntersystemSONNGRANnodeID, + iE-Extensions ProtocolExtensionContainer { { FromEUTRANtoNGRAN-ExtIEs} } OPTIONAL +} + +FromEUTRANtoNGRAN-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +FromNGRANtoEUTRAN ::= SEQUENCE { + sourceNGRANnodeID IntersystemSONNGRANnodeID, + targeteNBID IntersystemSONeNBID, + iE-Extensions ProtocolExtensionContainer { { FromNGRANtoEUTRAN-ExtIEs} } OPTIONAL +} + +FromNGRANtoEUTRAN-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- G + +GBR-QosInformation ::= SEQUENCE { + maximumFlowBitRateDL BitRate, + maximumFlowBitRateUL BitRate, + guaranteedFlowBitRateDL BitRate, + guaranteedFlowBitRateUL BitRate, + notificationControl NotificationControl OPTIONAL, + maximumPacketLossRateDL PacketLossRate OPTIONAL, + maximumPacketLossRateUL PacketLossRate OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {GBR-QosInformation-ExtIEs} } OPTIONAL, + ... +} + +GBR-QosInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AlternativeQoSParaSetList CRITICALITY ignore EXTENSION AlternativeQoSParaSetList PRESENCE optional }, + ... +} + +GlobalCable-ID ::= OCTET STRING + +GlobalENB-ID ::= SEQUENCE { + pLMNidentity PLMNIdentity, + eNB-ID ENB-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalENB-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalENB-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +GlobalGNB-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + gNB-ID GNB-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalGNB-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalGNB-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GlobalN3IWF-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + n3IWF-ID N3IWF-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalN3IWF-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalN3IWF-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GlobalLine-ID ::= SEQUENCE { + globalLineIdentity GlobalLineIdentity, + lineType LineType OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {GlobalLine-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalLine-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GlobalLineIdentity ::= OCTET STRING + +GlobalNgENB-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + ngENB-ID NgENB-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalNgENB-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalNgENB-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GlobalRANNodeID ::= CHOICE { + globalGNB-ID GlobalGNB-ID, + globalNgENB-ID GlobalNgENB-ID, + globalN3IWF-ID GlobalN3IWF-ID, + choice-Extensions ProtocolIE-SingleContainer { {GlobalRANNodeID-ExtIEs} } +} + +GlobalRANNodeID-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-GlobalTNGF-ID CRITICALITY reject TYPE GlobalTNGF-ID PRESENCE mandatory }| + { ID id-GlobalTWIF-ID CRITICALITY reject TYPE GlobalTWIF-ID PRESENCE mandatory }| + { ID id-GlobalW-AGF-ID CRITICALITY reject TYPE GlobalW-AGF-ID PRESENCE mandatory }, + ... +} + +GlobalTNGF-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + tNGF-ID TNGF-ID, + iE-Extensions ProtocolExtensionContainer { { GlobalTNGF-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalTNGF-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +GlobalTWIF-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + tWIF-ID TWIF-ID, + iE-Extensions ProtocolExtensionContainer { { GlobalTWIF-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalTWIF-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +GlobalW-AGF-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + w-AGF-ID W-AGF-ID, + iE-Extensions ProtocolExtensionContainer { { GlobalW-AGF-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalW-AGF-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GNB-ID ::= CHOICE { + gNB-ID BIT STRING (SIZE(22..32)), + choice-Extensions ProtocolIE-SingleContainer { {GNB-ID-ExtIEs} } +} + +GNB-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +GTP-TEID ::= OCTET STRING (SIZE(4)) + +GTPTunnel ::= SEQUENCE { + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { {GTPTunnel-ExtIEs} } OPTIONAL, + ... +} + +GTPTunnel-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GUAMI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + aMFRegionID AMFRegionID, + aMFSetID AMFSetID, + aMFPointer AMFPointer, + iE-Extensions ProtocolExtensionContainer { {GUAMI-ExtIEs} } OPTIONAL, + ... +} + +GUAMI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GUAMIType ::= ENUMERATED {native, mapped, ...} + +-- H + +HandoverCommandTransfer ::= SEQUENCE { + dLForwardingUP-TNLInformation UPTransportLayerInformation OPTIONAL, + qosFlowToBeForwardedList QosFlowToBeForwardedList OPTIONAL, + dataForwardingResponseDRBList DataForwardingResponseDRBList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverCommandTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverCommandTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalDLForwardingUPTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-ULForwardingUP-TNLInformation CRITICALITY reject EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalULForwardingUPTNLInformation CRITICALITY reject EXTENSION UPTransportLayerInformationList PRESENCE optional }| + { ID id-DataForwardingResponseERABList CRITICALITY ignore EXTENSION DataForwardingResponseERABList PRESENCE optional }| + { ID id-QosFlowFailedToSetupList CRITICALITY ignore EXTENSION QosFlowListWithCause PRESENCE optional }, + ... +} + +HandoverFlag ::= ENUMERATED { + handover-preparation, + ... +} + +HandoverPreparationUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {HandoverPreparationUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverPreparationUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +HandoverRequestAcknowledgeTransfer ::= SEQUENCE { + dL-NGU-UP-TNLInformation UPTransportLayerInformation, + dLForwardingUP-TNLInformation UPTransportLayerInformation OPTIONAL, + securityResult SecurityResult OPTIONAL, + qosFlowSetupResponseList QosFlowListWithDataForwarding, + qosFlowFailedToSetupList QosFlowListWithCause OPTIONAL, + dataForwardingResponseDRBList DataForwardingResponseDRBList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverRequestAcknowledgeTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverRequestAcknowledgeTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalDLUPTNLInformationForHOList CRITICALITY ignore EXTENSION AdditionalDLUPTNLInformationForHOList PRESENCE optional }| + { ID id-ULForwardingUP-TNLInformation CRITICALITY reject EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalULForwardingUPTNLInformation CRITICALITY reject EXTENSION UPTransportLayerInformationList PRESENCE optional }| + { ID id-DataForwardingResponseERABList CRITICALITY ignore EXTENSION DataForwardingResponseERABList PRESENCE optional }| + { ID id-RedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-UsedRSNInformation CRITICALITY ignore EXTENSION RedundantPDUSessionInformation PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore EXTENSION GlobalRANNodeID PRESENCE optional }, + ... +} + +HandoverRequiredTransfer ::= SEQUENCE { + directForwardingPathAvailability DirectForwardingPathAvailability OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverRequiredTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverRequiredTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +HandoverResourceAllocationUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + criticalityDiagnostics CriticalityDiagnostics OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverResourceAllocationUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverResourceAllocationUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +HandoverType ::= ENUMERATED { + intra5gs, + fivegs-to-eps, + eps-to-5gs, + ..., + fivegs-to-utran +} + +HFCNode-ID ::= OCTET STRING + +HOReport::= SEQUENCE { + handoverReportType ENUMERATED {ho-too-early, ho-to-wrong-cell, intersystem-ping-pong, ...}, + handoverCause Cause, + sourcecellCGI NGRAN-CGI, + targetcellCGI NGRAN-CGI, + reestablishmentcellCGI NGRAN-CGI OPTIONAL, + -- The above IE shall be present if the Handover Report Type IE is set to the value "HO to wrong cell" -- + sourcecellC-RNTI BIT STRING (SIZE(16)) OPTIONAL, + targetcellinE-UTRAN EUTRA-CGI OPTIONAL, + -- The above IE shall be present if the Handover Report Type IE is set to the value "Inter System ping-pong" -- + mobilityInformation MobilityInformation OPTIONAL, + uERLFReportContainer UERLFReportContainer OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { HOReport-ExtIEs} } OPTIONAL, + ... +} + +HOReport-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +Hysteresis ::= INTEGER (0..30) + +-- I + +IAB-Authorized ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +IAB-Supported ::= ENUMERATED { + true, + ... +} + +IABNodeIndication ::= ENUMERATED { + true, + ... +} + +IMSVoiceSupportIndicator ::= ENUMERATED { + supported, + not-supported, + ... +} + +IndexToRFSP ::= INTEGER (1..256, ...) + +InfoOnRecommendedCellsAndRANNodesForPaging ::= SEQUENCE { + recommendedCellsForPaging RecommendedCellsForPaging, + recommendRANNodesForPaging RecommendedRANNodesForPaging, + iE-Extensions ProtocolExtensionContainer { {InfoOnRecommendedCellsAndRANNodesForPaging-ExtIEs} } OPTIONAL, + ... +} + +InfoOnRecommendedCellsAndRANNodesForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +IntegrityProtectionIndication ::= ENUMERATED { + required, + preferred, + not-needed, + ... +} + +IntegrityProtectionResult ::= ENUMERATED { + performed, + not-performed, + ... +} + +IntendedNumberOfPagingAttempts ::= INTEGER (1..16, ...) + +InterfacesToTrace ::= BIT STRING (SIZE(8)) + +ImmediateMDTNr ::= SEQUENCE { + measurementsToActivate MeasurementsToActivate, + m1Configuration M1Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the first bit set to 1 + m4Configuration M4Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the third bit set to 1 + m5Configuration M5Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the fourth bit set to 1 + m6Configuration M6Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the fifth bit set to 1 + m7Configuration M7Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the sixth bit set to 1 + bluetoothMeasurementConfiguration BluetoothMeasurementConfiguration OPTIONAL, + wLANMeasurementConfiguration WLANMeasurementConfiguration OPTIONAL, + mDT-Location-Info MDT-Location-Info OPTIONAL, + sensorMeasurementConfiguration SensorMeasurementConfiguration OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ImmediateMDTNr-ExtIEs} } OPTIONAL, + ... +} + +ImmediateMDTNr-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +InterSystemFailureIndication ::= SEQUENCE { + uERLFReportContainer UERLFReportContainer OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { InterSystemFailureIndication-ExtIEs} } OPTIONAL, + ... +} + +InterSystemFailureIndication-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONConfigurationTransfer ::= SEQUENCE { + transferType IntersystemSONTransferType, + intersystemSONInformation IntersystemSONInformation, + iE-Extensions ProtocolExtensionContainer { { IntersystemSONConfigurationTransfer-ExtIEs} } OPTIONAL, + ... +} + +IntersystemSONConfigurationTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONTransferType ::= CHOICE { + fromEUTRANtoNGRAN FromEUTRANtoNGRAN, + fromNGRANtoEUTRAN FromNGRANtoEUTRAN, + choice-Extensions ProtocolIE-SingleContainer { { IntersystemSONTransferType-ExtIEs} } +} +IntersystemSONTransferType-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +IntersystemSONeNBID ::= SEQUENCE { + globaleNBID GlobalENB-ID, + selectedEPSTAI EPS-TAI, + iE-Extensions ProtocolExtensionContainer { { IntersystemSONeNBID-ExtIEs} } OPTIONAL, + ... +} + +IntersystemSONeNBID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONNGRANnodeID ::= SEQUENCE { + globalRANNodeID GlobalRANNodeID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { { IntersystemSONNGRANnodeID-ExtIEs} } OPTIONAL, + ... +} + +IntersystemSONNGRANnodeID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONInformation ::= CHOICE { + intersystemSONInformationReport IntersystemSONInformationReport, + choice-Extensions ProtocolIE-SingleContainer { { IntersystemSONInformation-ExtIEs} } +} + +IntersystemSONInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +IntersystemSONInformationReport::= CHOICE { + hOReportInformation InterSystemHOReport, + failureIndicationInformation InterSystemFailureIndication, + choice-Extensions ProtocolIE-SingleContainer { { IntersystemSONInformationReport-ExtIEs} } +} + +IntersystemSONInformationReport-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +InterSystemHOReport ::= SEQUENCE { + handoverReportType InterSystemHandoverReportType, + iE-Extensions ProtocolExtensionContainer { { InterSystemHOReport-ExtIEs} } OPTIONAL, + ... +} + +InterSystemHOReport-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +InterSystemHandoverReportType ::= CHOICE { + tooearlyIntersystemHO TooearlyIntersystemHO, + intersystemUnnecessaryHO IntersystemUnnecessaryHO, + choice-Extensions ProtocolIE-SingleContainer { { InterSystemHandoverReportType-ExtIEs} } +} + +InterSystemHandoverReportType-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +IntersystemUnnecessaryHO ::= SEQUENCE { + sourcecellID NGRAN-CGI, + targetcellID EUTRA-CGI, + earlyIRATHO ENUMERATED {true, false, ...}, + candidateCellList CandidateCellList, + iE-Extensions ProtocolExtensionContainer { { IntersystemUnnecessaryHO-ExtIEs} } OPTIONAL, + ... +} + +IntersystemUnnecessaryHO-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- J +-- K +-- L + +LAC ::= OCTET STRING (SIZE (2)) + +LAI ::= SEQUENCE { + pLMNidentity PLMNIdentity, + lAC LAC, + iE-Extensions ProtocolExtensionContainer { {LAI-ExtIEs} } OPTIONAL, + ... +} + +LAI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LastVisitedCellInformation ::= CHOICE { + nGRANCell LastVisitedNGRANCellInformation, + eUTRANCell LastVisitedEUTRANCellInformation, + uTRANCell LastVisitedUTRANCellInformation, + gERANCell LastVisitedGERANCellInformation, + choice-Extensions ProtocolIE-SingleContainer { {LastVisitedCellInformation-ExtIEs} } +} + +LastVisitedCellInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +LastVisitedCellItem ::= SEQUENCE { + lastVisitedCellInformation LastVisitedCellInformation, + iE-Extensions ProtocolExtensionContainer { {LastVisitedCellItem-ExtIEs} } OPTIONAL, + ... +} + +LastVisitedCellItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LastVisitedEUTRANCellInformation ::= OCTET STRING + +LastVisitedGERANCellInformation ::= OCTET STRING + +LastVisitedNGRANCellInformation::= SEQUENCE { + globalCellID NGRAN-CGI, + cellType CellType, + timeUEStayedInCell TimeUEStayedInCell, + timeUEStayedInCellEnhancedGranularity TimeUEStayedInCellEnhancedGranularity OPTIONAL, + hOCauseValue Cause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {LastVisitedNGRANCellInformation-ExtIEs} } OPTIONAL, + ... +} + +LastVisitedNGRANCellInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LastVisitedUTRANCellInformation ::= OCTET STRING + +LineType ::= ENUMERATED { + dsl, + pon, + ... +} + + +LocationReportingAdditionalInfo ::= ENUMERATED { + includePSCell, + ... +} + +LocationReportingReferenceID ::= INTEGER (1..64, ...) + +LocationReportingRequestType ::= SEQUENCE { + eventType EventType, + reportArea ReportArea, + areaOfInterestList AreaOfInterestList OPTIONAL, + locationReportingReferenceIDToBeCancelled LocationReportingReferenceID OPTIONAL, +-- The above IE shall be present if the event type is set to stop reporting UE presence in the area of interest + iE-Extensions ProtocolExtensionContainer { {LocationReportingRequestType-ExtIEs} } OPTIONAL, + ... +} + +LocationReportingRequestType-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-LocationReportingAdditionalInfo CRITICALITY ignore EXTENSION LocationReportingAdditionalInfo PRESENCE optional }, + ... +} + +LoggedMDTNr ::= SEQUENCE { + loggingInterval LoggingInterval, + loggingDuration LoggingDuration, + loggedMDTTrigger LoggedMDTTrigger, + bluetoothMeasurementConfiguration BluetoothMeasurementConfiguration OPTIONAL, + wLANMeasurementConfiguration WLANMeasurementConfiguration OPTIONAL, + sensorMeasurementConfiguration SensorMeasurementConfiguration OPTIONAL, + areaScopeOfNeighCellsList AreaScopeOfNeighCellsList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {LoggedMDTNr-ExtIEs} } OPTIONAL, + ... +} + +LoggedMDTNr-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LoggingInterval ::= ENUMERATED { + ms320, ms640, ms1280, ms2560, ms5120, ms10240, ms20480, ms30720, ms40960, ms61440, + infinity, + ... +} + +LoggingDuration ::= ENUMERATED {m10, m20, m40, m60, m90, m120, ...} + +Links-to-log ::= ENUMERATED { + uplink, + downlink, + both-uplink-and-downlink, + ... +} + +LoggedMDTTrigger ::= CHOICE{ + periodical NULL, + eventTrigger EventTrigger, + choice-Extensions ProtocolIE-SingleContainer { {LoggedMDTTrigger-ExtIEs} } +} + +LoggedMDTTrigger-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +LTEM-Indication ::= ENUMERATED {lte-m,...} + +LTEUERLFReportContainer ::= OCTET STRING + +LTEV2XServicesAuthorized ::= SEQUENCE { + vehicleUE VehicleUE OPTIONAL, + pedestrianUE PedestrianUE OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {LTEV2XServicesAuthorized-ExtIEs} } OPTIONAL, + ... +} + +LTEV2XServicesAuthorized-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LTEUESidelinkAggregateMaximumBitrate ::= SEQUENCE { + uESidelinkAggregateMaximumBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { {LTEUE-Sidelink-Aggregate-MaximumBitrates-ExtIEs} } OPTIONAL, + ... +} + +LTEUE-Sidelink-Aggregate-MaximumBitrates-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- M + +MaskedIMEISV ::= BIT STRING (SIZE(64)) + +MaximumDataBurstVolume ::= INTEGER (0..4095, ..., 4096.. 2000000) + +MessageIdentifier ::= BIT STRING (SIZE(16)) + +MaximumIntegrityProtectedDataRate ::= ENUMERATED { + bitrate64kbs, + maximum-UE-rate, + ... +} + +MicoAllPLMN ::= ENUMERATED { + true, + ... +} + + +MICOModeIndication ::= ENUMERATED { + true, + ... +} + +MobilityInformation ::= BIT STRING (SIZE(16)) + +MobilityRestrictionList ::= SEQUENCE { + servingPLMN PLMNIdentity, + equivalentPLMNs EquivalentPLMNs OPTIONAL, + rATRestrictions RATRestrictions OPTIONAL, + forbiddenAreaInformation ForbiddenAreaInformation OPTIONAL, + serviceAreaInformation ServiceAreaInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {MobilityRestrictionList-ExtIEs} } OPTIONAL, + ... +} + +MobilityRestrictionList-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-LastEUTRAN-PLMNIdentity CRITICALITY ignore EXTENSION PLMNIdentity PRESENCE optional }| + { ID id-CNTypeRestrictionsForServing CRITICALITY ignore EXTENSION CNTypeRestrictionsForServing PRESENCE optional }| + { ID id-CNTypeRestrictionsForEquivalent CRITICALITY ignore EXTENSION CNTypeRestrictionsForEquivalent PRESENCE optional }| + { ID id-NPN-MobilityInformation CRITICALITY reject EXTENSION NPN-MobilityInformation PRESENCE optional }, + ... +} + +MDTPLMNList ::= SEQUENCE (SIZE(1..maxnoofMDTPLMNs)) OF PLMNIdentity + +MDT-Configuration ::= SEQUENCE { + mdt-Config-NR MDT-Configuration-NR OPTIONAL, + mdt-Config-EUTRA MDT-Configuration-EUTRA OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { MDT-Configuration-ExtIEs} } OPTIONAL, + ... +} + +MDT-Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-Configuration-NR ::= SEQUENCE { + mdt-Activation MDT-Activation, + areaScopeOfMDT AreaScopeOfMDT-NR, + mDTModeNr MDTModeNr, + signallingBasedMDTPLMNList MDTPLMNList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { MDT-Configuration-NR-ExtIEs} } OPTIONAL, + ... +} + +MDT-Configuration-NR-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-Configuration-EUTRA ::= SEQUENCE { + mdt-Activation MDT-Activation, + areaScopeOfMDT AreaScopeOfMDT-EUTRA, + mDTMode MDTModeEutra, + signallingBasedMDTPLMNList MDTPLMNList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { MDT-Configuration-EUTRA-ExtIEs} } OPTIONAL, + ... +} + +MDT-Configuration-EUTRA-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-Activation ::= ENUMERATED { + immediate-MDT-only, + logged-MDT-only, + immediate-MDT-and-Trace, + ... +} + +MDTModeNr ::= CHOICE { + immediateMDTNr ImmediateMDTNr, + loggedMDTNr LoggedMDTNr, + choice-Extensions ProtocolIE-SingleContainer { {MDTModeNr-ExtIEs} } +} + +MDTModeNr-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +MDTModeEutra ::= OCTET STRING + +MeasurementsToActivate ::= BIT STRING(SIZE(8)) + +M1Configuration ::= SEQUENCE { + m1reportingTrigger M1ReportingTrigger, + m1thresholdEventA2 M1ThresholdEventA2 OPTIONAL, +-- The above IE shall be present if the M1 Reporting Trigger IE is set to A2event-triggered or A2event-triggered periodic + m1periodicReporting M1PeriodicReporting OPTIONAL, +-- The above IE shall be present if the M1 Reporting Trigger IE is set to periodic or A2event-triggered periodic + iE-Extensions ProtocolExtensionContainer { { M1Configuration-ExtIEs} } OPTIONAL, + ... +} + +M1Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M1ReportingTrigger ::= ENUMERATED{ + periodic, + a2eventtriggered, + a2eventtriggered-periodic, + ... +} + +M1ThresholdEventA2 ::= SEQUENCE { + m1ThresholdType M1ThresholdType, + iE-Extensions ProtocolExtensionContainer { { M1ThresholdEventA2-ExtIEs} } OPTIONAL, + ... +} + +M1ThresholdEventA2-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M1ThresholdType ::= CHOICE { + threshold-RSRP Threshold-RSRP, + threshold-RSRQ Threshold-RSRQ, + threshold-SINR Threshold-SINR, + choice-Extensions ProtocolIE-SingleContainer { {M1ThresholdType-ExtIEs} } +} + +M1ThresholdType-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +M1PeriodicReporting ::= SEQUENCE { + reportInterval ReportIntervalMDT, + reportAmount ReportAmountMDT, + iE-Extensions ProtocolExtensionContainer { { M1PeriodicReporting-ExtIEs} } OPTIONAL, + ... +} + +M1PeriodicReporting-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M4Configuration ::= SEQUENCE { + m4period M4period, + m4-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M4Configuration-ExtIEs} } OPTIONAL, + ... +} + +M4Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M4period ::= ENUMERATED {ms1024, ms2048, ms5120, ms10240, min1, ... } + +M5Configuration ::= SEQUENCE { + m5period M5period, + m5-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M5Configuration-ExtIEs} } OPTIONAL, + ... +} + +M5Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M5period ::= ENUMERATED {ms1024, ms2048, ms5120, ms10240, min1, ... } + +M6Configuration ::= SEQUENCE { + m6report-Interval M6report-Interval, + m6-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M6Configuration-ExtIEs} } OPTIONAL, + ... +} + +M6Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M6report-Interval ::= ENUMERATED { + ms120, ms240, ms480, ms640, ms1024, ms2048, ms5120, ms10240, ms20480, ms40960, min1, min6, min12, min30, + ... +} + + +M7Configuration ::= SEQUENCE { + m7period M7period, + m7-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M7Configuration-ExtIEs} } OPTIONAL, + ... +} + +M7Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M7period ::= INTEGER(1..60, ...) + +MDT-Location-Info ::= SEQUENCE { + mDT-Location-Information MDT-Location-Information, + iE-Extensions ProtocolExtensionContainer { { MDT-Location-Info-ExtIEs} } OPTIONAL, + ... +} + +MDT-Location-Info-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-Location-Information::= BIT STRING (SIZE (8)) + +-- N + +N3IWF-ID ::= CHOICE { + n3IWF-ID BIT STRING (SIZE(16)), + choice-Extensions ProtocolIE-SingleContainer { {N3IWF-ID-ExtIEs} } +} + +N3IWF-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NAS-PDU ::= OCTET STRING + +NASSecurityParametersFromNGRAN ::= OCTET STRING + +NB-IoT-DefaultPagingDRX ::= ENUMERATED { + rf128, rf256, rf512, rf1024, + ... +} + +NB-IoT-PagingDRX ::= ENUMERATED { + rf32, rf64, rf128, rf256, rf512, rf1024, + ... +} + +NB-IoT-Paging-eDRXCycle ::= ENUMERATED { + hf2, hf4, hf6, hf8, hf10, hf12, hf14, hf16, hf32, hf64, hf128, hf256, hf512, hf1024, + ... +} + +NB-IoT-Paging-TimeWindow ::= ENUMERATED { + s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15, s16, + ... +} + +NB-IoT-Paging-eDRXInfo ::= SEQUENCE { + nB-IoT-Paging-eDRXCycle NB-IoT-Paging-eDRXCycle, + nB-IoT-Paging-TimeWindow NB-IoT-Paging-TimeWindow OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { NB-IoT-Paging-eDRXInfo-ExtIEs} } OPTIONAL, + ... +} + +NB-IoT-Paging-eDRXInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NB-IoT-UEPriority ::= INTEGER (0..255, ...) + +NetworkInstance ::= INTEGER (1..256, ...) + +NewSecurityContextInd ::= ENUMERATED { + true, + ... +} + +NextHopChainingCount ::= INTEGER (0..7) + +NextPagingAreaScope ::= ENUMERATED { + same, + changed, + ... +} + +NgENB-ID ::= CHOICE { + macroNgENB-ID BIT STRING (SIZE(20)), + shortMacroNgENB-ID BIT STRING (SIZE(18)), + longMacroNgENB-ID BIT STRING (SIZE(21)), + choice-Extensions ProtocolIE-SingleContainer { {NgENB-ID-ExtIEs} } +} + +NgENB-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NotifySourceNGRANNode ::= ENUMERATED { + notifySource, + ... +} + +NGRAN-CGI ::= CHOICE { + nR-CGI NR-CGI, + eUTRA-CGI EUTRA-CGI, + choice-Extensions ProtocolIE-SingleContainer { {NGRAN-CGI-ExtIEs} } +} + +NGRAN-CGI-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NGRAN-TNLAssociationToRemoveList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF NGRAN-TNLAssociationToRemoveItem + +NGRAN-TNLAssociationToRemoveItem::= SEQUENCE { + tNLAssociationTransportLayerAddress CPTransportLayerInformation, + tNLAssociationTransportLayerAddressAMF CPTransportLayerInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { NGRAN-TNLAssociationToRemoveItem-ExtIEs} } OPTIONAL +} + +NGRAN-TNLAssociationToRemoveItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NGRANTraceID ::= OCTET STRING (SIZE(8)) + +NID ::= BIT STRING (SIZE(44)) + +NonDynamic5QIDescriptor ::= SEQUENCE { + fiveQI FiveQI, + priorityLevelQos PriorityLevelQos OPTIONAL, + averagingWindow AveragingWindow OPTIONAL, + maximumDataBurstVolume MaximumDataBurstVolume OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {NonDynamic5QIDescriptor-ExtIEs} } OPTIONAL, + ... +} + +NonDynamic5QIDescriptor-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CNPacketDelayBudgetDL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-CNPacketDelayBudgetUL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }, + ... +} + +NotAllowedTACs ::= SEQUENCE (SIZE(1..maxnoofAllowedAreas)) OF TAC + +NotificationCause ::= ENUMERATED { + fulfilled, + not-fulfilled, + ... +} + +NotificationControl ::= ENUMERATED { + notification-requested, + ... +} + +NPN-AccessInformation ::= CHOICE { + pNI-NPN-Access-Information CellCAGList, + choice-Extensions ProtocolIE-SingleContainer { {NPN-AccessInformation-ExtIEs} } +} + +NPN-AccessInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NPN-MobilityInformation ::= CHOICE { + sNPN-MobilityInformation SNPN-MobilityInformation, + pNI-NPN-MobilityInformation PNI-NPN-MobilityInformation, + choice-Extensions ProtocolIE-SingleContainer { {NPN-MobilityInformation-ExtIEs} } +} + +NPN-MobilityInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + + +NPN-PagingAssistanceInformation ::= CHOICE { + pNI-NPN-PagingAssistance Allowed-PNI-NPN-List, + choice-Extensions ProtocolIE-SingleContainer { {NPN-PagingAssistanceInformation-ExtIEs} } +} + +NPN-PagingAssistanceInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NPN-Support ::= CHOICE { + sNPN NID, + choice-Extensions ProtocolIE-SingleContainer { {NPN-Support-ExtIEs} } +} + +NPN-Support-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NRCellIdentity ::= BIT STRING (SIZE(36)) + +NR-CGI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + nRCellIdentity NRCellIdentity, + iE-Extensions ProtocolExtensionContainer { {NR-CGI-ExtIEs} } OPTIONAL, + ... +} + +NR-CGI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NR-CGIList ::= SEQUENCE (SIZE(1..maxnoofCellsingNB)) OF NR-CGI + +NR-CGIListForWarning ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF NR-CGI + +NRencryptionAlgorithms ::= BIT STRING (SIZE(16, ...)) + +NRintegrityProtectionAlgorithms ::= BIT STRING (SIZE(16, ...)) + +NRMobilityHistoryReport ::= OCTET STRING + +NRPPa-PDU ::= OCTET STRING + +NRUERLFReportContainer ::= OCTET STRING + +NumberOfBroadcasts ::= INTEGER (0..65535) + +NumberOfBroadcastsRequested ::= INTEGER (0..65535) + +NRARFCN ::= INTEGER (0.. maxNRARFCN) + +NRFrequencyBand ::= INTEGER (1..1024, ...) + +NRFrequencyBand-List ::= SEQUENCE (SIZE(1..maxnoofNRCellBands)) OF NRFrequencyBandItem + +NRFrequencyBandItem ::= SEQUENCE { + nr-frequency-band NRFrequencyBand, + iE-Extension ProtocolExtensionContainer { {NRFrequencyBandItem-ExtIEs} } OPTIONAL, + ... +} + +NRFrequencyBandItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NRFrequencyInfo ::= SEQUENCE { + nrARFCN NRARFCN, + frequencyBand-List NRFrequencyBand-List, + iE-Extension ProtocolExtensionContainer { {NRFrequencyInfo-ExtIEs} } OPTIONAL, + ... +} + +NRFrequencyInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NR-PCI ::= INTEGER (0..1007, ...) + +NRV2XServicesAuthorized ::= SEQUENCE { + vehicleUE VehicleUE OPTIONAL, + pedestrianUE PedestrianUE OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {NRV2XServicesAuthorized-ExtIEs} } OPTIONAL, + ... +} + +NRV2XServicesAuthorized-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +VehicleUE ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +PedestrianUE ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +NRUESidelinkAggregateMaximumBitrate ::= SEQUENCE { + uESidelinkAggregateMaximumBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { {NRUESidelinkAggregateMaximumBitrate-ExtIEs} } OPTIONAL, + ... +} + +NRUESidelinkAggregateMaximumBitrate-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- O + +OverloadAction ::= ENUMERATED { + reject-non-emergency-mo-dt, + reject-rrc-cr-signalling, + permit-emergency-sessions-and-mobile-terminated-services-only, + permit-high-priority-sessions-and-mobile-terminated-services-only, + ... +} + +OverloadResponse ::= CHOICE { + overloadAction OverloadAction, + choice-Extensions ProtocolIE-SingleContainer { {OverloadResponse-ExtIEs} } +} + +OverloadResponse-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +OverloadStartNSSAIList ::= SEQUENCE (SIZE (1..maxnoofSliceItems)) OF OverloadStartNSSAIItem + +OverloadStartNSSAIItem ::= SEQUENCE { + sliceOverloadList SliceOverloadList, + sliceOverloadResponse OverloadResponse OPTIONAL, + sliceTrafficLoadReductionIndication TrafficLoadReductionIndication OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {OverloadStartNSSAIItem-ExtIEs} } OPTIONAL, + ... +} + +OverloadStartNSSAIItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- P + +PacketDelayBudget ::= INTEGER (0..1023, ...) + +PacketErrorRate ::= SEQUENCE { + pERScalar INTEGER (0..9, ...), + pERExponent INTEGER (0..9, ...), + iE-Extensions ProtocolExtensionContainer { {PacketErrorRate-ExtIEs} } OPTIONAL, + ... +} + +PacketErrorRate-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PacketLossRate ::= INTEGER (0..1000, ...) + +PagingAssisDataforCEcapabUE ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + coverageEnhancementLevel CoverageEnhancementLevel, + iE-Extensions ProtocolExtensionContainer { { PagingAssisDataforCEcapabUE-ExtIEs} } OPTIONAL, + ... +} + +PagingAssisDataforCEcapabUE-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PagingAttemptInformation ::= SEQUENCE { + pagingAttemptCount PagingAttemptCount, + intendedNumberOfPagingAttempts IntendedNumberOfPagingAttempts, + nextPagingAreaScope NextPagingAreaScope OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PagingAttemptInformation-ExtIEs} } OPTIONAL, + ... +} + +PagingAttemptInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PagingAttemptCount ::= INTEGER (1..16, ...) + +PagingDRX ::= ENUMERATED { + v32, + v64, + v128, + v256, + ... +} + +PagingOrigin ::= ENUMERATED { + non-3gpp, + ... +} + +PagingPriority ::= ENUMERATED { + priolevel1, + priolevel2, + priolevel3, + priolevel4, + priolevel5, + priolevel6, + priolevel7, + priolevel8, + ... +} + +PagingeDRXInformation ::= SEQUENCE { + paging-eDRX-Cycle Paging-eDRX-Cycle, + paging-Time-Window Paging-Time-Window OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PagingeDRXInformation-ExtIEs} } OPTIONAL, + ... +} + +PagingeDRXInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Paging-eDRX-Cycle ::= ENUMERATED { + hfhalf, hf1, hf2, hf4, hf6, + hf8, hf10, hf12, hf14, hf16, + hf32, hf64, hf128, hf256, + ... +} + + +Paging-Time-Window ::= ENUMERATED { + s1, s2, s3, s4, s5, + s6, s7, s8, s9, s10, + s11, s12, s13, s14, s15, s16, + ... +} + +PagingProbabilityInformation ::= ENUMERATED { + p00, p05, p10, p15, p20, p25, p30, p35, p40, p45, p50, p55, p60, p65, p70, p75, p80, p85, p90, p95, p100, + ... +} + +PathSwitchRequestAcknowledgeTransfer ::= SEQUENCE { + uL-NGU-UP-TNLInformation UPTransportLayerInformation OPTIONAL, + securityIndication SecurityIndication OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PathSwitchRequestAcknowledgeTransfer-ExtIEs} } OPTIONAL, + ... +} + +PathSwitchRequestAcknowledgeTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }| + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalRedundantNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }| + { ID id-QosFlowParametersList CRITICALITY ignore EXTENSION QosFlowParametersList PRESENCE optional }, + ... +} + +PathSwitchRequestSetupFailedTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PathSwitchRequestSetupFailedTransfer-ExtIEs} } OPTIONAL, + ... +} + +PathSwitchRequestSetupFailedTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PathSwitchRequestTransfer ::= SEQUENCE { + dL-NGU-UP-TNLInformation UPTransportLayerInformation, + dL-NGU-TNLInformationReused DL-NGU-TNLInformationReused OPTIONAL, + userPlaneSecurityInformation UserPlaneSecurityInformation OPTIONAL, + qosFlowAcceptedList QosFlowAcceptedList, + iE-Extensions ProtocolExtensionContainer { {PathSwitchRequestTransfer-ExtIEs} } OPTIONAL, + ... +} + +PathSwitchRequestTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-RedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-RedundantDL-NGU-TNLInformationReused CRITICALITY ignore EXTENSION DL-NGU-TNLInformationReused PRESENCE optional }| + { ID id-AdditionalRedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-UsedRSNInformation CRITICALITY ignore EXTENSION RedundantPDUSessionInformation PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore EXTENSION GlobalRANNodeID PRESENCE optional }, + ... +} + +PathSwitchRequestUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PathSwitchRequestUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +PathSwitchRequestUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PC5QoSParameters ::= SEQUENCE { + pc5QoSFlowList PC5QoSFlowList, + pc5LinkAggregateBitRates BitRate OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PC5QoSParameters-ExtIEs} } OPTIONAL, + ... +} + +PC5QoSParameters-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PC5QoSFlowList ::= SEQUENCE (SIZE(1..maxnoofPC5QoSFlows)) OF PC5QoSFlowItem + +PC5QoSFlowItem::= SEQUENCE { + pQI FiveQI, + pc5FlowBitRates PC5FlowBitRates OPTIONAL, + range Range OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PC5QoSFlowItem-ExtIEs} } OPTIONAL, + ... +} + +PC5QoSFlowItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PC5FlowBitRates ::= SEQUENCE { + guaranteedFlowBitRate BitRate, + maximumFlowBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { { PC5FlowBitRates-ExtIEs} } OPTIONAL, + ... +} + +PC5FlowBitRates-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +PCIListForMDT ::= SEQUENCE (SIZE(1.. maxnoofNeighPCIforMDT)) OF NR-PCI + +PrivacyIndicator ::= ENUMERATED { + immediate-MDT, + logged-MDT, + ... +} + +PDUSessionAggregateMaximumBitRate ::= SEQUENCE { + pDUSessionAggregateMaximumBitRateDL BitRate, + pDUSessionAggregateMaximumBitRateUL BitRate, + iE-Extensions ProtocolExtensionContainer { {PDUSessionAggregateMaximumBitRate-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionAggregateMaximumBitRate-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionID ::= INTEGER (0..255) + +PDUSessionResourceAdmittedList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceAdmittedItem + +PDUSessionResourceAdmittedItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverRequestAcknowledgeTransfer OCTET STRING (CONTAINING HandoverRequestAcknowledgeTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceAdmittedItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceAdmittedItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToModifyListModCfm ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToModifyItemModCfm + +PDUSessionResourceFailedToModifyItemModCfm ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyIndicationUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyIndicationUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToModifyItemModCfm-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToModifyItemModCfm-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToModifyListModRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToModifyItemModRes + +PDUSessionResourceFailedToModifyItemModRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToModifyItemModRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToModifyItemModRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToResumeListRESReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToResumeItemRESReq + +PDUSessionResourceFailedToResumeItemRESReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToResumeItemRESReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToResumeItemRESReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +PDUSessionResourceFailedToResumeListRESRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToResumeItemRESRes + +PDUSessionResourceFailedToResumeItemRESRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToResumeItemRESRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToResumeItemRESRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListCxtFail ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemCxtFail + +PDUSessionResourceFailedToSetupItemCxtFail ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemCxtFail-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemCxtFail-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListCxtRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemCxtRes + +PDUSessionResourceFailedToSetupItemCxtRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemCxtRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemCxtRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListHOAck ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemHOAck + +PDUSessionResourceFailedToSetupItemHOAck ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverResourceAllocationUnsuccessfulTransfer OCTET STRING (CONTAINING HandoverResourceAllocationUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemHOAck-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemHOAck-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListPSReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemPSReq + +PDUSessionResourceFailedToSetupItemPSReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestSetupFailedTransfer OCTET STRING (CONTAINING PathSwitchRequestSetupFailedTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemPSReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemPSReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListSURes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemSURes + +PDUSessionResourceFailedToSetupItemSURes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemSURes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemSURes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceHandoverList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceHandoverItem + +PDUSessionResourceHandoverItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverCommandTransfer OCTET STRING (CONTAINING HandoverCommandTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceHandoverItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceHandoverItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceInformationList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceInformationItem + +PDUSessionResourceInformationItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + qosFlowInformationList QosFlowInformationList, + dRBsToQosFlowsMappingList DRBsToQosFlowsMappingList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceInformationItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceListCxtRelCpl ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceItemCxtRelCpl + +PDUSessionResourceItemCxtRelCpl ::= SEQUENCE { + pDUSessionID PDUSessionID, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceItemCxtRelCpl-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceItemCxtRelCpl-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PDUSessionResourceReleaseResponseTransfer CRITICALITY ignore EXTENSION OCTET STRING (CONTAINING PDUSessionResourceReleaseResponseTransfer) PRESENCE optional }, + ... +} + +PDUSessionResourceListCxtRelReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceItemCxtRelReq + +PDUSessionResourceItemCxtRelReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceItemCxtRelReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceItemCxtRelReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceListHORqd ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceItemHORqd + +PDUSessionResourceItemHORqd ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverRequiredTransfer OCTET STRING (CONTAINING HandoverRequiredTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceItemHORqd-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceItemHORqd-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyConfirmTransfer ::= SEQUENCE { + qosFlowModifyConfirmList QosFlowModifyConfirmList, + uLNGU-UP-TNLInformation UPTransportLayerInformation, + additionalNG-UUPTNLInformation UPTransportLayerInformationPairList OPTIONAL, + qosFlowFailedToModifyList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyConfirmTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyConfirmTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalRedundantNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }, + ... +} + +PDUSessionResourceModifyIndicationUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyIndicationUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyIndicationUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyRequestTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyRequestTransferIEs} }, + ... +} + +PDUSessionResourceModifyRequestTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-PDUSessionAggregateMaximumBitRate CRITICALITY reject TYPE PDUSessionAggregateMaximumBitRate PRESENCE optional }| + { ID id-UL-NGU-UP-TNLModifyList CRITICALITY reject TYPE UL-NGU-UP-TNLModifyList PRESENCE optional }| + { ID id-NetworkInstance CRITICALITY reject TYPE NetworkInstance PRESENCE optional }| + { ID id-QosFlowAddOrModifyRequestList CRITICALITY reject TYPE QosFlowAddOrModifyRequestList PRESENCE optional }| + { ID id-QosFlowToReleaseList CRITICALITY reject TYPE QosFlowListWithCause PRESENCE optional }| + { ID id-AdditionalUL-NGU-UP-TNLInformation CRITICALITY reject TYPE UPTransportLayerInformationList PRESENCE optional }| + { ID id-CommonNetworkInstance CRITICALITY ignore TYPE CommonNetworkInstance PRESENCE optional }| + { ID id-AdditionalRedundantUL-NGU-UP-TNLInformation CRITICALITY ignore TYPE UPTransportLayerInformationList PRESENCE optional }| + { ID id-RedundantCommonNetworkInstance CRITICALITY ignore TYPE CommonNetworkInstance PRESENCE optional }| + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore TYPE UPTransportLayerInformation PRESENCE optional }| + { ID id-SecurityIndication CRITICALITY ignore TYPE SecurityIndication PRESENCE optional }, + ... +} + +PDUSessionResourceModifyResponseTransfer ::= SEQUENCE { + dL-NGU-UP-TNLInformation UPTransportLayerInformation OPTIONAL, + uL-NGU-UP-TNLInformation UPTransportLayerInformation OPTIONAL, + qosFlowAddOrModifyResponseList QosFlowAddOrModifyResponseList OPTIONAL, + additionalDLQosFlowPerTNLInformation QosFlowPerTNLInformationList OPTIONAL, + qosFlowFailedToAddOrModifyList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyResponseTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyResponseTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }| + { ID id-RedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalRedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-AdditionalRedundantNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }, + ... +} + +PDUSessionResourceModifyIndicationTransfer ::= SEQUENCE { + dLQosFlowPerTNLInformation QosFlowPerTNLInformation, + additionalDLQosFlowPerTNLInformation QosFlowPerTNLInformationList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyIndicationTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyIndicationTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SecondaryRATUsageInformation CRITICALITY ignore EXTENSION SecondaryRATUsageInformation PRESENCE optional }| + { ID id-SecurityResult CRITICALITY ignore EXTENSION SecurityResult PRESENCE optional }| + { ID id-RedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformation PRESENCE optional }| + { ID id-AdditionalRedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore EXTENSION GlobalRANNodeID PRESENCE optional }, + ... +} + +PDUSessionResourceModifyListModCfm ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceModifyItemModCfm + +PDUSessionResourceModifyItemModCfm ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyConfirmTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyConfirmTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyItemModCfm-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyItemModCfm-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyListModInd ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceModifyItemModInd + +PDUSessionResourceModifyItemModInd ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyIndicationTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyIndicationTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyItemModInd-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyItemModInd-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyListModReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceModifyItemModReq + +PDUSessionResourceModifyItemModReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + nAS-PDU NAS-PDU OPTIONAL, + pDUSessionResourceModifyRequestTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyItemModReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyItemModReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-S-NSSAI CRITICALITY reject EXTENSION S-NSSAI PRESENCE optional }| + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceModifyListModRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceModifyItemModRes + +PDUSessionResourceModifyItemModRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyResponseTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyItemModRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyItemModRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + criticalityDiagnostics CriticalityDiagnostics OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceNotifyList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceNotifyItem + +PDUSessionResourceNotifyItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceNotifyTransfer OCTET STRING (CONTAINING PDUSessionResourceNotifyTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceNotifyItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceNotifyItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceNotifyReleasedTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceNotifyReleasedTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceNotifyReleasedTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SecondaryRATUsageInformation CRITICALITY ignore EXTENSION SecondaryRATUsageInformation PRESENCE optional }, + ... +} + +PDUSessionResourceNotifyTransfer ::= SEQUENCE { + qosFlowNotifyList QosFlowNotifyList OPTIONAL, + qosFlowReleasedList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceNotifyTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceNotifyTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SecondaryRATUsageInformation CRITICALITY ignore EXTENSION SecondaryRATUsageInformation PRESENCE optional }| + { ID id-QosFlowFeedbackList CRITICALITY ignore EXTENSION QosFlowFeedbackList PRESENCE optional }, + ... +} + +PDUSessionResourceReleaseCommandTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleaseCommandTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleaseCommandTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleasedListNot ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceReleasedItemNot + +PDUSessionResourceReleasedItemNot ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceNotifyReleasedTransfer OCTET STRING (CONTAINING PDUSessionResourceNotifyReleasedTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleasedItemNot-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleasedItemNot-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleasedListPSAck ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceReleasedItemPSAck + +PDUSessionResourceReleasedItemPSAck ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestUnsuccessfulTransfer OCTET STRING (CONTAINING PathSwitchRequestUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleasedItemPSAck-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleasedItemPSAck-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleasedListPSFail ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceReleasedItemPSFail + +PDUSessionResourceReleasedItemPSFail ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestUnsuccessfulTransfer OCTET STRING (CONTAINING PathSwitchRequestUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleasedItemPSFail-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleasedItemPSFail-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleasedListRelRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceReleasedItemRelRes + +PDUSessionResourceReleasedItemRelRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceReleaseResponseTransfer OCTET STRING (CONTAINING PDUSessionResourceReleaseResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleasedItemRelRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleasedItemRelRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleaseResponseTransfer ::= SEQUENCE { + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleaseResponseTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleaseResponseTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SecondaryRATUsageInformation CRITICALITY ignore EXTENSION SecondaryRATUsageInformation PRESENCE optional }, + ... +} + +PDUSessionResourceResumeListRESReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceResumeItemRESReq + +PDUSessionResourceResumeItemRESReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + uEContextResumeRequestTransfer OCTET STRING (CONTAINING UEContextResumeRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceResumeItemRESReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceResumeItemRESReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceResumeListRESRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceResumeItemRESRes + +PDUSessionResourceResumeItemRESRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + uEContextResumeResponseTransfer OCTET STRING (CONTAINING UEContextResumeResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceResumeItemRESRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceResumeItemRESRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSecondaryRATUsageList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSecondaryRATUsageItem + +PDUSessionResourceSecondaryRATUsageItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + secondaryRATDataUsageReportTransfer OCTET STRING (CONTAINING SecondaryRATDataUsageReportTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSecondaryRATUsageItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSecondaryRATUsageItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSetupListCxtReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemCxtReq + +PDUSessionResourceSetupItemCxtReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + nAS-PDU NAS-PDU OPTIONAL, + s-NSSAI S-NSSAI, + pDUSessionResourceSetupRequestTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemCxtReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemCxtReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceSetupListCxtRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemCxtRes + +PDUSessionResourceSetupItemCxtRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupResponseTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemCxtRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemCxtRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSetupListHOReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemHOReq + +PDUSessionResourceSetupItemHOReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + s-NSSAI S-NSSAI, + handoverRequestTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemHOReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemHOReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceSetupListSUReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemSUReq + +PDUSessionResourceSetupItemSUReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionNAS-PDU NAS-PDU OPTIONAL, + s-NSSAI S-NSSAI, + pDUSessionResourceSetupRequestTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemSUReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemSUReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceSetupListSURes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemSURes + +PDUSessionResourceSetupItemSURes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupResponseTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemSURes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemSURes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSetupRequestTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceSetupRequestTransferIEs} }, + ... +} + +PDUSessionResourceSetupRequestTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-PDUSessionAggregateMaximumBitRate CRITICALITY reject TYPE PDUSessionAggregateMaximumBitRate PRESENCE optional }| + { ID id-UL-NGU-UP-TNLInformation CRITICALITY reject TYPE UPTransportLayerInformation PRESENCE mandatory }| + { ID id-AdditionalUL-NGU-UP-TNLInformation CRITICALITY reject TYPE UPTransportLayerInformationList PRESENCE optional }| + { ID id-DataForwardingNotPossible CRITICALITY reject TYPE DataForwardingNotPossible PRESENCE optional }| + { ID id-PDUSessionType CRITICALITY reject TYPE PDUSessionType PRESENCE mandatory }| + { ID id-SecurityIndication CRITICALITY reject TYPE SecurityIndication PRESENCE optional }| + { ID id-NetworkInstance CRITICALITY reject TYPE NetworkInstance PRESENCE optional }| + { ID id-QosFlowSetupRequestList CRITICALITY reject TYPE QosFlowSetupRequestList PRESENCE mandatory }| + { ID id-CommonNetworkInstance CRITICALITY ignore TYPE CommonNetworkInstance PRESENCE optional }| + { ID id-DirectForwardingPathAvailability CRITICALITY ignore TYPE DirectForwardingPathAvailability PRESENCE optional }| + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore TYPE UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalRedundantUL-NGU-UP-TNLInformation CRITICALITY ignore TYPE UPTransportLayerInformationList PRESENCE optional }| + { ID id-RedundantCommonNetworkInstance CRITICALITY ignore TYPE CommonNetworkInstance PRESENCE optional }| + { ID id-RedundantPDUSessionInformation CRITICALITY ignore TYPE RedundantPDUSessionInformation PRESENCE optional }, + ... +} + +PDUSessionResourceSetupResponseTransfer ::= SEQUENCE { + dLQosFlowPerTNLInformation QosFlowPerTNLInformation, + additionalDLQosFlowPerTNLInformation QosFlowPerTNLInformationList OPTIONAL, + securityResult SecurityResult OPTIONAL, + qosFlowFailedToSetupList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupResponseTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupResponseTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-RedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformation PRESENCE optional }| + { ID id-AdditionalRedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-UsedRSNInformation CRITICALITY ignore EXTENSION RedundantPDUSessionInformation PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore EXTENSION GlobalRANNodeID PRESENCE optional }, + ... +} + +PDUSessionResourceSetupUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + criticalityDiagnostics CriticalityDiagnostics OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSuspendListSUSReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSuspendItemSUSReq + +PDUSessionResourceSuspendItemSUSReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + uEContextSuspendRequestTransfer OCTET STRING (CONTAINING UEContextSuspendRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSuspendItemSUSReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSuspendItemSUSReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSwitchedList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSwitchedItem + +PDUSessionResourceSwitchedItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestAcknowledgeTransfer OCTET STRING (CONTAINING PathSwitchRequestAcknowledgeTransfer), + iE-Extensions ProtocolExtensionContainer { { PDUSessionResourceSwitchedItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSwitchedItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceToBeSwitchedDLList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceToBeSwitchedDLItem + +PDUSessionResourceToBeSwitchedDLItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestTransfer OCTET STRING (CONTAINING PathSwitchRequestTransfer), + iE-Extensions ProtocolExtensionContainer { { PDUSessionResourceToBeSwitchedDLItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceToBeSwitchedDLItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceToReleaseListHOCmd ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceToReleaseItemHOCmd + +PDUSessionResourceToReleaseItemHOCmd ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverPreparationUnsuccessfulTransfer OCTET STRING (CONTAINING HandoverPreparationUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceToReleaseItemHOCmd-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceToReleaseItemHOCmd-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceToReleaseListRelCmd ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceToReleaseItemRelCmd + +PDUSessionResourceToReleaseItemRelCmd ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceReleaseCommandTransfer OCTET STRING (CONTAINING PDUSessionResourceReleaseCommandTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceToReleaseItemRelCmd-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceToReleaseItemRelCmd-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} +PDUSessionType ::= ENUMERATED { + ipv4, + ipv6, + ipv4v6, + ethernet, + unstructured, + ... +} + +PDUSessionUsageReport ::= SEQUENCE { + rATType ENUMERATED {nr, eutra, ..., nr-unlicensed, e-utra-unlicensed}, + pDUSessionTimedReportList VolumeTimedReportList, + iE-Extensions ProtocolExtensionContainer { {PDUSessionUsageReport-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionUsageReport-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Periodicity ::= INTEGER (0..640000, ...) + +PeriodicRegistrationUpdateTimer ::= BIT STRING (SIZE(8)) + +PLMNIdentity ::= OCTET STRING (SIZE(3)) + +PLMNSupportList ::= SEQUENCE (SIZE(1..maxnoofPLMNs)) OF PLMNSupportItem + +PLMNSupportItem ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + sliceSupportList SliceSupportList, + iE-Extensions ProtocolExtensionContainer { {PLMNSupportItem-ExtIEs} } OPTIONAL, + ... +} + +PLMNSupportItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-NPN-Support CRITICALITY reject EXTENSION NPN-Support PRESENCE optional }| + { ID id-ExtendedSliceSupportList CRITICALITY reject EXTENSION ExtendedSliceSupportList PRESENCE optional }, + ... +} + +PNI-NPN-MobilityInformation ::= SEQUENCE { + allowed-PNI-NPI-List Allowed-PNI-NPN-List, + iE-Extensions ProtocolExtensionContainer { {PNI-NPN-MobilityInformation-ExtIEs} } OPTIONAL, + ... +} + +PNI-NPN-MobilityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PortNumber ::= OCTET STRING (SIZE(2)) + +Pre-emptionCapability ::= ENUMERATED { + shall-not-trigger-pre-emption, + may-trigger-pre-emption, + ... +} + +Pre-emptionVulnerability ::= ENUMERATED { + not-pre-emptable, + pre-emptable, + ... +} + +PriorityLevelARP ::= INTEGER (1..15) + +PriorityLevelQos ::= INTEGER (1..127, ...) + +PWSFailedCellIDList ::= CHOICE { + eUTRA-CGI-PWSFailedList EUTRA-CGIList, + nR-CGI-PWSFailedList NR-CGIList, + choice-Extensions ProtocolIE-SingleContainer { {PWSFailedCellIDList-ExtIEs} } +} + +PWSFailedCellIDList-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +-- Q + +QosCharacteristics ::= CHOICE { + nonDynamic5QI NonDynamic5QIDescriptor, + dynamic5QI Dynamic5QIDescriptor, + choice-Extensions ProtocolIE-SingleContainer { {QosCharacteristics-ExtIEs} } +} + +QosCharacteristics-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +QosFlowAcceptedList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowAcceptedItem + +QosFlowAcceptedItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + iE-Extensions ProtocolExtensionContainer { {QosFlowAcceptedItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowAcceptedItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetIndex PRESENCE optional }, + ... +} + +QosFlowAddOrModifyRequestList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowAddOrModifyRequestItem + +QosFlowAddOrModifyRequestItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + qosFlowLevelQosParameters QosFlowLevelQosParameters OPTIONAL, + e-RAB-ID E-RAB-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowAddOrModifyRequestItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowAddOrModifyRequestItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-TSCTrafficCharacteristics CRITICALITY ignore EXTENSION TSCTrafficCharacteristics PRESENCE optional }| + {ID id-RedundantQosFlowIndicator CRITICALITY ignore EXTENSION RedundantQosFlowIndicator PRESENCE optional }, + ... +} + +QosFlowAddOrModifyResponseList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowAddOrModifyResponseItem + +QosFlowAddOrModifyResponseItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + iE-Extensions ProtocolExtensionContainer { {QosFlowAddOrModifyResponseItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowAddOrModifyResponseItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetIndex PRESENCE optional }, + ... +} + +QosFlowFeedbackList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowFeedbackItem + +QosFlowFeedbackItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + updateFeedback UpdateFeedback OPTIONAL, + cNpacketDelayBudgetDL ExtendedPacketDelayBudget OPTIONAL, + cNpacketDelayBudgetUL ExtendedPacketDelayBudget OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowFeedbackItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowFeedbackItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowIdentifier ::= INTEGER (0..63, ...) + +QosFlowInformationList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowInformationItem + +QosFlowInformationItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + dLForwarding DLForwarding OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowInformationItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-ULForwarding CRITICALITY ignore EXTENSION ULForwarding PRESENCE optional}, + ... +} + +QosFlowLevelQosParameters ::= SEQUENCE { + qosCharacteristics QosCharacteristics, + allocationAndRetentionPriority AllocationAndRetentionPriority, + gBR-QosInformation GBR-QosInformation OPTIONAL, + reflectiveQosAttribute ReflectiveQosAttribute OPTIONAL, + additionalQosFlowInformation AdditionalQosFlowInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowLevelQosParameters-ExtIEs} } OPTIONAL, + ... +} + +QosFlowLevelQosParameters-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-QosMonitoringRequest CRITICALITY ignore EXTENSION QosMonitoringRequest PRESENCE optional}| + {ID id-QosMonitoringReportingFrequency CRITICALITY ignore EXTENSION QosMonitoringReportingFrequency PRESENCE optional}, + ... +} + + +QosMonitoringRequest ::= ENUMERATED {ul, dl, both, ..., stop} + +QosMonitoringReportingFrequency ::= INTEGER (1..1800, ...) + +QosFlowListWithCause ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowWithCauseItem + +QosFlowWithCauseItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {QosFlowWithCauseItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowWithCauseItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowModifyConfirmList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowModifyConfirmItem + +QosFlowModifyConfirmItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + iE-Extensions ProtocolExtensionContainer { {QosFlowModifyConfirmItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowModifyConfirmItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowNotifyList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowNotifyItem + +QosFlowNotifyItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + notificationCause NotificationCause, + iE-Extensions ProtocolExtensionContainer { {QosFlowNotifyItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowNotifyItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetNotifyIndex PRESENCE optional }, + ... +} +QosFlowParametersList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowParametersItem + +QosFlowParametersItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + alternativeQoSParaSetList AlternativeQoSParaSetList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowParametersItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowParametersItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CNPacketDelayBudgetDL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-CNPacketDelayBudgetUL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-BurstArrivalTimeDownlink CRITICALITY ignore EXTENSION BurstArrivalTime PRESENCE optional }, + ... +} + +QosFlowPerTNLInformation ::= SEQUENCE { + uPTransportLayerInformation UPTransportLayerInformation, + associatedQosFlowList AssociatedQosFlowList, + iE-Extensions ProtocolExtensionContainer { { QosFlowPerTNLInformation-ExtIEs} } OPTIONAL, + ... +} + +QosFlowPerTNLInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowPerTNLInformationList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivityMinusOne)) OF QosFlowPerTNLInformationItem + +QosFlowPerTNLInformationItem ::= SEQUENCE { + qosFlowPerTNLInformation QosFlowPerTNLInformation, + iE-Extensions ProtocolExtensionContainer { { QosFlowPerTNLInformationItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowPerTNLInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowSetupRequestList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowSetupRequestItem + +QosFlowSetupRequestItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + qosFlowLevelQosParameters QosFlowLevelQosParameters, + e-RAB-ID E-RAB-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowSetupRequestItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowSetupRequestItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-TSCTrafficCharacteristics CRITICALITY ignore EXTENSION TSCTrafficCharacteristics PRESENCE optional }| + {ID id-RedundantQosFlowIndicator CRITICALITY ignore EXTENSION RedundantQosFlowIndicator PRESENCE optional }, + ... +} + +QosFlowListWithDataForwarding ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowItemWithDataForwarding + +QosFlowItemWithDataForwarding ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + dataForwardingAccepted DataForwardingAccepted OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowItemWithDataForwarding-ExtIEs} } OPTIONAL, + ... +} + +QosFlowItemWithDataForwarding-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetIndex PRESENCE optional }, + ... +} + +QosFlowToBeForwardedList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowToBeForwardedItem + +QosFlowToBeForwardedItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + iE-Extensions ProtocolExtensionContainer { {QosFlowToBeForwardedItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowToBeForwardedItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QoSFlowsUsageReportList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QoSFlowsUsageReport-Item + +QoSFlowsUsageReport-Item ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + rATType ENUMERATED {nr, eutra, ..., nr-unlicensed, e-utra-unlicensed}, + qoSFlowsTimedReportList VolumeTimedReportList, + iE-Extensions ProtocolExtensionContainer { {QoSFlowsUsageReport-Item-ExtIEs} } OPTIONAL, + ... +} + +QoSFlowsUsageReport-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- R + +Range ::= ENUMERATED {m50, m80, m180, m200, m350, m400, m500, m700, m1000, ...} + +RANNodeName ::= PrintableString (SIZE(1..150, ...)) + +RANNodeNameVisibleString ::= VisibleString (SIZE(1..150, ...)) + +RANNodeNameUTF8String ::= UTF8String (SIZE(1..150, ...)) + +RANPagingPriority ::= INTEGER (1..256) + +RANStatusTransfer-TransparentContainer ::= SEQUENCE { + dRBsSubjectToStatusTransferList DRBsSubjectToStatusTransferList, + iE-Extensions ProtocolExtensionContainer { {RANStatusTransfer-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +RANStatusTransfer-TransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RAN-UE-NGAP-ID ::= INTEGER (0..4294967295) + +RAT-Information ::= ENUMERATED { + unlicensed, + nb-IoT, + ... +} + +RATRestrictions ::= SEQUENCE (SIZE(1..maxnoofEPLMNsPlusOne)) OF RATRestrictions-Item + +RATRestrictions-Item ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + rATRestrictionInformation RATRestrictionInformation, + iE-Extensions ProtocolExtensionContainer { {RATRestrictions-Item-ExtIEs} } OPTIONAL, + ... +} + +RATRestrictions-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-ExtendedRATRestrictionInformation CRITICALITY ignore EXTENSION ExtendedRATRestrictionInformation PRESENCE optional }, + ... +} + +RATRestrictionInformation ::= BIT STRING (SIZE(8, ...)) + +RecommendedCellsForPaging ::= SEQUENCE { + recommendedCellList RecommendedCellList, + iE-Extensions ProtocolExtensionContainer { {RecommendedCellsForPaging-ExtIEs} } OPTIONAL, + ... +} + +RecommendedCellsForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedCellList ::= SEQUENCE (SIZE(1..maxnoofRecommendedCells)) OF RecommendedCellItem + +RecommendedCellItem ::= SEQUENCE { + nGRAN-CGI NGRAN-CGI, + timeStayedInCell INTEGER (0..4095) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {RecommendedCellItem-ExtIEs} } OPTIONAL, + ... +} + +RecommendedCellItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedRANNodesForPaging ::= SEQUENCE { + recommendedRANNodeList RecommendedRANNodeList, + iE-Extensions ProtocolExtensionContainer { {RecommendedRANNodesForPaging-ExtIEs} } OPTIONAL, + ... +} + +RecommendedRANNodesForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedRANNodeList::= SEQUENCE (SIZE(1..maxnoofRecommendedRANNodes)) OF RecommendedRANNodeItem + +RecommendedRANNodeItem ::= SEQUENCE { + aMFPagingTarget AMFPagingTarget, + iE-Extensions ProtocolExtensionContainer { {RecommendedRANNodeItem-ExtIEs} } OPTIONAL, + ... +} + +RecommendedRANNodeItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RedirectionVoiceFallback ::= ENUMERATED { + possible, + not-possible, + ... +} + +RedundantPDUSessionInformation ::= SEQUENCE { + rSN RSN, + iE-Extensions ProtocolExtensionContainer { {RedundantPDUSessionInformation-ExtIEs} } OPTIONAL, + ... +} + +RedundantPDUSessionInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RedundantQosFlowIndicator ::= ENUMERATED {true, false} + +ReflectiveQosAttribute ::= ENUMERATED { + subject-to, + ... +} + +RelativeAMFCapacity ::= INTEGER (0..255) + +ReportArea ::= ENUMERATED { + cell, + ... +} + +RepetitionPeriod ::= INTEGER (0..131071) + +ResetAll ::= ENUMERATED { + reset-all, + ... +} + +ReportAmountMDT ::= ENUMERATED { + r1, r2, r4, r8, r16, r32, r64, rinfinity +} + +ReportIntervalMDT ::= ENUMERATED { + ms120, ms240, ms480, ms640, ms1024, ms2048, ms5120, ms10240, min1, min6, min12, min30, min60 +} + +ResetType ::= CHOICE { + nG-Interface ResetAll, + partOfNG-Interface UE-associatedLogicalNG-connectionList, + choice-Extensions ProtocolIE-SingleContainer { {ResetType-ExtIEs} } +} + +ResetType-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +RGLevelWirelineAccessCharacteristics ::= OCTET STRING + +RNC-ID ::= INTEGER (0..4095) + +RoutingID ::= OCTET STRING + +RRCContainer ::= OCTET STRING + +RRCEstablishmentCause ::= ENUMERATED { + emergency, + highPriorityAccess, + mt-Access, + mo-Signalling, + mo-Data, + mo-VoiceCall, + mo-VideoCall, + mo-SMS, + mps-PriorityAccess, + mcs-PriorityAccess, + ..., + notAvailable, + mo-ExceptionData +} + +RRCInactiveTransitionReportRequest ::= ENUMERATED { + subsequent-state-transition-report, + single-rrc-connected-state-report, + cancel-report, + ... +} + +RRCState ::= ENUMERATED { + inactive, + connected, + ... +} + +RSN ::= ENUMERATED {v1, v2, ...} + +RIMInformationTransfer ::= SEQUENCE { + targetRANNodeID TargetRANNodeID, + sourceRANNodeID SourceRANNodeID, + rIMInformation RIMInformation, + iE-Extensions ProtocolExtensionContainer { {RIMInformationTransfer-ExtIEs} } OPTIONAL, + ... +} + +RIMInformationTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +RIMInformation ::= SEQUENCE { + targetgNBSetID GNBSetID, + rIM-RSDetection ENUMERATED {rs-detected, rs-disappeared, ...}, + iE-Extensions ProtocolExtensionContainer { {RIMInformation-ExtIEs} } OPTIONAL, + ... +} + +RIMInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GNBSetID ::= BIT STRING (SIZE(22)) + +-- S + +ScheduledCommunicationTime ::= SEQUENCE { + dayofWeek BIT STRING (SIZE(7)) OPTIONAL, + timeofDayStart INTEGER (0..86399, ...) OPTIONAL, + timeofDayEnd INTEGER (0..86399, ...) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ScheduledCommunicationTime-ExtIEs}} OPTIONAL, + ... +} + +ScheduledCommunicationTime-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SCTP-TLAs ::= SEQUENCE (SIZE(1..maxnoofXnTLAs)) OF TransportLayerAddress + +SD ::= OCTET STRING (SIZE(3)) + +SecondaryRATUsageInformation ::= SEQUENCE { + pDUSessionUsageReport PDUSessionUsageReport OPTIONAL, + qosFlowsUsageReportList QoSFlowsUsageReportList OPTIONAL, + iE-Extension ProtocolExtensionContainer { {SecondaryRATUsageInformation-ExtIEs} } OPTIONAL, + ... +} + +SecondaryRATUsageInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SecondaryRATDataUsageReportTransfer ::= SEQUENCE { + secondaryRATUsageInformation SecondaryRATUsageInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SecondaryRATDataUsageReportTransfer-ExtIEs} } OPTIONAL, + ... +} + +SecondaryRATDataUsageReportTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SecurityContext ::= SEQUENCE { + nextHopChainingCount NextHopChainingCount, + nextHopNH SecurityKey, + iE-Extensions ProtocolExtensionContainer { {SecurityContext-ExtIEs} } OPTIONAL, + ... +} + +SecurityContext-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SecurityIndication ::= SEQUENCE { + integrityProtectionIndication IntegrityProtectionIndication, + confidentialityProtectionIndication ConfidentialityProtectionIndication, + maximumIntegrityProtectedDataRate-UL MaximumIntegrityProtectedDataRate OPTIONAL, +-- The above IE shall be present if integrity protection is required or preferred + iE-Extensions ProtocolExtensionContainer { {SecurityIndication-ExtIEs} } OPTIONAL, + ... +} + +SecurityIndication-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-MaximumIntegrityProtectedDataRate-DL CRITICALITY ignore EXTENSION MaximumIntegrityProtectedDataRate PRESENCE optional }, + ... +} + +SecurityKey ::= BIT STRING (SIZE(256)) + +SecurityResult ::= SEQUENCE { + integrityProtectionResult IntegrityProtectionResult, + confidentialityProtectionResult ConfidentialityProtectionResult, + iE-Extensions ProtocolExtensionContainer { {SecurityResult-ExtIEs} } OPTIONAL, + ... +} + +SecurityResult-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SensorMeasurementConfiguration ::= SEQUENCE { + sensorMeasConfig SensorMeasConfig, + sensorMeasConfigNameList SensorMeasConfigNameList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SensorMeasurementConfiguration-ExtIEs} } OPTIONAL, + ... +} + +SensorMeasurementConfiguration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SensorMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofSensorName)) OF SensorMeasConfigNameItem + +SensorMeasConfigNameItem ::= SEQUENCE { + sensorNameConfig SensorNameConfig, + iE-Extensions ProtocolExtensionContainer { { SensorMeasConfigNameItem-ExtIEs } } OPTIONAL, + ... +} + +SensorMeasConfigNameItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SensorMeasConfig::= ENUMERATED {setup,...} + +SensorNameConfig ::= CHOICE { + uncompensatedBarometricConfig ENUMERATED {true, ...}, + ueSpeedConfig ENUMERATED {true, ...}, + ueOrientationConfig ENUMERATED {true, ...}, + choice-Extensions ProtocolIE-SingleContainer { {SensorNameConfig-ExtIEs} } +} + +SensorNameConfig-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +SerialNumber ::= BIT STRING (SIZE(16)) + +ServedGUAMIList ::= SEQUENCE (SIZE(1..maxnoofServedGUAMIs)) OF ServedGUAMIItem + +ServedGUAMIItem ::= SEQUENCE { + gUAMI GUAMI, + backupAMFName AMFName OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ServedGUAMIItem-ExtIEs} } OPTIONAL, + ... +} + +ServedGUAMIItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-GUAMIType CRITICALITY ignore EXTENSION GUAMIType PRESENCE optional }, + ... +} + +ServiceAreaInformation ::= SEQUENCE (SIZE(1.. maxnoofEPLMNsPlusOne)) OF ServiceAreaInformation-Item + +ServiceAreaInformation-Item ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + allowedTACs AllowedTACs OPTIONAL, + notAllowedTACs NotAllowedTACs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ServiceAreaInformation-Item-ExtIEs} } OPTIONAL, + ... +} + +ServiceAreaInformation-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SgNB-UE-X2AP-ID ::= INTEGER (0..4294967295) + +SliceOverloadList ::= SEQUENCE (SIZE(1..maxnoofSliceItems)) OF SliceOverloadItem + +SliceOverloadItem ::= SEQUENCE { + s-NSSAI S-NSSAI, + iE-Extensions ProtocolExtensionContainer { {SliceOverloadItem-ExtIEs} } OPTIONAL, + ... +} + +SliceOverloadItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SliceSupportList ::= SEQUENCE (SIZE(1..maxnoofSliceItems)) OF SliceSupportItem + +SliceSupportItem ::= SEQUENCE { + s-NSSAI S-NSSAI, + iE-Extensions ProtocolExtensionContainer { {SliceSupportItem-ExtIEs} } OPTIONAL, + ... +} + +SliceSupportItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SNPN-MobilityInformation ::= SEQUENCE { + serving-NID NID, + iE-Extensions ProtocolExtensionContainer { {SNPN-MobilityInformation-ExtIEs} } OPTIONAL, + ... +} + +SNPN-MobilityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +S-NSSAI ::= SEQUENCE { + sST SST, + sD SD OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { S-NSSAI-ExtIEs} } OPTIONAL, + ... +} + +S-NSSAI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SONConfigurationTransfer ::= SEQUENCE { + targetRANNodeID TargetRANNodeID, + sourceRANNodeID SourceRANNodeID, + sONInformation SONInformation, + xnTNLConfigurationInfo XnTNLConfigurationInfo OPTIONAL, +-- The above IE shall be present if the SON Information IE contains the SON Information Request IE set to Xn TNL Configuration Info + iE-Extensions ProtocolExtensionContainer { {SONConfigurationTransfer-ExtIEs} } OPTIONAL, + ... +} + +SONConfigurationTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SONInformation ::= CHOICE { + sONInformationRequest SONInformationRequest, + sONInformationReply SONInformationReply, + choice-Extensions ProtocolIE-SingleContainer { {SONInformation-ExtIEs} } +} + +SONInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-SONInformationReport CRITICALITY ignore TYPE SONInformationReport PRESENCE mandatory }, + ... +} + +SONInformationReply ::= SEQUENCE { + xnTNLConfigurationInfo XnTNLConfigurationInfo OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SONInformationReply-ExtIEs} } OPTIONAL, + ... +} + +SONInformationReply-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SONInformationReport::= CHOICE { + failureIndicationInformation FailureIndication, + hOReportInformation HOReport, + choice-Extensions ProtocolIE-SingleContainer { { SONInformationReport-ExtIEs} } +} + +SONInformationReport-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +SONInformationRequest ::= ENUMERATED { + xn-TNL-configuration-info, + ... +} + +SourceNGRANNode-ToTargetNGRANNode-TransparentContainer ::= SEQUENCE { + rRCContainer RRCContainer, + pDUSessionResourceInformationList PDUSessionResourceInformationList OPTIONAL, + e-RABInformationList E-RABInformationList OPTIONAL, + targetCell-ID NGRAN-CGI, + indexToRFSP IndexToRFSP OPTIONAL, + uEHistoryInformation UEHistoryInformation, + iE-Extensions ProtocolExtensionContainer { {SourceNGRANNode-ToTargetNGRANNode-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +SourceNGRANNode-ToTargetNGRANNode-TransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SgNB-UE-X2AP-ID CRITICALITY ignore EXTENSION SgNB-UE-X2AP-ID PRESENCE optional }| + { ID id-UEHistoryInformationFromTheUE CRITICALITY ignore EXTENSION UEHistoryInformationFromTheUE PRESENCE optional }, + ... +} + +SourceOfUEActivityBehaviourInformation ::= ENUMERATED { + subscription-information, + statistics, + ... +} + +SourceRANNodeID ::= SEQUENCE { + globalRANNodeID GlobalRANNodeID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { {SourceRANNodeID-ExtIEs} } OPTIONAL, + ... +} + +SourceRANNodeID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SourceToTarget-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the source RAN node to the target RAN node. +-- The octets of the OCTET STRING are encoded according to the specifications of the target system. + +SourceToTarget-AMFInformationReroute ::= SEQUENCE { + configuredNSSAI ConfiguredNSSAI OPTIONAL, + rejectedNSSAIinPLMN RejectedNSSAIinPLMN OPTIONAL, + rejectedNSSAIinTA RejectedNSSAIinTA OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SourceToTarget-AMFInformationReroute-ExtIEs} } OPTIONAL, + ... +} + +SourceToTarget-AMFInformationReroute-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- This IE includes information from the source Core node to the target Core node for reroute information provide by NSSF. +-- The octets of the OCTET STRING are encoded according to the specifications of the Core network. + +SRVCCOperationPossible ::= ENUMERATED { + possible, + notPossible, + ... +} + +ConfiguredNSSAI ::= OCTET STRING (SIZE(128)) + +RejectedNSSAIinPLMN ::= OCTET STRING (SIZE(32)) + +RejectedNSSAIinTA ::= OCTET STRING (SIZE(32)) + +SST ::= OCTET STRING (SIZE(1)) + +SupportedTAList ::= SEQUENCE (SIZE(1..maxnoofTACs)) OF SupportedTAItem + +SupportedTAItem ::= SEQUENCE { + tAC TAC, + broadcastPLMNList BroadcastPLMNList, + iE-Extensions ProtocolExtensionContainer { {SupportedTAItem-ExtIEs} } OPTIONAL, + ... +} + +SupportedTAItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-ConfiguredTACIndication CRITICALITY ignore EXTENSION ConfiguredTACIndication PRESENCE optional }| + {ID id-RAT-Information CRITICALITY reject EXTENSION RAT-Information PRESENCE optional }, + ... +} + +SuspendIndicator ::= ENUMERATED { + true, + ... +} + +Suspend-Request-Indication ::= ENUMERATED { + suspend-requested, + ... +} + +Suspend-Response-Indication ::= ENUMERATED { + suspend-indicated, + ... +} + +-- T + +TAC ::= OCTET STRING (SIZE(3)) + +TAI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + tAC TAC, + iE-Extensions ProtocolExtensionContainer { {TAI-ExtIEs} } OPTIONAL, + ... +} + +TAI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIBroadcastEUTRA ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAIBroadcastEUTRA-Item + +TAIBroadcastEUTRA-Item ::= SEQUENCE { + tAI TAI, + completedCellsInTAI-EUTRA CompletedCellsInTAI-EUTRA, + iE-Extensions ProtocolExtensionContainer { {TAIBroadcastEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +TAIBroadcastEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIBroadcastNR ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAIBroadcastNR-Item + +TAIBroadcastNR-Item ::= SEQUENCE { + tAI TAI, + completedCellsInTAI-NR CompletedCellsInTAI-NR, + iE-Extensions ProtocolExtensionContainer { {TAIBroadcastNR-Item-ExtIEs} } OPTIONAL, + ... +} + +TAIBroadcastNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAICancelledEUTRA ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAICancelledEUTRA-Item + +TAICancelledEUTRA-Item ::= SEQUENCE { + tAI TAI, + cancelledCellsInTAI-EUTRA CancelledCellsInTAI-EUTRA, + iE-Extensions ProtocolExtensionContainer { {TAICancelledEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +TAICancelledEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAICancelledNR ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAICancelledNR-Item + +TAICancelledNR-Item ::= SEQUENCE { + tAI TAI, + cancelledCellsInTAI-NR CancelledCellsInTAI-NR, + iE-Extensions ProtocolExtensionContainer { {TAICancelledNR-Item-ExtIEs} } OPTIONAL, + ... +} + +TAICancelledNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListForInactive ::= SEQUENCE (SIZE(1..maxnoofTAIforInactive)) OF TAIListForInactiveItem + +TAIListForInactiveItem ::= SEQUENCE { + tAI TAI, + iE-Extensions ProtocolExtensionContainer { {TAIListForInactiveItem-ExtIEs} } OPTIONAL, + ... +} + +TAIListForInactiveItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListForPaging ::= SEQUENCE (SIZE(1..maxnoofTAIforPaging)) OF TAIListForPagingItem + +TAIListForPagingItem ::= SEQUENCE { + tAI TAI, + iE-Extensions ProtocolExtensionContainer { {TAIListForPagingItem-ExtIEs} } OPTIONAL, + ... +} + +TAIListForPagingItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListForRestart ::= SEQUENCE (SIZE(1..maxnoofTAIforRestart)) OF TAI + +TAIListForWarning ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAI + +TargeteNB-ID ::= SEQUENCE { + globalENB-ID GlobalNgENB-ID, + selected-EPS-TAI EPS-TAI, + iE-Extensions ProtocolExtensionContainer { {TargeteNB-ID-ExtIEs} } OPTIONAL, + ... +} + +TargeteNB-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetID ::= CHOICE { + targetRANNodeID TargetRANNodeID, + targeteNB-ID TargeteNB-ID, + choice-Extensions ProtocolIE-SingleContainer { {TargetID-ExtIEs} } +} + +TargetID-ExtIEs NGAP-PROTOCOL-IES ::= { + {ID id-TargetRNC-ID CRITICALITY reject TYPE TargetRNC-ID PRESENCE mandatory }, + ... +} + +TargetNGRANNode-ToSourceNGRANNode-TransparentContainer ::= SEQUENCE { + rRCContainer RRCContainer, + iE-Extensions ProtocolExtensionContainer { {TargetNGRANNode-ToSourceNGRANNode-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +TargetNGRANNode-ToSourceNGRANNode-TransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-DAPSResponseInfoList CRITICALITY ignore EXTENSION DAPSResponseInfoList PRESENCE optional }, + ... +} + +TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer ::= SEQUENCE { + cell-CAGInformation Cell-CAGInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetRANNodeID ::= SEQUENCE { + globalRANNodeID GlobalRANNodeID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { {TargetRANNodeID-ExtIEs} } OPTIONAL, + ... +} + +TargetRANNodeID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetRNC-ID ::= SEQUENCE { + lAI LAI, + rNC-ID RNC-ID, + extendedRNC-ID ExtendedRNC-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TargetRNC-ID-ExtIEs} } OPTIONAL, + ... +} + +TargetRNC-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetToSource-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the target RAN node to the source RAN node. +-- The octets of the OCTET STRING are encoded according to the specifications of the target system. + +TargettoSource-Failure-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the target RAN node to the source RAN node. +-- The octets of the OCTET STRING are encoded according to the specifications of the target system (if applicable). + +TimerApproachForGUAMIRemoval ::= ENUMERATED { + apply-timer, + ... +} + +TimeStamp ::= OCTET STRING (SIZE(4)) + +TimeToWait ::= ENUMERATED {v1s, v2s, v5s, v10s, v20s, v60s, ...} + +TimeUEStayedInCell ::= INTEGER (0..4095) + +TimeUEStayedInCellEnhancedGranularity ::= INTEGER (0..40950) + +TNAP-ID ::= OCTET STRING + +TNGF-ID ::= CHOICE { + tNGF-ID BIT STRING (SIZE(32, ...)), + choice-Extensions ProtocolIE-SingleContainer { {TNGF-ID-ExtIEs} } +} + +TNGF-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +TNLAddressWeightFactor ::= INTEGER (0..255) + +TNLAssociationList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF TNLAssociationItem + +TNLAssociationItem ::= SEQUENCE { + tNLAssociationAddress CPTransportLayerInformation, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {TNLAssociationItem-ExtIEs} } OPTIONAL, + ... +} + +TNLAssociationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TNLAssociationUsage ::= ENUMERATED { + ue, + non-ue, + both, + ... +} + +TooearlyIntersystemHO::= SEQUENCE { + sourcecellID EUTRA-CGI, + failurecellID NGRAN-CGI, + uERLFReportContainer UERLFReportContainer OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { TooearlyIntersystemHO-ExtIEs} } OPTIONAL, + ... +} + +TooearlyIntersystemHO-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TraceActivation ::= SEQUENCE { + nGRANTraceID NGRANTraceID, + interfacesToTrace InterfacesToTrace, +traceDepth TraceDepth, +traceCollectionEntityIPAddress TransportLayerAddress, + iE-Extensions ProtocolExtensionContainer { {TraceActivation-ExtIEs} } OPTIONAL, + ... +} + +TraceActivation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-MDTConfiguration CRITICALITY ignore EXTENSION MDT-Configuration PRESENCE optional }| + { ID id-TraceCollectionEntityURI CRITICALITY ignore EXTENSION URI-address PRESENCE optional }, + ... +} + +TraceDepth ::= ENUMERATED { + minimum, + medium, + maximum, + minimumWithoutVendorSpecificExtension, + mediumWithoutVendorSpecificExtension, + maximumWithoutVendorSpecificExtension, + ... +} + +TrafficLoadReductionIndication ::= INTEGER (1..99) + +TransportLayerAddress ::= BIT STRING (SIZE(1..160, ...)) + +TypeOfError ::= ENUMERATED { + not-understood, + missing, + ... +} + +TAIBasedMDT ::= SEQUENCE { + tAIListforMDT TAIListforMDT, + iE-Extensions ProtocolExtensionContainer { {TAIBasedMDT-ExtIEs} } OPTIONAL, + ... +} + +TAIBasedMDT-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListforMDT ::= SEQUENCE (SIZE(1..maxnoofTAforMDT)) OF TAI + + +TABasedMDT ::= SEQUENCE { + tAListforMDT TAListforMDT, + iE-Extensions ProtocolExtensionContainer { {TABasedMDT-ExtIEs} } OPTIONAL, + ... +} + +TABasedMDT-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAListforMDT ::= SEQUENCE (SIZE(1..maxnoofTAforMDT)) OF TAC + +Threshold-RSRP ::= INTEGER(0..127) + +Threshold-RSRQ ::= INTEGER(0..127) + +Threshold-SINR ::= INTEGER(0..127) + +TimeToTrigger ::= ENUMERATED {ms0, ms40, ms64, ms80, ms100, ms128, ms160, ms256, ms320, ms480, ms512, ms640, ms1024, ms1280, ms2560, ms5120} + + +TWAP-ID ::= OCTET STRING + +TWIF-ID ::= CHOICE { + tWIF-ID BIT STRING (SIZE(32, ...)), + choice-Extensions ProtocolIE-SingleContainer { {TWIF-ID-ExtIEs} } +} + +TWIF-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +TSCAssistanceInformation ::= SEQUENCE { + periodicity Periodicity, + burstArrivalTime BurstArrivalTime OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TSCAssistanceInformation-ExtIEs} } OPTIONAL, + ... +} + +TSCAssistanceInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TSCTrafficCharacteristics ::= SEQUENCE { + tSCAssistanceInformationDL TSCAssistanceInformation OPTIONAL, + tSCAssistanceInformationUL TSCAssistanceInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TSCTrafficCharacteristics-ExtIEs} } OPTIONAL, + ... +} + +TSCTrafficCharacteristics-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- U + +UEAggregateMaximumBitRate ::= SEQUENCE { + uEAggregateMaximumBitRateDL BitRate, + uEAggregateMaximumBitRateUL BitRate, + iE-Extensions ProtocolExtensionContainer { {UEAggregateMaximumBitRate-ExtIEs} } OPTIONAL, + ... +} + +UEAggregateMaximumBitRate-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UE-associatedLogicalNG-connectionList ::= SEQUENCE (SIZE(1..maxnoofNGConnectionsToReset)) OF UE-associatedLogicalNG-connectionItem + +UE-associatedLogicalNG-connectionItem ::= SEQUENCE { + aMF-UE-NGAP-ID AMF-UE-NGAP-ID OPTIONAL, + rAN-UE-NGAP-ID RAN-UE-NGAP-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UE-associatedLogicalNG-connectionItem-ExtIEs} } OPTIONAL, + ... +} + +UE-associatedLogicalNG-connectionItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UECapabilityInfoRequest ::= ENUMERATED { + requested, + ... +} + +UEContextRequest ::= ENUMERATED {requested, ...} + + +UEContextResumeRequestTransfer ::= SEQUENCE { + qosFlowFailedToResumeList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UEContextResumeRequestTransfer-ExtIEs} } OPTIONAL, + ... +} + +UEContextResumeRequestTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UEContextResumeResponseTransfer ::= SEQUENCE { + qosFlowFailedToResumeList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UEContextResumeResponseTransfer-ExtIEs} } OPTIONAL, + ... +} + +UEContextResumeResponseTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UEContextSuspendRequestTransfer ::= SEQUENCE { + suspendIndicator SuspendIndicator OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UEContextSuspendRequestTransfer-ExtIEs} } OPTIONAL, + ... +} + +UEContextSuspendRequestTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UE-DifferentiationInfo ::= SEQUENCE { + periodicCommunicationIndicator ENUMERATED {periodically, ondemand, ... } OPTIONAL, + periodicTime INTEGER (1..3600, ...) OPTIONAL, + scheduledCommunicationTime ScheduledCommunicationTime OPTIONAL, + stationaryIndication ENUMERATED {stationary, mobile, ...} OPTIONAL, + trafficProfile ENUMERATED {single-packet, dual-packets, multiple-packets, ...} OPTIONAL, + batteryIndication ENUMERATED {battery-powered, battery-powered-not-rechargeable-or-replaceable, not-battery-powered, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { UE-DifferentiationInfo-ExtIEs} } OPTIONAL, + ... +} + +UE-DifferentiationInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UEHistoryInformation ::= SEQUENCE (SIZE(1..maxnoofCellsinUEHistoryInfo)) OF LastVisitedCellItem + +UEHistoryInformationFromTheUE ::= CHOICE { + nR NRMobilityHistoryReport, + choice-Extensions ProtocolIE-SingleContainer { {UEHistoryInformationFromTheUE-ExtIEs} } +} + +UEHistoryInformationFromTheUE-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UEIdentityIndexValue ::= CHOICE { + indexLength10 BIT STRING (SIZE(10)), + choice-Extensions ProtocolIE-SingleContainer { {UEIdentityIndexValue-ExtIEs} } +} + +UEIdentityIndexValue-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UE-NGAP-IDs ::= CHOICE { + uE-NGAP-ID-pair UE-NGAP-ID-pair, + aMF-UE-NGAP-ID AMF-UE-NGAP-ID, + choice-Extensions ProtocolIE-SingleContainer { {UE-NGAP-IDs-ExtIEs} } +} + +UE-NGAP-IDs-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UE-NGAP-ID-pair ::= SEQUENCE{ + aMF-UE-NGAP-ID AMF-UE-NGAP-ID, + rAN-UE-NGAP-ID RAN-UE-NGAP-ID, + iE-Extensions ProtocolExtensionContainer { {UE-NGAP-ID-pair-ExtIEs} } OPTIONAL, + ... +} + +UE-NGAP-ID-pair-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UEPagingIdentity ::= CHOICE { + fiveG-S-TMSI FiveG-S-TMSI, + choice-Extensions ProtocolIE-SingleContainer { {UEPagingIdentity-ExtIEs} } + } + +UEPagingIdentity-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UEPresence ::= ENUMERATED {in, out, unknown, ...} + +UEPresenceInAreaOfInterestList ::= SEQUENCE (SIZE(1..maxnoofAoI)) OF UEPresenceInAreaOfInterestItem + +UEPresenceInAreaOfInterestItem ::= SEQUENCE { + locationReportingReferenceID LocationReportingReferenceID, + uEPresence UEPresence, + iE-Extensions ProtocolExtensionContainer { {UEPresenceInAreaOfInterestItem-ExtIEs} } OPTIONAL, + ... +} + +UEPresenceInAreaOfInterestItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UERadioCapability ::= OCTET STRING + +UERadioCapabilityForPaging ::= SEQUENCE { + uERadioCapabilityForPagingOfNR UERadioCapabilityForPagingOfNR OPTIONAL, + uERadioCapabilityForPagingOfEUTRA UERadioCapabilityForPagingOfEUTRA OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UERadioCapabilityForPaging-ExtIEs} } OPTIONAL, + ... +} + +UERadioCapabilityForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-UERadioCapabilityForPagingOfNB-IoT CRITICALITY ignore EXTENSION UERadioCapabilityForPagingOfNB-IoT PRESENCE optional }, + ... +} + +UERadioCapabilityForPagingOfNB-IoT ::= OCTET STRING + +UERadioCapabilityForPagingOfNR ::= OCTET STRING + +UERadioCapabilityForPagingOfEUTRA ::= OCTET STRING + +UERadioCapabilityID ::= OCTET STRING + +UERetentionInformation ::= ENUMERATED { + ues-retained, + ... +} + +UERLFReportContainer ::= CHOICE { + nR NRUERLFReportContainer, + lTE LTEUERLFReportContainer, + choice-Extensions ProtocolIE-SingleContainer { {UERLFReportContainer-ExtIEs} } +} + +UERLFReportContainer-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UESecurityCapabilities ::= SEQUENCE { + nRencryptionAlgorithms NRencryptionAlgorithms, + nRintegrityProtectionAlgorithms NRintegrityProtectionAlgorithms, + eUTRAencryptionAlgorithms EUTRAencryptionAlgorithms, + eUTRAintegrityProtectionAlgorithms EUTRAintegrityProtectionAlgorithms, + iE-Extensions ProtocolExtensionContainer { {UESecurityCapabilities-ExtIEs} } OPTIONAL, + ... +} + +UESecurityCapabilities-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UE-UP-CIoT-Support ::= ENUMERATED {supported, ...} + +UL-CP-SecurityInformation ::= SEQUENCE { + ul-NAS-MAC UL-NAS-MAC, + ul-NAS-Count UL-NAS-Count, + iE-Extensions ProtocolExtensionContainer { { UL-CP-SecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +UL-CP-SecurityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UL-NAS-MAC ::= BIT STRING (SIZE (16)) + +UL-NAS-Count ::= BIT STRING (SIZE (5)) + +UL-NGU-UP-TNLModifyList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivity)) OF UL-NGU-UP-TNLModifyItem + +UL-NGU-UP-TNLModifyItem ::= SEQUENCE { + uL-NGU-UP-TNLInformation UPTransportLayerInformation, + dL-NGU-UP-TNLInformation UPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {UL-NGU-UP-TNLModifyItem-ExtIEs} } OPTIONAL, + ... +} + +UL-NGU-UP-TNLModifyItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-RedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }, + ... +} + +UnavailableGUAMIList ::= SEQUENCE (SIZE(1..maxnoofServedGUAMIs)) OF UnavailableGUAMIItem + +UnavailableGUAMIItem ::= SEQUENCE { + gUAMI GUAMI, + timerApproachForGUAMIRemoval TimerApproachForGUAMIRemoval OPTIONAL, + backupAMFName AMFName OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UnavailableGUAMIItem-ExtIEs} } OPTIONAL, + ... +} + +UnavailableGUAMIItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ULForwarding ::= ENUMERATED { + ul-forwarding-proposed, + ... +} + +UpdateFeedback ::= BIT STRING (SIZE(8, ...)) + +UPTransportLayerInformation ::= CHOICE { + gTPTunnel GTPTunnel, + choice-Extensions ProtocolIE-SingleContainer { {UPTransportLayerInformation-ExtIEs} } +} + +UPTransportLayerInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UPTransportLayerInformationList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivityMinusOne)) OF UPTransportLayerInformationItem + +UPTransportLayerInformationItem ::= SEQUENCE { + nGU-UP-TNLInformation UPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {UPTransportLayerInformationItem-ExtIEs} } OPTIONAL, + ... +} + +UPTransportLayerInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CommonNetworkInstance CRITICALITY ignore EXTENSION CommonNetworkInstance PRESENCE optional }, + ... +} + + +UPTransportLayerInformationPairList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivityMinusOne)) OF UPTransportLayerInformationPairItem + +UPTransportLayerInformationPairItem ::= SEQUENCE { + uL-NGU-UP-TNLInformation UPTransportLayerInformation, + dL-NGU-UP-TNLInformation UPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {UPTransportLayerInformationPairItem-ExtIEs} } OPTIONAL, + ... +} + +UPTransportLayerInformationPairItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +URI-address ::= VisibleString + +UserLocationInformation ::= CHOICE { + userLocationInformationEUTRA UserLocationInformationEUTRA, + userLocationInformationNR UserLocationInformationNR, + userLocationInformationN3IWF UserLocationInformationN3IWF, + choice-Extensions ProtocolIE-SingleContainer { {UserLocationInformation-ExtIEs} } +} + +UserLocationInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-UserLocationInformationTNGF CRITICALITY ignore TYPE UserLocationInformationTNGF PRESENCE mandatory }| + { ID id-UserLocationInformationTWIF CRITICALITY ignore TYPE UserLocationInformationTWIF PRESENCE mandatory }| + { ID id-UserLocationInformationW-AGF CRITICALITY ignore TYPE UserLocationInformationW-AGF PRESENCE mandatory }, + ... +} + +UserLocationInformationEUTRA ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + tAI TAI, + timeStamp TimeStamp OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationEUTRA-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationEUTRA-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PSCellInformation CRITICALITY ignore EXTENSION NGRAN-CGI PRESENCE optional}, + ... +} + +UserLocationInformationN3IWF ::= SEQUENCE { + iPAddress TransportLayerAddress, + portNumber PortNumber, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationN3IWF-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationN3IWF-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UserLocationInformationTNGF ::= SEQUENCE { + tNAP-ID TNAP-ID, + iPAddress TransportLayerAddress, + portNumber PortNumber OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationTNGF-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationTNGF-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UserLocationInformationTWIF ::= SEQUENCE { + tWAP-ID TWAP-ID, + iPAddress TransportLayerAddress, + portNumber PortNumber OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationTWIF-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationTWIF-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UserLocationInformationW-AGF ::= CHOICE { + globalLine-ID GlobalLine-ID, + hFCNode-ID HFCNode-ID, + choice-Extensions ProtocolIE-SingleContainer { { UserLocationInformationW-AGF-ExtIEs} } +} + +UserLocationInformationW-AGF-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-GlobalCable-ID CRITICALITY ignore TYPE GlobalCable-ID PRESENCE mandatory }, + ... +} + +UserLocationInformationNR ::= SEQUENCE { + nR-CGI NR-CGI, + tAI TAI, + timeStamp TimeStamp OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationNR-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationNR-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PSCellInformation CRITICALITY ignore EXTENSION NGRAN-CGI PRESENCE optional }| + { ID id-NID CRITICALITY reject EXTENSION NID PRESENCE optional }, + ... +} + +UserPlaneSecurityInformation ::= SEQUENCE { + securityResult SecurityResult, + securityIndication SecurityIndication, + iE-Extensions ProtocolExtensionContainer { {UserPlaneSecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +UserPlaneSecurityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- V + +VolumeTimedReportList ::= SEQUENCE (SIZE(1..maxnoofTimePeriods)) OF VolumeTimedReport-Item + +VolumeTimedReport-Item ::= SEQUENCE { + startTimeStamp OCTET STRING (SIZE(4)), + endTimeStamp OCTET STRING (SIZE(4)), + usageCountUL INTEGER (0..18446744073709551615), + usageCountDL INTEGER (0..18446744073709551615), + iE-Extensions ProtocolExtensionContainer { {VolumeTimedReport-Item-ExtIEs} } OPTIONAL, + ... +} + +VolumeTimedReport-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- W + +W-AGF-ID ::= CHOICE { + w-AGF-ID BIT STRING (SIZE(16, ...)), + choice-Extensions ProtocolIE-SingleContainer { {W-AGF-ID-ExtIEs} } +} + +W-AGF-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +WarningAreaCoordinates ::= OCTET STRING (SIZE(1..1024)) + +WarningAreaList ::= CHOICE { + eUTRA-CGIListForWarning EUTRA-CGIListForWarning, + nR-CGIListForWarning NR-CGIListForWarning, + tAIListForWarning TAIListForWarning, + emergencyAreaIDList EmergencyAreaIDList, + choice-Extensions ProtocolIE-SingleContainer { {WarningAreaList-ExtIEs} } +} + +WarningAreaList-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +WarningMessageContents ::= OCTET STRING (SIZE(1..9600)) + +WarningSecurityInfo ::= OCTET STRING (SIZE(50)) + +WarningType ::= OCTET STRING (SIZE(2)) + +WLANMeasurementConfiguration ::= SEQUENCE { + wlanMeasConfig WLANMeasConfig, + wlanMeasConfigNameList WLANMeasConfigNameList OPTIONAL, + wlan-rssi ENUMERATED {true, ...} OPTIONAL, + wlan-rtt ENUMERATED {true, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { WLANMeasurementConfiguration-ExtIEs } } OPTIONAL, + ... +} + +WLANMeasurementConfiguration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +WLANMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofWLANName)) OF WLANMeasConfigNameItem + +WLANMeasConfigNameItem ::= SEQUENCE { + wLANName WLANName, + iE-Extensions ProtocolExtensionContainer { { WLANMeasConfigNameItem-ExtIEs } } OPTIONAL, + ... +} + +WLANMeasConfigNameItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +WLANMeasConfig::= ENUMERATED {setup,...} + +WLANName ::= OCTET STRING (SIZE (1..32)) + +WUS-Assistance-Information ::= SEQUENCE { + pagingProbabilityInformation PagingProbabilityInformation, + iE-Extensions ProtocolExtensionContainer { { WUS-Assistance-Information-ExtIEs } } OPTIONAL, + ... +} + +WUS-Assistance-Information-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- X + +XnExtTLAs ::= SEQUENCE (SIZE(1..maxnoofXnExtTLAs)) OF XnExtTLA-Item + +XnExtTLA-Item ::= SEQUENCE { + iPsecTLA TransportLayerAddress OPTIONAL, + gTP-TLAs XnGTP-TLAs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {XnExtTLA-Item-ExtIEs} } OPTIONAL, + ... +} + +XnExtTLA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SCTP-TLAs CRITICALITY ignore EXTENSION SCTP-TLAs PRESENCE optional }, + ... +} + +XnGTP-TLAs ::= SEQUENCE (SIZE(1..maxnoofXnGTP-TLAs)) OF TransportLayerAddress + +XnTLAs ::= SEQUENCE (SIZE(1..maxnoofXnTLAs)) OF TransportLayerAddress + +XnTNLConfigurationInfo ::= SEQUENCE { + xnTransportLayerAddresses XnTLAs, + xnExtendedTransportLayerAddresses XnExtTLAs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {XnTNLConfigurationInfo-ExtIEs} } OPTIONAL, + ... +} + +XnTNLConfigurationInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- Y +-- Z + +END +-- ASN1STOP + +-- ASN1START +-- ************************************************************** +-- +-- Common definitions +-- +-- ************************************************************** + +NGAP-CommonDataTypes { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-CommonDataTypes (3) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +Criticality ::= ENUMERATED { reject, ignore, notify } + +Presence ::= ENUMERATED { optional, conditional, mandatory } + +PrivateIE-ID ::= CHOICE { + local INTEGER (0..65535), + global OBJECT IDENTIFIER +} + +ProcedureCode ::= INTEGER (0..255) + +ProtocolExtensionID ::= INTEGER (0..65535) + +ProtocolIE-ID ::= INTEGER (0..65535) + +TriggeringMessage ::= ENUMERATED { initiating-message, successful-outcome, unsuccessfull-outcome } + +END +-- ASN1STOP + +-- ASN1START +-- ************************************************************** +-- +-- Constant definitions +-- +-- ************************************************************** + +NGAP-Constants { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-Constants (4) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + ProcedureCode, + ProtocolIE-ID +FROM NGAP-CommonDataTypes; + + +-- ************************************************************** +-- +-- Elementary Procedures +-- +-- ************************************************************** + +id-AMFConfigurationUpdate ProcedureCode ::= 0 +id-AMFStatusIndication ProcedureCode ::= 1 +id-CellTrafficTrace ProcedureCode ::= 2 +id-DeactivateTrace ProcedureCode ::= 3 +id-DownlinkNASTransport ProcedureCode ::= 4 +id-DownlinkNonUEAssociatedNRPPaTransport ProcedureCode ::= 5 +id-DownlinkRANConfigurationTransfer ProcedureCode ::= 6 +id-DownlinkRANStatusTransfer ProcedureCode ::= 7 +id-DownlinkUEAssociatedNRPPaTransport ProcedureCode ::= 8 +id-ErrorIndication ProcedureCode ::= 9 +id-HandoverCancel ProcedureCode ::= 10 +id-HandoverNotification ProcedureCode ::= 11 +id-HandoverPreparation ProcedureCode ::= 12 +id-HandoverResourceAllocation ProcedureCode ::= 13 +id-InitialContextSetup ProcedureCode ::= 14 +id-InitialUEMessage ProcedureCode ::= 15 +id-LocationReportingControl ProcedureCode ::= 16 +id-LocationReportingFailureIndication ProcedureCode ::= 17 +id-LocationReport ProcedureCode ::= 18 +id-NASNonDeliveryIndication ProcedureCode ::= 19 +id-NGReset ProcedureCode ::= 20 +id-NGSetup ProcedureCode ::= 21 +id-OverloadStart ProcedureCode ::= 22 +id-OverloadStop ProcedureCode ::= 23 +id-Paging ProcedureCode ::= 24 +id-PathSwitchRequest ProcedureCode ::= 25 +id-PDUSessionResourceModify ProcedureCode ::= 26 +id-PDUSessionResourceModifyIndication ProcedureCode ::= 27 +id-PDUSessionResourceRelease ProcedureCode ::= 28 +id-PDUSessionResourceSetup ProcedureCode ::= 29 +id-PDUSessionResourceNotify ProcedureCode ::= 30 +id-PrivateMessage ProcedureCode ::= 31 +id-PWSCancel ProcedureCode ::= 32 +id-PWSFailureIndication ProcedureCode ::= 33 +id-PWSRestartIndication ProcedureCode ::= 34 +id-RANConfigurationUpdate ProcedureCode ::= 35 +id-RerouteNASRequest ProcedureCode ::= 36 +id-RRCInactiveTransitionReport ProcedureCode ::= 37 +id-TraceFailureIndication ProcedureCode ::= 38 +id-TraceStart ProcedureCode ::= 39 +id-UEContextModification ProcedureCode ::= 40 +id-UEContextRelease ProcedureCode ::= 41 +id-UEContextReleaseRequest ProcedureCode ::= 42 +id-UERadioCapabilityCheck ProcedureCode ::= 43 +id-UERadioCapabilityInfoIndication ProcedureCode ::= 44 +id-UETNLABindingRelease ProcedureCode ::= 45 +id-UplinkNASTransport ProcedureCode ::= 46 +id-UplinkNonUEAssociatedNRPPaTransport ProcedureCode ::= 47 +id-UplinkRANConfigurationTransfer ProcedureCode ::= 48 +id-UplinkRANStatusTransfer ProcedureCode ::= 49 +id-UplinkUEAssociatedNRPPaTransport ProcedureCode ::= 50 +id-WriteReplaceWarning ProcedureCode ::= 51 +id-SecondaryRATDataUsageReport ProcedureCode ::= 52 +id-UplinkRIMInformationTransfer ProcedureCode ::= 53 +id-DownlinkRIMInformationTransfer ProcedureCode ::= 54 +id-RetrieveUEInformation ProcedureCode ::= 55 +id-UEInformationTransfer ProcedureCode ::= 56 +id-RANCPRelocationIndication ProcedureCode ::= 57 +id-UEContextResume ProcedureCode ::= 58 +id-UEContextSuspend ProcedureCode ::= 59 +id-UERadioCapabilityIDMapping ProcedureCode ::= 60 +id-HandoverSuccess ProcedureCode ::= 61 +id-UplinkRANEarlyStatusTransfer ProcedureCode ::= 62 +id-DownlinkRANEarlyStatusTransfer ProcedureCode ::= 63 +id-AMFCPRelocationIndication ProcedureCode ::= 64 +id-ConnectionEstablishmentIndication ProcedureCode ::= 65 + +-- ************************************************************** +-- +-- Extension constants +-- +-- ************************************************************** + +maxPrivateIEs INTEGER ::= 65535 +maxProtocolExtensions INTEGER ::= 65535 +maxProtocolIEs INTEGER ::= 65535 + +-- ************************************************************** +-- +-- Lists +-- +-- ************************************************************** + + maxnoofAllowedAreas INTEGER ::= 16 + maxnoofAllowedCAGsperPLMN INTEGER ::= 256 + maxnoofAllowedS-NSSAIs INTEGER ::= 8 + maxnoofBluetoothName INTEGER ::= 4 + maxnoofBPLMNs INTEGER ::= 12 + maxnoofCAGSperCell INTEGER ::= 64 + maxnoofCellIDforMDT INTEGER ::= 32 + maxnoofCellIDforWarning INTEGER ::= 65535 + maxnoofCellinAoI INTEGER ::= 256 + maxnoofCellinEAI INTEGER ::= 65535 + maxnoofCellinTAI INTEGER ::= 65535 + maxnoofCellsingNB INTEGER ::= 16384 + maxnoofCellsinngeNB INTEGER ::= 256 + maxnoofCellsinUEHistoryInfo INTEGER ::= 16 + maxnoofCellsUEMovingTrajectory INTEGER ::= 16 + maxnoofDRBs INTEGER ::= 32 + maxnoofEmergencyAreaID INTEGER ::= 65535 + maxnoofEAIforRestart INTEGER ::= 256 + maxnoofEPLMNs INTEGER ::= 15 + maxnoofEPLMNsPlusOne INTEGER ::= 16 + maxnoofE-RABs INTEGER ::= 256 + maxnoofErrors INTEGER ::= 256 + maxnoofExtSliceItems INTEGER ::= 65535 + maxnoofForbTACs INTEGER ::= 4096 + maxnoofFreqforMDT INTEGER ::= 8 + maxnoofMDTPLMNs INTEGER ::= 16 + maxnoofMultiConnectivity INTEGER ::= 4 + maxnoofMultiConnectivityMinusOne INTEGER ::= 3 + maxnoofNeighPCIforMDT INTEGER ::= 32 + maxnoofNGConnectionsToReset INTEGER ::= 65536 + maxnoofNRCellBands INTEGER ::= 32 + maxnoofPC5QoSFlows INTEGER ::= 2048 + maxnoofPDUSessions INTEGER ::= 256 + maxnoofPLMNs INTEGER ::= 12 + maxnoofQosFlows INTEGER ::= 64 + maxnoofQosParaSets INTEGER ::= 8 + maxnoofRANNodeinAoI INTEGER ::= 64 + maxnoofRecommendedCells INTEGER ::= 16 + maxnoofRecommendedRANNodes INTEGER ::= 16 + maxnoofAoI INTEGER ::= 64 + maxnoofSensorName INTEGER ::= 3 + maxnoofServedGUAMIs INTEGER ::= 256 + maxnoofSliceItems INTEGER ::= 1024 + maxnoofTACs INTEGER ::= 256 + maxnoofTAforMDT INTEGER ::= 8 + maxnoofTAIforInactive INTEGER ::= 16 + maxnoofTAIforPaging INTEGER ::= 16 + maxnoofTAIforRestart INTEGER ::= 2048 + maxnoofTAIforWarning INTEGER ::= 65535 + maxnoofTAIinAoI INTEGER ::= 16 + maxnoofTimePeriods INTEGER ::= 2 + maxnoofTNLAssociations INTEGER ::= 32 + maxnoofWLANName INTEGER ::= 4 + maxnoofXnExtTLAs INTEGER ::= 16 + maxnoofXnGTP-TLAs INTEGER ::= 16 + maxnoofXnTLAs INTEGER ::= 2 + maxnoofCandidateCells INTEGER ::= 32 + maxNRARFCN INTEGER ::= 3279165 + +-- ************************************************************** +-- +-- IEs +-- +-- ************************************************************** + + id-AllowedNSSAI ProtocolIE-ID ::= 0 + id-AMFName ProtocolIE-ID ::= 1 + id-AMFOverloadResponse ProtocolIE-ID ::= 2 + id-AMFSetID ProtocolIE-ID ::= 3 + id-AMF-TNLAssociationFailedToSetupList ProtocolIE-ID ::= 4 + id-AMF-TNLAssociationSetupList ProtocolIE-ID ::= 5 + id-AMF-TNLAssociationToAddList ProtocolIE-ID ::= 6 + id-AMF-TNLAssociationToRemoveList ProtocolIE-ID ::= 7 + id-AMF-TNLAssociationToUpdateList ProtocolIE-ID ::= 8 + id-AMFTrafficLoadReductionIndication ProtocolIE-ID ::= 9 + id-AMF-UE-NGAP-ID ProtocolIE-ID ::= 10 + id-AssistanceDataForPaging ProtocolIE-ID ::= 11 + id-BroadcastCancelledAreaList ProtocolIE-ID ::= 12 + id-BroadcastCompletedAreaList ProtocolIE-ID ::= 13 + id-CancelAllWarningMessages ProtocolIE-ID ::= 14 + id-Cause ProtocolIE-ID ::= 15 + id-CellIDListForRestart ProtocolIE-ID ::= 16 + id-ConcurrentWarningMessageInd ProtocolIE-ID ::= 17 + id-CoreNetworkAssistanceInformationForInactive ProtocolIE-ID ::= 18 + id-CriticalityDiagnostics ProtocolIE-ID ::= 19 + id-DataCodingScheme ProtocolIE-ID ::= 20 + id-DefaultPagingDRX ProtocolIE-ID ::= 21 + id-DirectForwardingPathAvailability ProtocolIE-ID ::= 22 + id-EmergencyAreaIDListForRestart ProtocolIE-ID ::= 23 + id-EmergencyFallbackIndicator ProtocolIE-ID ::= 24 + id-EUTRA-CGI ProtocolIE-ID ::= 25 + id-FiveG-S-TMSI ProtocolIE-ID ::= 26 + id-GlobalRANNodeID ProtocolIE-ID ::= 27 + id-GUAMI ProtocolIE-ID ::= 28 + id-HandoverType ProtocolIE-ID ::= 29 + id-IMSVoiceSupportIndicator ProtocolIE-ID ::= 30 + id-IndexToRFSP ProtocolIE-ID ::= 31 + id-InfoOnRecommendedCellsAndRANNodesForPaging ProtocolIE-ID ::= 32 + id-LocationReportingRequestType ProtocolIE-ID ::= 33 + id-MaskedIMEISV ProtocolIE-ID ::= 34 + id-MessageIdentifier ProtocolIE-ID ::= 35 + id-MobilityRestrictionList ProtocolIE-ID ::= 36 + id-NASC ProtocolIE-ID ::= 37 + id-NAS-PDU ProtocolIE-ID ::= 38 + id-NASSecurityParametersFromNGRAN ProtocolIE-ID ::= 39 + id-NewAMF-UE-NGAP-ID ProtocolIE-ID ::= 40 + id-NewSecurityContextInd ProtocolIE-ID ::= 41 + id-NGAP-Message ProtocolIE-ID ::= 42 + id-NGRAN-CGI ProtocolIE-ID ::= 43 + id-NGRANTraceID ProtocolIE-ID ::= 44 + id-NR-CGI ProtocolIE-ID ::= 45 + id-NRPPa-PDU ProtocolIE-ID ::= 46 + id-NumberOfBroadcastsRequested ProtocolIE-ID ::= 47 + id-OldAMF ProtocolIE-ID ::= 48 + id-OverloadStartNSSAIList ProtocolIE-ID ::= 49 + id-PagingDRX ProtocolIE-ID ::= 50 + id-PagingOrigin ProtocolIE-ID ::= 51 + id-PagingPriority ProtocolIE-ID ::= 52 + id-PDUSessionResourceAdmittedList ProtocolIE-ID ::= 53 + id-PDUSessionResourceFailedToModifyListModRes ProtocolIE-ID ::= 54 + id-PDUSessionResourceFailedToSetupListCxtRes ProtocolIE-ID ::= 55 + id-PDUSessionResourceFailedToSetupListHOAck ProtocolIE-ID ::= 56 + id-PDUSessionResourceFailedToSetupListPSReq ProtocolIE-ID ::= 57 + id-PDUSessionResourceFailedToSetupListSURes ProtocolIE-ID ::= 58 + id-PDUSessionResourceHandoverList ProtocolIE-ID ::= 59 + id-PDUSessionResourceListCxtRelCpl ProtocolIE-ID ::= 60 + id-PDUSessionResourceListHORqd ProtocolIE-ID ::= 61 + id-PDUSessionResourceModifyListModCfm ProtocolIE-ID ::= 62 + id-PDUSessionResourceModifyListModInd ProtocolIE-ID ::= 63 + id-PDUSessionResourceModifyListModReq ProtocolIE-ID ::= 64 + id-PDUSessionResourceModifyListModRes ProtocolIE-ID ::= 65 + id-PDUSessionResourceNotifyList ProtocolIE-ID ::= 66 + id-PDUSessionResourceReleasedListNot ProtocolIE-ID ::= 67 + id-PDUSessionResourceReleasedListPSAck ProtocolIE-ID ::= 68 + id-PDUSessionResourceReleasedListPSFail ProtocolIE-ID ::= 69 + id-PDUSessionResourceReleasedListRelRes ProtocolIE-ID ::= 70 + id-PDUSessionResourceSetupListCxtReq ProtocolIE-ID ::= 71 + id-PDUSessionResourceSetupListCxtRes ProtocolIE-ID ::= 72 + id-PDUSessionResourceSetupListHOReq ProtocolIE-ID ::= 73 + id-PDUSessionResourceSetupListSUReq ProtocolIE-ID ::= 74 + id-PDUSessionResourceSetupListSURes ProtocolIE-ID ::= 75 + id-PDUSessionResourceToBeSwitchedDLList ProtocolIE-ID ::= 76 + id-PDUSessionResourceSwitchedList ProtocolIE-ID ::= 77 + id-PDUSessionResourceToReleaseListHOCmd ProtocolIE-ID ::= 78 + id-PDUSessionResourceToReleaseListRelCmd ProtocolIE-ID ::= 79 + id-PLMNSupportList ProtocolIE-ID ::= 80 + id-PWSFailedCellIDList ProtocolIE-ID ::= 81 + id-RANNodeName ProtocolIE-ID ::= 82 + id-RANPagingPriority ProtocolIE-ID ::= 83 + id-RANStatusTransfer-TransparentContainer ProtocolIE-ID ::= 84 + id-RAN-UE-NGAP-ID ProtocolIE-ID ::= 85 + id-RelativeAMFCapacity ProtocolIE-ID ::= 86 + id-RepetitionPeriod ProtocolIE-ID ::= 87 + id-ResetType ProtocolIE-ID ::= 88 + id-RoutingID ProtocolIE-ID ::= 89 + id-RRCEstablishmentCause ProtocolIE-ID ::= 90 + id-RRCInactiveTransitionReportRequest ProtocolIE-ID ::= 91 + id-RRCState ProtocolIE-ID ::= 92 + id-SecurityContext ProtocolIE-ID ::= 93 + id-SecurityKey ProtocolIE-ID ::= 94 + id-SerialNumber ProtocolIE-ID ::= 95 + id-ServedGUAMIList ProtocolIE-ID ::= 96 + id-SliceSupportList ProtocolIE-ID ::= 97 + id-SONConfigurationTransferDL ProtocolIE-ID ::= 98 + id-SONConfigurationTransferUL ProtocolIE-ID ::= 99 + id-SourceAMF-UE-NGAP-ID ProtocolIE-ID ::= 100 + id-SourceToTarget-TransparentContainer ProtocolIE-ID ::= 101 + id-SupportedTAList ProtocolIE-ID ::= 102 + id-TAIListForPaging ProtocolIE-ID ::= 103 + id-TAIListForRestart ProtocolIE-ID ::= 104 + id-TargetID ProtocolIE-ID ::= 105 + id-TargetToSource-TransparentContainer ProtocolIE-ID ::= 106 + id-TimeToWait ProtocolIE-ID ::= 107 + id-TraceActivation ProtocolIE-ID ::= 108 + id-TraceCollectionEntityIPAddress ProtocolIE-ID ::= 109 + id-UEAggregateMaximumBitRate ProtocolIE-ID ::= 110 + id-UE-associatedLogicalNG-connectionList ProtocolIE-ID ::= 111 + id-UEContextRequest ProtocolIE-ID ::= 112 + id-UE-NGAP-IDs ProtocolIE-ID ::= 114 + id-UEPagingIdentity ProtocolIE-ID ::= 115 + id-UEPresenceInAreaOfInterestList ProtocolIE-ID ::= 116 + id-UERadioCapability ProtocolIE-ID ::= 117 + id-UERadioCapabilityForPaging ProtocolIE-ID ::= 118 + id-UESecurityCapabilities ProtocolIE-ID ::= 119 + id-UnavailableGUAMIList ProtocolIE-ID ::= 120 + id-UserLocationInformation ProtocolIE-ID ::= 121 + id-WarningAreaList ProtocolIE-ID ::= 122 + id-WarningMessageContents ProtocolIE-ID ::= 123 + id-WarningSecurityInfo ProtocolIE-ID ::= 124 + id-WarningType ProtocolIE-ID ::= 125 + id-AdditionalUL-NGU-UP-TNLInformation ProtocolIE-ID ::= 126 + id-DataForwardingNotPossible ProtocolIE-ID ::= 127 + id-DL-NGU-UP-TNLInformation ProtocolIE-ID ::= 128 + id-NetworkInstance ProtocolIE-ID ::= 129 + id-PDUSessionAggregateMaximumBitRate ProtocolIE-ID ::= 130 + id-PDUSessionResourceFailedToModifyListModCfm ProtocolIE-ID ::= 131 + id-PDUSessionResourceFailedToSetupListCxtFail ProtocolIE-ID ::= 132 + id-PDUSessionResourceListCxtRelReq ProtocolIE-ID ::= 133 + id-PDUSessionType ProtocolIE-ID ::= 134 + id-QosFlowAddOrModifyRequestList ProtocolIE-ID ::= 135 + id-QosFlowSetupRequestList ProtocolIE-ID ::= 136 + id-QosFlowToReleaseList ProtocolIE-ID ::= 137 + id-SecurityIndication ProtocolIE-ID ::= 138 + id-UL-NGU-UP-TNLInformation ProtocolIE-ID ::= 139 + id-UL-NGU-UP-TNLModifyList ProtocolIE-ID ::= 140 + id-WarningAreaCoordinates ProtocolIE-ID ::= 141 + id-PDUSessionResourceSecondaryRATUsageList ProtocolIE-ID ::= 142 + id-HandoverFlag ProtocolIE-ID ::= 143 + id-SecondaryRATUsageInformation ProtocolIE-ID ::= 144 + id-PDUSessionResourceReleaseResponseTransfer ProtocolIE-ID ::= 145 + id-RedirectionVoiceFallback ProtocolIE-ID ::= 146 + id-UERetentionInformation ProtocolIE-ID ::= 147 + id-S-NSSAI ProtocolIE-ID ::= 148 + id-PSCellInformation ProtocolIE-ID ::= 149 + id-LastEUTRAN-PLMNIdentity ProtocolIE-ID ::= 150 + id-MaximumIntegrityProtectedDataRate-DL ProtocolIE-ID ::= 151 + id-AdditionalDLForwardingUPTNLInformation ProtocolIE-ID ::= 152 + id-AdditionalDLUPTNLInformationForHOList ProtocolIE-ID ::= 153 + id-AdditionalNGU-UP-TNLInformation ProtocolIE-ID ::= 154 + id-AdditionalDLQosFlowPerTNLInformation ProtocolIE-ID ::= 155 + id-SecurityResult ProtocolIE-ID ::= 156 + id-ENDC-SONConfigurationTransferDL ProtocolIE-ID ::= 157 + id-ENDC-SONConfigurationTransferUL ProtocolIE-ID ::= 158 + id-OldAssociatedQosFlowList-ULendmarkerexpected ProtocolIE-ID ::= 159 + id-CNTypeRestrictionsForEquivalent ProtocolIE-ID ::= 160 + id-CNTypeRestrictionsForServing ProtocolIE-ID ::= 161 + id-NewGUAMI ProtocolIE-ID ::= 162 + id-ULForwarding ProtocolIE-ID ::= 163 + id-ULForwardingUP-TNLInformation ProtocolIE-ID ::= 164 + id-CNAssistedRANTuning ProtocolIE-ID ::= 165 + id-CommonNetworkInstance ProtocolIE-ID ::= 166 + id-NGRAN-TNLAssociationToRemoveList ProtocolIE-ID ::= 167 + id-TNLAssociationTransportLayerAddressNGRAN ProtocolIE-ID ::= 168 + id-EndpointIPAddressAndPort ProtocolIE-ID ::= 169 + id-LocationReportingAdditionalInfo ProtocolIE-ID ::= 170 + id-SourceToTarget-AMFInformationReroute ProtocolIE-ID ::= 171 + id-AdditionalULForwardingUPTNLInformation ProtocolIE-ID ::= 172 + id-SCTP-TLAs ProtocolIE-ID ::= 173 + id-SelectedPLMNIdentity ProtocolIE-ID ::= 174 + id-RIMInformationTransfer ProtocolIE-ID ::= 175 + id-GUAMIType ProtocolIE-ID ::= 176 + id-SRVCCOperationPossible ProtocolIE-ID ::= 177 + id-TargetRNC-ID ProtocolIE-ID ::= 178 + id-RAT-Information ProtocolIE-ID ::= 179 + id-ExtendedRATRestrictionInformation ProtocolIE-ID ::= 180 + id-QosMonitoringRequest ProtocolIE-ID ::= 181 + id-SgNB-UE-X2AP-ID ProtocolIE-ID ::= 182 + id-AdditionalRedundantDL-NGU-UP-TNLInformation ProtocolIE-ID ::= 183 + id-AdditionalRedundantDLQosFlowPerTNLInformation ProtocolIE-ID ::= 184 + id-AdditionalRedundantNGU-UP-TNLInformation ProtocolIE-ID ::= 185 + id-AdditionalRedundantUL-NGU-UP-TNLInformation ProtocolIE-ID ::= 186 + id-CNPacketDelayBudgetDL ProtocolIE-ID ::= 187 + id-CNPacketDelayBudgetUL ProtocolIE-ID ::= 188 + id-ExtendedPacketDelayBudget ProtocolIE-ID ::= 189 + id-RedundantCommonNetworkInstance ProtocolIE-ID ::= 190 + id-RedundantDL-NGU-TNLInformationReused ProtocolIE-ID ::= 191 + id-RedundantDL-NGU-UP-TNLInformation ProtocolIE-ID ::= 192 + id-RedundantDLQosFlowPerTNLInformation ProtocolIE-ID ::= 193 + id-RedundantQosFlowIndicator ProtocolIE-ID ::= 194 + id-RedundantUL-NGU-UP-TNLInformation ProtocolIE-ID ::= 195 + id-TSCTrafficCharacteristics ProtocolIE-ID ::= 196 + id-RedundantPDUSessionInformation ProtocolIE-ID ::= 197 + id-UsedRSNInformation ProtocolIE-ID ::= 198 + id-IAB-Authorized ProtocolIE-ID ::= 199 + id-IAB-Supported ProtocolIE-ID ::= 200 + id-IABNodeIndication ProtocolIE-ID ::= 201 + id-NB-IoT-PagingDRX ProtocolIE-ID ::= 202 + id-NB-IoT-Paging-eDRXInfo ProtocolIE-ID ::= 203 + id-NB-IoT-DefaultPagingDRX ProtocolIE-ID ::= 204 + id-Enhanced-CoverageRestriction ProtocolIE-ID ::= 205 + id-Extended-ConnectedTime ProtocolIE-ID ::= 206 + id-PagingAssisDataforCEcapabUE ProtocolIE-ID ::= 207 + id-WUS-Assistance-Information ProtocolIE-ID ::= 208 + id-UE-DifferentiationInfo ProtocolIE-ID ::= 209 + id-NB-IoT-UEPriority ProtocolIE-ID ::= 210 + id-UL-CP-SecurityInformation ProtocolIE-ID ::= 211 + id-DL-CP-SecurityInformation ProtocolIE-ID ::= 212 + id-TAI ProtocolIE-ID ::= 213 + id-UERadioCapabilityForPagingOfNB-IoT ProtocolIE-ID ::= 214 + id-LTEV2XServicesAuthorized ProtocolIE-ID ::= 215 + id-NRV2XServicesAuthorized ProtocolIE-ID ::= 216 + id-LTEUESidelinkAggregateMaximumBitrate ProtocolIE-ID ::= 217 + id-NRUESidelinkAggregateMaximumBitrate ProtocolIE-ID ::= 218 + id-PC5QoSParameters ProtocolIE-ID ::= 219 + id-AlternativeQoSParaSetList ProtocolIE-ID ::= 220 + id-CurrentQoSParaSetIndex ProtocolIE-ID ::= 221 + id-CEmodeBrestricted ProtocolIE-ID ::= 222 + id-PagingeDRXInformation ProtocolIE-ID ::= 223 + id-CEmodeBSupport-Indicator ProtocolIE-ID ::= 224 + id-LTEM-Indication ProtocolIE-ID ::= 225 + id-EndIndication ProtocolIE-ID ::= 226 + id-EDT-Session ProtocolIE-ID ::= 227 + id-UECapabilityInfoRequest ProtocolIE-ID ::= 228 + id-PDUSessionResourceFailedToResumeListRESReq ProtocolIE-ID ::= 229 + id-PDUSessionResourceFailedToResumeListRESRes ProtocolIE-ID ::= 230 + id-PDUSessionResourceSuspendListSUSReq ProtocolIE-ID ::= 231 + id-PDUSessionResourceResumeListRESReq ProtocolIE-ID ::= 232 + id-PDUSessionResourceResumeListRESRes ProtocolIE-ID ::= 233 + id-UE-UP-CIoT-Support ProtocolIE-ID ::= 234 + id-Suspend-Request-Indication ProtocolIE-ID ::= 235 + id-Suspend-Response-Indication ProtocolIE-ID ::= 236 + id-RRC-Resume-Cause ProtocolIE-ID ::= 237 + id-RGLevelWirelineAccessCharacteristics ProtocolIE-ID ::= 238 + id-W-AGFIdentityInformation ProtocolIE-ID ::= 239 + id-GlobalTNGF-ID ProtocolIE-ID ::= 240 + id-GlobalTWIF-ID ProtocolIE-ID ::= 241 + id-GlobalW-AGF-ID ProtocolIE-ID ::= 242 + id-UserLocationInformationW-AGF ProtocolIE-ID ::= 243 + id-UserLocationInformationTNGF ProtocolIE-ID ::= 244 + id-AuthenticatedIndication ProtocolIE-ID ::= 245 + id-TNGFIdentityInformation ProtocolIE-ID ::= 246 + id-TWIFIdentityInformation ProtocolIE-ID ::= 247 + id-UserLocationInformationTWIF ProtocolIE-ID ::= 248 + id-DataForwardingResponseERABList ProtocolIE-ID ::= 249 + id-IntersystemSONConfigurationTransferDL ProtocolIE-ID ::= 250 + id-IntersystemSONConfigurationTransferUL ProtocolIE-ID ::= 251 + id-SONInformationReport ProtocolIE-ID ::= 252 + id-UEHistoryInformationFromTheUE ProtocolIE-ID ::= 253 + id-ManagementBasedMDTPLMNList ProtocolIE-ID ::= 254 + id-MDTConfiguration ProtocolIE-ID ::= 255 + id-PrivacyIndicator ProtocolIE-ID ::= 256 + id-TraceCollectionEntityURI ProtocolIE-ID ::= 257 + id-NPN-Support ProtocolIE-ID ::= 258 + id-NPN-AccessInformation ProtocolIE-ID ::= 259 + id-NPN-PagingAssistanceInformation ProtocolIE-ID ::= 260 + id-NPN-MobilityInformation ProtocolIE-ID ::= 261 + id-TargettoSource-Failure-TransparentContainer ProtocolIE-ID ::= 262 + id-NID ProtocolIE-ID ::= 263 + id-UERadioCapabilityID ProtocolIE-ID ::= 264 + id-UERadioCapability-EUTRA-Format ProtocolIE-ID ::= 265 + id-DAPSRequestInfo ProtocolIE-ID ::= 266 + id-DAPSResponseInfoList ProtocolIE-ID ::= 267 + id-EarlyStatusTransfer-TransparentContainer ProtocolIE-ID ::= 268 + id-NotifySourceNGRANNode ProtocolIE-ID ::= 269 + id-ExtendedSliceSupportList ProtocolIE-ID ::= 270 + id-ExtendedTAISliceSupportList ProtocolIE-ID ::= 271 + id-ConfiguredTACIndication ProtocolIE-ID ::= 272 + id-Extended-RANNodeName ProtocolIE-ID ::= 273 + id-Extended-AMFName ProtocolIE-ID ::= 274 + id-GlobalCable-ID ProtocolIE-ID ::= 275 + id-QosMonitoringReportingFrequency ProtocolIE-ID ::= 276 + id-QosFlowParametersList ProtocolIE-ID ::= 277 + id-QosFlowFeedbackList ProtocolIE-ID ::= 278 + id-BurstArrivalTimeDownlink ProtocolIE-ID ::= 279 + id-ExtendedUEIdentityIndexValue ProtocolIE-ID ::= 280 + id-PduSessionExpectedUEActivityBehaviour ProtocolIE-ID ::= 281 + id-MicoAllPLMN ProtocolIE-ID ::= 282 + id-QosFlowFailedToSetupList ProtocolIE-ID ::= 283 + +END +-- ASN1STOP + +-- ASN1START +-- ************************************************************** +-- +-- Container definitions +-- +-- ************************************************************** + +NGAP-Containers { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-Containers (5) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + Criticality, + Presence, + PrivateIE-ID, + ProtocolExtensionID, + ProtocolIE-ID +FROM NGAP-CommonDataTypes + + maxPrivateIEs, + maxProtocolExtensions, + maxProtocolIEs +FROM NGAP-Constants; + +-- ************************************************************** +-- +-- Class Definition for Protocol IEs +-- +-- ************************************************************** + +NGAP-PROTOCOL-IES ::= CLASS { + &id ProtocolIE-ID UNIQUE, + &criticality Criticality, + &Value, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + TYPE &Value + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Protocol IEs +-- +-- ************************************************************** + +NGAP-PROTOCOL-IES-PAIR ::= CLASS { + &id ProtocolIE-ID UNIQUE, + &firstCriticality Criticality, + &FirstValue, + &secondCriticality Criticality, + &SecondValue, + &presence Presence +} +WITH SYNTAX { + ID &id + FIRST CRITICALITY &firstCriticality + FIRST TYPE &FirstValue + SECOND CRITICALITY &secondCriticality + SECOND TYPE &SecondValue + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Protocol Extensions +-- +-- ************************************************************** + +NGAP-PROTOCOL-EXTENSION ::= CLASS { + &id ProtocolExtensionID UNIQUE, + &criticality Criticality, + &Extension, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + EXTENSION &Extension + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Private IEs +-- +-- ************************************************************** + +NGAP-PRIVATE-IES ::= CLASS { + &id PrivateIE-ID, + &criticality Criticality, + &Value, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + TYPE &Value + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Container for Protocol IEs +-- +-- ************************************************************** + +ProtocolIE-Container {NGAP-PROTOCOL-IES : IEsSetParam} ::= + SEQUENCE (SIZE (0..maxProtocolIEs)) OF + ProtocolIE-Field {{IEsSetParam}} + +ProtocolIE-SingleContainer {NGAP-PROTOCOL-IES : IEsSetParam} ::= + ProtocolIE-Field {{IEsSetParam}} + +ProtocolIE-Field {NGAP-PROTOCOL-IES : IEsSetParam} ::= SEQUENCE { + id NGAP-PROTOCOL-IES.&id ({IEsSetParam}), + criticality NGAP-PROTOCOL-IES.&criticality ({IEsSetParam}{@id}), + value NGAP-PROTOCOL-IES.&Value ({IEsSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container for Protocol IE Pairs +-- +-- ************************************************************** + +ProtocolIE-ContainerPair {NGAP-PROTOCOL-IES-PAIR : IEsSetParam} ::= + SEQUENCE (SIZE (0..maxProtocolIEs)) OF + ProtocolIE-FieldPair {{IEsSetParam}} + +ProtocolIE-FieldPair {NGAP-PROTOCOL-IES-PAIR : IEsSetParam} ::= SEQUENCE { + id NGAP-PROTOCOL-IES-PAIR.&id ({IEsSetParam}), + firstCriticality NGAP-PROTOCOL-IES-PAIR.&firstCriticality ({IEsSetParam}{@id}), + firstValue NGAP-PROTOCOL-IES-PAIR.&FirstValue ({IEsSetParam}{@id}), + secondCriticality NGAP-PROTOCOL-IES-PAIR.&secondCriticality ({IEsSetParam}{@id}), + secondValue NGAP-PROTOCOL-IES-PAIR.&SecondValue ({IEsSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container Lists for Protocol IE Containers +-- +-- ************************************************************** + +ProtocolIE-ContainerList {INTEGER : lowerBound, INTEGER : upperBound, NGAP-PROTOCOL-IES : IEsSetParam} ::= + SEQUENCE (SIZE (lowerBound..upperBound)) OF + ProtocolIE-SingleContainer {{IEsSetParam}} + +ProtocolIE-ContainerPairList {INTEGER : lowerBound, INTEGER : upperBound, NGAP-PROTOCOL-IES-PAIR : IEsSetParam} ::= + SEQUENCE (SIZE (lowerBound..upperBound)) OF + ProtocolIE-ContainerPair {{IEsSetParam}} + +-- ************************************************************** +-- +-- Container for Protocol Extensions +-- +-- ************************************************************** + +ProtocolExtensionContainer {NGAP-PROTOCOL-EXTENSION : ExtensionSetParam} ::= + SEQUENCE (SIZE (1..maxProtocolExtensions)) OF + ProtocolExtensionField {{ExtensionSetParam}} + +ProtocolExtensionField {NGAP-PROTOCOL-EXTENSION : ExtensionSetParam} ::= SEQUENCE { + id NGAP-PROTOCOL-EXTENSION.&id ({ExtensionSetParam}), + criticality NGAP-PROTOCOL-EXTENSION.&criticality ({ExtensionSetParam}{@id}), + extensionValue NGAP-PROTOCOL-EXTENSION.&Extension ({ExtensionSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container for Private IEs +-- +-- ************************************************************** + +PrivateIE-Container {NGAP-PRIVATE-IES : IEsSetParam } ::= + SEQUENCE (SIZE (1..maxPrivateIEs)) OF + PrivateIE-Field {{IEsSetParam}} + +PrivateIE-Field {NGAP-PRIVATE-IES : IEsSetParam} ::= SEQUENCE { + id NGAP-PRIVATE-IES.&id ({IEsSetParam}), + criticality NGAP-PRIVATE-IES.&criticality ({IEsSetParam}{@id}), + value NGAP-PRIVATE-IES.&Value ({IEsSetParam}{@id}) +} + +END +-- ASN1STOP + + diff --git a/lib/asn1c/support/ngap-r16.7.0/38413-g70.txt b/lib/asn1c/support/ngap-r16.7.0/38413-g70.txt new file mode 100644 index 000000000..0f5405d96 --- /dev/null +++ b/lib/asn1c/support/ngap-r16.7.0/38413-g70.txt @@ -0,0 +1,9658 @@ +9.4.3 Elementary Procedure Definitions +-- ASN1START +-- ************************************************************** +-- +-- Elementary Procedure definitions +-- +-- ************************************************************** + +NGAP-PDU-Descriptions { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-PDU-Descriptions (0)} + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + Criticality, + ProcedureCode +FROM NGAP-CommonDataTypes + + AMFConfigurationUpdate, + AMFConfigurationUpdateAcknowledge, + AMFConfigurationUpdateFailure, + AMFCPRelocationIndication, + AMFStatusIndication, + CellTrafficTrace, + ConnectionEstablishmentIndication, + DeactivateTrace, + DownlinkNASTransport, + DownlinkNonUEAssociatedNRPPaTransport, + DownlinkRANConfigurationTransfer, + DownlinkRANEarlyStatusTransfer, + DownlinkRANStatusTransfer, + DownlinkUEAssociatedNRPPaTransport, + ErrorIndication, + HandoverCancel, + HandoverCancelAcknowledge, + HandoverCommand, + HandoverFailure, + HandoverNotify, + HandoverPreparationFailure, + HandoverRequest, + HandoverRequestAcknowledge, + HandoverRequired, + HandoverSuccess, + InitialContextSetupFailure, + InitialContextSetupRequest, + InitialContextSetupResponse, + InitialUEMessage, + LocationReport, + LocationReportingControl, + LocationReportingFailureIndication, + NASNonDeliveryIndication, + NGReset, + NGResetAcknowledge, + NGSetupFailure, + NGSetupRequest, + NGSetupResponse, + OverloadStart, + OverloadStop, + Paging, + PathSwitchRequest, + PathSwitchRequestAcknowledge, + PathSwitchRequestFailure, + PDUSessionResourceModifyConfirm, + PDUSessionResourceModifyIndication, + PDUSessionResourceModifyRequest, + PDUSessionResourceModifyResponse, + PDUSessionResourceNotify, + PDUSessionResourceReleaseCommand, + PDUSessionResourceReleaseResponse, + PDUSessionResourceSetupRequest, + PDUSessionResourceSetupResponse, + PrivateMessage, + PWSCancelRequest, + PWSCancelResponse, + PWSFailureIndication, + PWSRestartIndication, + RANConfigurationUpdate, + RANConfigurationUpdateAcknowledge, + RANConfigurationUpdateFailure, + RANCPRelocationIndication, + RerouteNASRequest, + RetrieveUEInformation, + RRCInactiveTransitionReport, + SecondaryRATDataUsageReport, + TraceFailureIndication, + TraceStart, + UEContextModificationFailure, + UEContextModificationRequest, + UEContextModificationResponse, + UEContextReleaseCommand, + UEContextReleaseComplete, + UEContextReleaseRequest, + UEContextResumeRequest, + UEContextResumeResponse, + UEContextResumeFailure, + UEContextSuspendRequest, + UEContextSuspendResponse, + UEContextSuspendFailure, + UEInformationTransfer, + UERadioCapabilityCheckRequest, + UERadioCapabilityCheckResponse, + UERadioCapabilityIDMappingRequest, + UERadioCapabilityIDMappingResponse, + UERadioCapabilityInfoIndication, + UETNLABindingReleaseRequest, + UplinkNASTransport, + UplinkNonUEAssociatedNRPPaTransport, + UplinkRANConfigurationTransfer, + UplinkRANEarlyStatusTransfer, + UplinkRANStatusTransfer, + UplinkUEAssociatedNRPPaTransport, + WriteReplaceWarningRequest, + WriteReplaceWarningResponse, + UplinkRIMInformationTransfer, + DownlinkRIMInformationTransfer + +FROM NGAP-PDU-Contents + + id-AMFConfigurationUpdate, + id-AMFCPRelocationIndication, + id-AMFStatusIndication, + id-CellTrafficTrace, + id-ConnectionEstablishmentIndication, + id-DeactivateTrace, + id-DownlinkNASTransport, + id-DownlinkNonUEAssociatedNRPPaTransport, + id-DownlinkRANConfigurationTransfer, + id-DownlinkRANEarlyStatusTransfer, + id-DownlinkRANStatusTransfer, + id-DownlinkUEAssociatedNRPPaTransport, + id-ErrorIndication, + id-HandoverCancel, + id-HandoverNotification, + id-HandoverPreparation, + id-HandoverResourceAllocation, + id-HandoverSuccess, + id-InitialContextSetup, + id-InitialUEMessage, + id-LocationReport, + id-LocationReportingControl, + id-LocationReportingFailureIndication, + id-NASNonDeliveryIndication, + id-NGReset, + id-NGSetup, + id-OverloadStart, + id-OverloadStop, + id-Paging, + id-PathSwitchRequest, + id-PDUSessionResourceModify, + id-PDUSessionResourceModifyIndication, + id-PDUSessionResourceNotify, + id-PDUSessionResourceRelease, + id-PDUSessionResourceSetup, + id-PrivateMessage, + id-PWSCancel, + id-PWSFailureIndication, + id-PWSRestartIndication, + id-RANConfigurationUpdate, + id-RANCPRelocationIndication, + id-RerouteNASRequest, + id-RetrieveUEInformation, + id-RRCInactiveTransitionReport, + id-SecondaryRATDataUsageReport, + id-TraceFailureIndication, + id-TraceStart, + id-UEContextModification, + id-UEContextRelease, + id-UEContextReleaseRequest, + id-UEContextResume, + id-UEContextSuspend, + id-UEInformationTransfer, + id-UERadioCapabilityCheck, + id-UERadioCapabilityIDMapping, + id-UERadioCapabilityInfoIndication, + id-UETNLABindingRelease, + id-UplinkNASTransport, + id-UplinkNonUEAssociatedNRPPaTransport, + id-UplinkRANConfigurationTransfer, + id-UplinkRANEarlyStatusTransfer, + id-UplinkRANStatusTransfer, + id-UplinkUEAssociatedNRPPaTransport, + id-WriteReplaceWarning, + id-UplinkRIMInformationTransfer, + id-DownlinkRIMInformationTransfer + +FROM NGAP-Constants; + +-- ************************************************************** +-- +-- Interface Elementary Procedure Class +-- +-- ************************************************************** + +NGAP-ELEMENTARY-PROCEDURE ::= CLASS { + &InitiatingMessage , + &SuccessfulOutcome OPTIONAL, + &UnsuccessfulOutcome OPTIONAL, + &procedureCode ProcedureCode UNIQUE, + &criticality Criticality DEFAULT ignore +} + +WITH SYNTAX { + INITIATING MESSAGE &InitiatingMessage + [SUCCESSFUL OUTCOME &SuccessfulOutcome] + [UNSUCCESSFUL OUTCOME &UnsuccessfulOutcome] + PROCEDURE CODE &procedureCode + [CRITICALITY &criticality] +} + +-- ************************************************************** +-- +-- Interface PDU Definition +-- +-- ************************************************************** + +NGAP-PDU ::= CHOICE { + initiatingMessage InitiatingMessage, + successfulOutcome SuccessfulOutcome, + unsuccessfulOutcome UnsuccessfulOutcome, + ... +} + +InitiatingMessage ::= SEQUENCE { + procedureCode NGAP-ELEMENTARY-PROCEDURE.&procedureCode ({NGAP-ELEMENTARY-PROCEDURES}), + criticality NGAP-ELEMENTARY-PROCEDURE.&criticality ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value NGAP-ELEMENTARY-PROCEDURE.&InitiatingMessage ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +SuccessfulOutcome ::= SEQUENCE { + procedureCode NGAP-ELEMENTARY-PROCEDURE.&procedureCode ({NGAP-ELEMENTARY-PROCEDURES}), + criticality NGAP-ELEMENTARY-PROCEDURE.&criticality ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value NGAP-ELEMENTARY-PROCEDURE.&SuccessfulOutcome ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +UnsuccessfulOutcome ::= SEQUENCE { + procedureCode NGAP-ELEMENTARY-PROCEDURE.&procedureCode ({NGAP-ELEMENTARY-PROCEDURES}), + criticality NGAP-ELEMENTARY-PROCEDURE.&criticality ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value NGAP-ELEMENTARY-PROCEDURE.&UnsuccessfulOutcome ({NGAP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +-- ************************************************************** +-- +-- Interface Elementary Procedure List +-- +-- ************************************************************** + +NGAP-ELEMENTARY-PROCEDURES NGAP-ELEMENTARY-PROCEDURE ::= { + NGAP-ELEMENTARY-PROCEDURES-CLASS-1 | + NGAP-ELEMENTARY-PROCEDURES-CLASS-2, + ... +} + +NGAP-ELEMENTARY-PROCEDURES-CLASS-1 NGAP-ELEMENTARY-PROCEDURE ::= { + aMFConfigurationUpdate | + handoverCancel | + handoverPreparation | + handoverResourceAllocation | + initialContextSetup | + nGReset | + nGSetup | + pathSwitchRequest | + pDUSessionResourceModify | + pDUSessionResourceModifyIndication | + pDUSessionResourceRelease | + pDUSessionResourceSetup | + pWSCancel | + rANConfigurationUpdate | + uEContextModification | + uEContextRelease | + uEContextResume | + uEContextSuspend | + uERadioCapabilityCheck | + uERadioCapabilityIDMapping | + writeReplaceWarning, + ... +} + +NGAP-ELEMENTARY-PROCEDURES-CLASS-2 NGAP-ELEMENTARY-PROCEDURE ::= { + aMFCPRelocationIndication | + aMFStatusIndication | + cellTrafficTrace | + connectionEstablishmentIndication | + deactivateTrace | + downlinkNASTransport | + downlinkNonUEAssociatedNRPPaTransport | + downlinkRANConfigurationTransfer | + downlinkRANEarlyStatusTransfer | + downlinkRANStatusTransfer | + downlinkRIMInformationTransfer | + downlinkUEAssociatedNRPPaTransport | + errorIndication | + handoverNotification | + handoverSuccess | + initialUEMessage | + locationReport | + locationReportingControl | + locationReportingFailureIndication | + nASNonDeliveryIndication | + overloadStart | + overloadStop | + paging | + pDUSessionResourceNotify | + privateMessage | + pWSFailureIndication | + pWSRestartIndication | + rANCPRelocationIndication | + rerouteNASRequest | + retrieveUEInformation | + rRCInactiveTransitionReport | + secondaryRATDataUsageReport | + traceFailureIndication | + traceStart | + uEContextReleaseRequest | + uEInformationTransfer | + uERadioCapabilityInfoIndication | + uETNLABindingRelease | + uplinkNASTransport | + uplinkNonUEAssociatedNRPPaTransport | + uplinkRANConfigurationTransfer | + uplinkRANEarlyStatusTransfer | + uplinkRANStatusTransfer | + uplinkRIMInformationTransfer | + uplinkUEAssociatedNRPPaTransport, + ... + +} + +-- ************************************************************** +-- +-- Interface Elementary Procedures +-- +-- ************************************************************** + +aMFConfigurationUpdate NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE AMFConfigurationUpdate + SUCCESSFUL OUTCOME AMFConfigurationUpdateAcknowledge + UNSUCCESSFUL OUTCOME AMFConfigurationUpdateFailure + PROCEDURE CODE id-AMFConfigurationUpdate + CRITICALITY reject +} + +aMFCPRelocationIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE AMFCPRelocationIndication + PROCEDURE CODE id-AMFCPRelocationIndication + CRITICALITY reject +} + +aMFStatusIndication NGAP-ELEMENTARY-PROCEDURE ::={ + INITIATING MESSAGE AMFStatusIndication + PROCEDURE CODE id-AMFStatusIndication + CRITICALITY ignore +} + +cellTrafficTrace NGAP-ELEMENTARY-PROCEDURE ::={ + INITIATING MESSAGE CellTrafficTrace + PROCEDURE CODE id-CellTrafficTrace + CRITICALITY ignore +} + +connectionEstablishmentIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ConnectionEstablishmentIndication + PROCEDURE CODE id-ConnectionEstablishmentIndication + CRITICALITY reject +} + +deactivateTrace NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DeactivateTrace + PROCEDURE CODE id-DeactivateTrace + CRITICALITY ignore +} + +downlinkNASTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkNASTransport + PROCEDURE CODE id-DownlinkNASTransport + CRITICALITY ignore +} + +downlinkNonUEAssociatedNRPPaTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkNonUEAssociatedNRPPaTransport + PROCEDURE CODE id-DownlinkNonUEAssociatedNRPPaTransport + CRITICALITY ignore +} + +downlinkRANConfigurationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkRANConfigurationTransfer + PROCEDURE CODE id-DownlinkRANConfigurationTransfer + CRITICALITY ignore +} + +downlinkRANEarlyStatusTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkRANEarlyStatusTransfer + PROCEDURE CODE id-DownlinkRANEarlyStatusTransfer + CRITICALITY ignore +} + +downlinkRANStatusTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkRANStatusTransfer + PROCEDURE CODE id-DownlinkRANStatusTransfer + CRITICALITY ignore +} + +downlinkUEAssociatedNRPPaTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkUEAssociatedNRPPaTransport + PROCEDURE CODE id-DownlinkUEAssociatedNRPPaTransport + CRITICALITY ignore +} + +errorIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ErrorIndication + PROCEDURE CODE id-ErrorIndication + CRITICALITY ignore +} + +handoverCancel NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverCancel + SUCCESSFUL OUTCOME HandoverCancelAcknowledge + PROCEDURE CODE id-HandoverCancel + CRITICALITY reject +} + +handoverNotification NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverNotify + PROCEDURE CODE id-HandoverNotification + CRITICALITY ignore +} + +handoverPreparation NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverRequired + SUCCESSFUL OUTCOME HandoverCommand + UNSUCCESSFUL OUTCOME HandoverPreparationFailure + PROCEDURE CODE id-HandoverPreparation + CRITICALITY reject +} + +handoverResourceAllocation NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverRequest + SUCCESSFUL OUTCOME HandoverRequestAcknowledge + UNSUCCESSFUL OUTCOME HandoverFailure + PROCEDURE CODE id-HandoverResourceAllocation + CRITICALITY reject +} + +handoverSuccess NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverSuccess + PROCEDURE CODE id-HandoverSuccess + CRITICALITY ignore +} + +initialContextSetup NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE InitialContextSetupRequest + SUCCESSFUL OUTCOME InitialContextSetupResponse + UNSUCCESSFUL OUTCOME InitialContextSetupFailure + PROCEDURE CODE id-InitialContextSetup + CRITICALITY reject +} + +initialUEMessage NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE InitialUEMessage + PROCEDURE CODE id-InitialUEMessage + CRITICALITY ignore +} + +locationReport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReport + PROCEDURE CODE id-LocationReport + CRITICALITY ignore +} + +locationReportingControl NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReportingControl + PROCEDURE CODE id-LocationReportingControl + CRITICALITY ignore +} + +locationReportingFailureIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReportingFailureIndication + PROCEDURE CODE id-LocationReportingFailureIndication + CRITICALITY ignore +} + +nASNonDeliveryIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NASNonDeliveryIndication + PROCEDURE CODE id-NASNonDeliveryIndication + CRITICALITY ignore +} + +nGReset NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NGReset + SUCCESSFUL OUTCOME NGResetAcknowledge + PROCEDURE CODE id-NGReset + CRITICALITY reject +} + +nGSetup NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NGSetupRequest + SUCCESSFUL OUTCOME NGSetupResponse + UNSUCCESSFUL OUTCOME NGSetupFailure + PROCEDURE CODE id-NGSetup + CRITICALITY reject +} + +overloadStart NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE OverloadStart + PROCEDURE CODE id-OverloadStart + CRITICALITY ignore +} + +overloadStop NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE OverloadStop + PROCEDURE CODE id-OverloadStop + CRITICALITY reject +} + +paging NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE Paging + PROCEDURE CODE id-Paging + CRITICALITY ignore +} + +pathSwitchRequest NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PathSwitchRequest + SUCCESSFUL OUTCOME PathSwitchRequestAcknowledge + UNSUCCESSFUL OUTCOME PathSwitchRequestFailure + PROCEDURE CODE id-PathSwitchRequest + CRITICALITY reject +} + +pDUSessionResourceModify NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceModifyRequest + SUCCESSFUL OUTCOME PDUSessionResourceModifyResponse + PROCEDURE CODE id-PDUSessionResourceModify + CRITICALITY reject +} + +pDUSessionResourceModifyIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceModifyIndication + SUCCESSFUL OUTCOME PDUSessionResourceModifyConfirm + PROCEDURE CODE id-PDUSessionResourceModifyIndication + CRITICALITY reject +} + +pDUSessionResourceNotify NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceNotify + PROCEDURE CODE id-PDUSessionResourceNotify + CRITICALITY ignore +} + +pDUSessionResourceRelease NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceReleaseCommand + SUCCESSFUL OUTCOME PDUSessionResourceReleaseResponse + PROCEDURE CODE id-PDUSessionResourceRelease + CRITICALITY reject +} + +pDUSessionResourceSetup NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PDUSessionResourceSetupRequest + SUCCESSFUL OUTCOME PDUSessionResourceSetupResponse + PROCEDURE CODE id-PDUSessionResourceSetup + CRITICALITY reject +} + +privateMessage NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PrivateMessage + PROCEDURE CODE id-PrivateMessage + CRITICALITY ignore +} + +pWSCancel NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSCancelRequest + SUCCESSFUL OUTCOME PWSCancelResponse + PROCEDURE CODE id-PWSCancel + CRITICALITY reject +} + +pWSFailureIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSFailureIndication + PROCEDURE CODE id-PWSFailureIndication + CRITICALITY ignore +} + +pWSRestartIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSRestartIndication + PROCEDURE CODE id-PWSRestartIndication + CRITICALITY ignore +} + +rANConfigurationUpdate NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RANConfigurationUpdate + SUCCESSFUL OUTCOME RANConfigurationUpdateAcknowledge + UNSUCCESSFUL OUTCOME RANConfigurationUpdateFailure + PROCEDURE CODE id-RANConfigurationUpdate + CRITICALITY reject +} + +rANCPRelocationIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RANCPRelocationIndication + PROCEDURE CODE id-RANCPRelocationIndication + CRITICALITY reject +} + +rerouteNASRequest NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RerouteNASRequest + PROCEDURE CODE id-RerouteNASRequest + CRITICALITY reject +} + + +retrieveUEInformation NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RetrieveUEInformation + PROCEDURE CODE id-RetrieveUEInformation + CRITICALITY reject +} + +rRCInactiveTransitionReport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RRCInactiveTransitionReport + PROCEDURE CODE id-RRCInactiveTransitionReport + CRITICALITY ignore +} + +secondaryRATDataUsageReport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE SecondaryRATDataUsageReport + PROCEDURE CODE id-SecondaryRATDataUsageReport + CRITICALITY ignore +} + +traceFailureIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE TraceFailureIndication + PROCEDURE CODE id-TraceFailureIndication + CRITICALITY ignore +} + +traceStart NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE TraceStart + PROCEDURE CODE id-TraceStart + CRITICALITY ignore +} + +uEContextModification NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextModificationRequest + SUCCESSFUL OUTCOME UEContextModificationResponse + UNSUCCESSFUL OUTCOME UEContextModificationFailure + PROCEDURE CODE id-UEContextModification + CRITICALITY reject +} + +uEContextRelease NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextReleaseCommand + SUCCESSFUL OUTCOME UEContextReleaseComplete + PROCEDURE CODE id-UEContextRelease + CRITICALITY reject +} + +uEContextReleaseRequest NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextReleaseRequest + PROCEDURE CODE id-UEContextReleaseRequest + CRITICALITY ignore +} + +uEContextResume NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextResumeRequest + SUCCESSFUL OUTCOME UEContextResumeResponse + UNSUCCESSFUL OUTCOME UEContextResumeFailure + PROCEDURE CODE id-UEContextResume + CRITICALITY reject +} + +uEContextSuspend NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextSuspendRequest + SUCCESSFUL OUTCOME UEContextSuspendResponse + UNSUCCESSFUL OUTCOME UEContextSuspendFailure + PROCEDURE CODE id-UEContextSuspend + CRITICALITY reject +} + +uEInformationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEInformationTransfer + PROCEDURE CODE id-UEInformationTransfer + CRITICALITY reject +} + +uERadioCapabilityCheck NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityCheckRequest + SUCCESSFUL OUTCOME UERadioCapabilityCheckResponse + PROCEDURE CODE id-UERadioCapabilityCheck + CRITICALITY reject +} + +uERadioCapabilityIDMapping NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityIDMappingRequest + SUCCESSFUL OUTCOME UERadioCapabilityIDMappingResponse + PROCEDURE CODE id-UERadioCapabilityIDMapping + CRITICALITY reject +} + +uERadioCapabilityInfoIndication NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityInfoIndication + PROCEDURE CODE id-UERadioCapabilityInfoIndication + CRITICALITY ignore +} + +uETNLABindingRelease NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UETNLABindingReleaseRequest + PROCEDURE CODE id-UETNLABindingRelease + CRITICALITY ignore +} + +uplinkNASTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkNASTransport + PROCEDURE CODE id-UplinkNASTransport + CRITICALITY ignore +} + +uplinkNonUEAssociatedNRPPaTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkNonUEAssociatedNRPPaTransport + PROCEDURE CODE id-UplinkNonUEAssociatedNRPPaTransport + CRITICALITY ignore +} + +uplinkRANConfigurationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkRANConfigurationTransfer + PROCEDURE CODE id-UplinkRANConfigurationTransfer + CRITICALITY ignore +} + +uplinkRANEarlyStatusTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkRANEarlyStatusTransfer + PROCEDURE CODE id-UplinkRANEarlyStatusTransfer + CRITICALITY reject +} + +uplinkRANStatusTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkRANStatusTransfer + PROCEDURE CODE id-UplinkRANStatusTransfer + CRITICALITY ignore +} + +uplinkUEAssociatedNRPPaTransport NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkUEAssociatedNRPPaTransport + PROCEDURE CODE id-UplinkUEAssociatedNRPPaTransport + CRITICALITY ignore +} + +writeReplaceWarning NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE WriteReplaceWarningRequest + SUCCESSFUL OUTCOME WriteReplaceWarningResponse + PROCEDURE CODE id-WriteReplaceWarning + CRITICALITY reject +} + +uplinkRIMInformationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkRIMInformationTransfer + PROCEDURE CODE id-UplinkRIMInformationTransfer + CRITICALITY ignore +} + +downlinkRIMInformationTransfer NGAP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkRIMInformationTransfer + PROCEDURE CODE id-DownlinkRIMInformationTransfer + CRITICALITY ignore +} + +END +-- ASN1STOP + +9.4.4 PDU Definitions +-- ASN1START +-- ************************************************************** +-- +-- PDU definitions for NGAP. +-- +-- ************************************************************** + +NGAP-PDU-Contents { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-PDU-Contents (1) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + AllowedNSSAI, + AMFName, + AMFSetID, + AMF-TNLAssociationSetupList, + AMF-TNLAssociationToAddList, + AMF-TNLAssociationToRemoveList, + AMF-TNLAssociationToUpdateList, + AMF-UE-NGAP-ID, + AssistanceDataForPaging, + AuthenticatedIndication, + BroadcastCancelledAreaList, + BroadcastCompletedAreaList, + CancelAllWarningMessages, + Cause, + CellIDListForRestart, + CEmodeBrestricted, + CEmodeBSupport-Indicator, + CNAssistedRANTuning, + ConcurrentWarningMessageInd, + CoreNetworkAssistanceInformationForInactive, + CPTransportLayerInformation, + CriticalityDiagnostics, + DataCodingScheme, + DL-CP-SecurityInformation, + DirectForwardingPathAvailability, + EarlyStatusTransfer-TransparentContainer, + EDT-Session, + EmergencyAreaIDListForRestart, + EmergencyFallbackIndicator, + EN-DCSONConfigurationTransfer, + EndIndication, + Enhanced-CoverageRestriction, + EUTRA-CGI, + Extended-AMFName, + Extended-ConnectedTime, + Extended-RANNodeName, + FiveG-S-TMSI, + GlobalRANNodeID, + GUAMI, + HandoverFlag, + HandoverType, + IAB-Authorized, + IAB-Supported, + IABNodeIndication, + IMSVoiceSupportIndicator, + IndexToRFSP, + InfoOnRecommendedCellsAndRANNodesForPaging, + IntersystemSONConfigurationTransfer, + LAI, + LTEM-Indication, + LocationReportingRequestType, + LTEUESidelinkAggregateMaximumBitrate, + LTEV2XServicesAuthorized, + MaskedIMEISV, + MessageIdentifier, + MDTPLMNList, + MobilityRestrictionList, + NAS-PDU, + NASSecurityParametersFromNGRAN, + NB-IoT-DefaultPagingDRX, + NB-IoT-PagingDRX, + NB-IoT-Paging-eDRXInfo, + NB-IoT-UEPriority, + NewSecurityContextInd, + NGRAN-CGI, + NGRAN-TNLAssociationToRemoveList, + NGRANTraceID, + NotifySourceNGRANNode, + NPN-AccessInformation, + NR-CGI, + NRPPa-PDU, + NumberOfBroadcastsRequested, + NRUESidelinkAggregateMaximumBitrate, + NRV2XServicesAuthorized, + OverloadResponse, + OverloadStartNSSAIList, + PagingAssisDataforCEcapabUE, + PagingDRX, + PagingOrigin, + PagingPriority, + PagingeDRXInformation, + PDUSessionAggregateMaximumBitRate, + PDUSessionResourceAdmittedList, + PDUSessionResourceFailedToModifyListModCfm, + PDUSessionResourceFailedToModifyListModRes, + PDUSessionResourceFailedToResumeListRESReq, + PDUSessionResourceFailedToResumeListRESRes, + PDUSessionResourceFailedToSetupListCxtFail, + PDUSessionResourceFailedToSetupListCxtRes, + PDUSessionResourceFailedToSetupListHOAck, + PDUSessionResourceFailedToSetupListPSReq, + PDUSessionResourceFailedToSetupListSURes, + PDUSessionResourceHandoverList, + PDUSessionResourceListCxtRelCpl, + PDUSessionResourceListCxtRelReq, + PDUSessionResourceListHORqd, + PDUSessionResourceModifyListModCfm, + PDUSessionResourceModifyListModInd, + PDUSessionResourceModifyListModReq, + PDUSessionResourceModifyListModRes, + PDUSessionResourceNotifyList, + PDUSessionResourceReleasedListNot, + PDUSessionResourceReleasedListPSAck, + PDUSessionResourceReleasedListPSFail, + PDUSessionResourceReleasedListRelRes, + PDUSessionResourceResumeListRESReq, + PDUSessionResourceResumeListRESRes, + PDUSessionResourceSecondaryRATUsageList, + PDUSessionResourceSetupListCxtReq, + PDUSessionResourceSetupListCxtRes, + PDUSessionResourceSetupListHOReq, + PDUSessionResourceSetupListSUReq, + PDUSessionResourceSetupListSURes, + PDUSessionResourceSuspendListSUSReq, + PDUSessionResourceSwitchedList, + PDUSessionResourceToBeSwitchedDLList, + PDUSessionResourceToReleaseListHOCmd, + PDUSessionResourceToReleaseListRelCmd, + PLMNIdentity, + PLMNSupportList, + PrivacyIndicator, + PWSFailedCellIDList, + PC5QoSParameters, + RANNodeName, + RANPagingPriority, + RANStatusTransfer-TransparentContainer, + RAN-UE-NGAP-ID, + RedirectionVoiceFallback, + RelativeAMFCapacity, + RepetitionPeriod, + ResetType, + RGLevelWirelineAccessCharacteristics, + RoutingID, + RRCEstablishmentCause, + RRCInactiveTransitionReportRequest, + RRCState, + SecurityContext, + SecurityKey, + SerialNumber, + ServedGUAMIList, + SliceSupportList, + S-NSSAI, + SONConfigurationTransfer, + SourceToTarget-TransparentContainer, + SourceToTarget-AMFInformationReroute, + SRVCCOperationPossible, + SupportedTAList, + Suspend-Request-Indication, + Suspend-Response-Indication, + TAI, + TAIListForPaging, + TAIListForRestart, + TargetID, + TargetToSource-TransparentContainer, + TargettoSource-Failure-TransparentContainer, + TimeToWait, + TNLAssociationList, + TraceActivation, + TrafficLoadReductionIndication, + TransportLayerAddress, + UEAggregateMaximumBitRate, + UE-associatedLogicalNG-connectionList, + UECapabilityInfoRequest, + UEContextRequest, + UE-DifferentiationInfo, + UE-NGAP-IDs, + UEPagingIdentity, + UEPresenceInAreaOfInterestList, + UERadioCapability, + UERadioCapabilityForPaging, + UERadioCapabilityID, + UERetentionInformation, + UESecurityCapabilities, + UE-UP-CIoT-Support, + UL-CP-SecurityInformation, + UnavailableGUAMIList, + URI-address, + UserLocationInformation, + WarningAreaCoordinates, + WarningAreaList, + WarningMessageContents, + WarningSecurityInfo, + WarningType, + WUS-Assistance-Information, + RIMInformationTransfer + +FROM NGAP-IEs + + PrivateIE-Container{}, + ProtocolExtensionContainer{}, + ProtocolIE-Container{}, + ProtocolIE-ContainerList{}, + ProtocolIE-ContainerPair{}, + ProtocolIE-SingleContainer{}, + NGAP-PRIVATE-IES, + NGAP-PROTOCOL-EXTENSION, + NGAP-PROTOCOL-IES, + NGAP-PROTOCOL-IES-PAIR +FROM NGAP-Containers + + id-AllowedNSSAI, + id-AMFName, + id-AMFOverloadResponse, + id-AMFSetID, + id-AMF-TNLAssociationFailedToSetupList, + id-AMF-TNLAssociationSetupList, + id-AMF-TNLAssociationToAddList, + id-AMF-TNLAssociationToRemoveList, + id-AMF-TNLAssociationToUpdateList, + id-AMFTrafficLoadReductionIndication, + id-AMF-UE-NGAP-ID, + id-AssistanceDataForPaging, + id-AuthenticatedIndication, + id-BroadcastCancelledAreaList, + id-BroadcastCompletedAreaList, + id-CancelAllWarningMessages, + id-Cause, + id-CellIDListForRestart, + id-CEmodeBrestricted, + id-CEmodeBSupport-Indicator, + id-CNAssistedRANTuning, + id-ConcurrentWarningMessageInd, + id-CoreNetworkAssistanceInformationForInactive, + id-CriticalityDiagnostics, + id-DataCodingScheme, + id-DefaultPagingDRX, + id-DirectForwardingPathAvailability, + id-DL-CP-SecurityInformation, + id-EarlyStatusTransfer-TransparentContainer, + id-EDT-Session, + id-EmergencyAreaIDListForRestart, + id-EmergencyFallbackIndicator, + id-ENDC-SONConfigurationTransferDL, + id-ENDC-SONConfigurationTransferUL, + id-EndIndication, + id-Enhanced-CoverageRestriction, + id-EUTRA-CGI, + id-Extended-AMFName, + id-Extended-ConnectedTime, + id-Extended-RANNodeName, + id-FiveG-S-TMSI, + id-GlobalRANNodeID, + id-GUAMI, + id-HandoverFlag, + id-HandoverType, + id-IAB-Authorized, + id-IAB-Supported, + id-IABNodeIndication, + id-IMSVoiceSupportIndicator, + id-IndexToRFSP, + id-InfoOnRecommendedCellsAndRANNodesForPaging, + id-IntersystemSONConfigurationTransferDL, + id-IntersystemSONConfigurationTransferUL, + id-LocationReportingRequestType, + id-LTEM-Indication, + id-LTEV2XServicesAuthorized, + id-LTEUESidelinkAggregateMaximumBitrate, + id-ManagementBasedMDTPLMNList, + id-MaskedIMEISV, + id-MessageIdentifier, + id-MobilityRestrictionList, + id-NAS-PDU, + id-NASC, + id-NASSecurityParametersFromNGRAN, + id-NB-IoT-DefaultPagingDRX, + id-NB-IoT-PagingDRX, + id-NB-IoT-Paging-eDRXInfo, + id-NB-IoT-UEPriority, + id-NewAMF-UE-NGAP-ID, + id-NewGUAMI, + id-NewSecurityContextInd, + id-NGAP-Message, + id-NGRAN-CGI, + id-NGRAN-TNLAssociationToRemoveList, + id-NGRANTraceID, + id-NotifySourceNGRANNode, + id-NPN-AccessInformation, + id-NR-CGI, + id-NRPPa-PDU, + id-NRV2XServicesAuthorized, + id-NRUESidelinkAggregateMaximumBitrate, + id-NumberOfBroadcastsRequested, + id-OldAMF, + id-OverloadStartNSSAIList, + id-PagingAssisDataforCEcapabUE, + id-PagingDRX, + id-PagingeDRXInformation, + id-PagingOrigin, + id-PagingPriority, + id-PDUSessionResourceAdmittedList, + id-PDUSessionResourceFailedToModifyListModCfm, + id-PDUSessionResourceFailedToModifyListModRes, + id-PDUSessionResourceFailedToResumeListRESReq, + id-PDUSessionResourceFailedToResumeListRESRes, + id-PDUSessionResourceFailedToSetupListCxtFail, + id-PDUSessionResourceFailedToSetupListCxtRes, + id-PDUSessionResourceFailedToSetupListHOAck, + id-PDUSessionResourceFailedToSetupListPSReq, + id-PDUSessionResourceFailedToSetupListSURes, + id-PDUSessionResourceHandoverList, + id-PDUSessionResourceListCxtRelCpl, + id-PDUSessionResourceListCxtRelReq, + id-PDUSessionResourceListHORqd, + id-PDUSessionResourceModifyListModCfm, + id-PDUSessionResourceModifyListModInd, + id-PDUSessionResourceModifyListModReq, + id-PDUSessionResourceModifyListModRes, + id-PDUSessionResourceNotifyList, + id-PDUSessionResourceReleasedListNot, + id-PDUSessionResourceReleasedListPSAck, + id-PDUSessionResourceReleasedListPSFail, + id-PDUSessionResourceReleasedListRelRes, + id-PDUSessionResourceResumeListRESReq, + id-PDUSessionResourceResumeListRESRes, + id-PDUSessionResourceSecondaryRATUsageList, + id-PDUSessionResourceSetupListCxtReq, + id-PDUSessionResourceSetupListCxtRes, + id-PDUSessionResourceSetupListHOReq, + id-PDUSessionResourceSetupListSUReq, + id-PDUSessionResourceSetupListSURes, + id-PDUSessionResourceSuspendListSUSReq, + id-PDUSessionResourceSwitchedList, + id-PDUSessionResourceToBeSwitchedDLList, + id-PDUSessionResourceToReleaseListHOCmd, + id-PDUSessionResourceToReleaseListRelCmd, + id-PLMNSupportList, + id-PrivacyIndicator, + id-PWSFailedCellIDList, + id-PC5QoSParameters, + id-RANNodeName, + id-RANPagingPriority, + id-RANStatusTransfer-TransparentContainer, + id-RAN-UE-NGAP-ID, + id-RedirectionVoiceFallback, + id-RelativeAMFCapacity, + id-RepetitionPeriod, + id-ResetType, + id-RGLevelWirelineAccessCharacteristics, + id-RoutingID, + id-RRCEstablishmentCause, + id-RRCInactiveTransitionReportRequest, + id-RRC-Resume-Cause, + id-RRCState, + id-SecurityContext, + id-SecurityKey, + id-SelectedPLMNIdentity, + id-SerialNumber, + id-ServedGUAMIList, + id-SliceSupportList, + id-S-NSSAI, + id-SONConfigurationTransferDL, + id-SONConfigurationTransferUL, + id-SourceAMF-UE-NGAP-ID, + id-SourceToTarget-TransparentContainer, + id-SourceToTarget-AMFInformationReroute, + id-SRVCCOperationPossible, + id-SupportedTAList, + id-Suspend-Request-Indication, + id-Suspend-Response-Indication, + id-TAI, + id-TAIListForPaging, + id-TAIListForRestart, + id-TargetID, + id-TargetToSource-TransparentContainer, + id-TargettoSource-Failure-TransparentContainer, + id-TimeToWait, + id-TNGFIdentityInformation, + id-TraceActivation, + id-TraceCollectionEntityIPAddress, + id-TraceCollectionEntityURI, + id-TWIFIdentityInformation, + id-UEAggregateMaximumBitRate, + id-UE-associatedLogicalNG-connectionList, + id-UECapabilityInfoRequest, + id-UEContextRequest, + id-UE-DifferentiationInfo, + id-UE-NGAP-IDs, + id-UEPagingIdentity, + id-UEPresenceInAreaOfInterestList, + id-UERadioCapability, + id-UERadioCapabilityForPaging, + id-UERadioCapabilityID, + id-UERadioCapability-EUTRA-Format, + id-UERetentionInformation, + id-UESecurityCapabilities, + id-UE-UP-CIoT-Support, + id-UL-CP-SecurityInformation, + id-UnavailableGUAMIList, + id-UserLocationInformation, + id-W-AGFIdentityInformation, + id-WarningAreaCoordinates, + id-WarningAreaList, + id-WarningMessageContents, + id-WarningSecurityInfo, + id-WarningType, + id-WUS-Assistance-Information, + id-RIMInformationTransfer + +FROM NGAP-Constants; + +-- ************************************************************** +-- +-- PDU SESSION MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU Session Resource Setup Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE SETUP REQUEST +-- +-- ************************************************************** + +PDUSessionResourceSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceSetupRequestIEs} }, + ... +} + +PDUSessionResourceSetupRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE optional }| + { ID id-PDUSessionResourceSetupListSUReq CRITICALITY reject TYPE PDUSessionResourceSetupListSUReq PRESENCE mandatory }| + { ID id-UEAggregateMaximumBitRate CRITICALITY ignore TYPE UEAggregateMaximumBitRate PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE SETUP RESPONSE +-- +-- ************************************************************** + +PDUSessionResourceSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceSetupResponseIEs} }, + ... +} + +PDUSessionResourceSetupResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceSetupListSURes CRITICALITY ignore TYPE PDUSessionResourceSetupListSURes PRESENCE optional }| + { ID id-PDUSessionResourceFailedToSetupListSURes CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListSURes PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PDU Session Resource Release Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE RELEASE COMMAND +-- +-- ************************************************************** + +PDUSessionResourceReleaseCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceReleaseCommandIEs} }, + ... +} + +PDUSessionResourceReleaseCommandIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE optional }| + { ID id-PDUSessionResourceToReleaseListRelCmd CRITICALITY reject TYPE PDUSessionResourceToReleaseListRelCmd PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE RELEASE RESPONSE +-- +-- ************************************************************** + +PDUSessionResourceReleaseResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceReleaseResponseIEs} }, + ... +} + +PDUSessionResourceReleaseResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceReleasedListRelRes CRITICALITY ignore TYPE PDUSessionResourceReleasedListRelRes PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PDU Session Resource Modify Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE MODIFY REQUEST +-- +-- ************************************************************** + +PDUSessionResourceModifyRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyRequestIEs} }, + ... +} + +PDUSessionResourceModifyRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-PDUSessionResourceModifyListModReq CRITICALITY reject TYPE PDUSessionResourceModifyListModReq PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE MODIFY RESPONSE +-- +-- ************************************************************** + +PDUSessionResourceModifyResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyResponseIEs} }, + ... +} + +PDUSessionResourceModifyResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceModifyListModRes CRITICALITY ignore TYPE PDUSessionResourceModifyListModRes PRESENCE optional }| + { ID id-PDUSessionResourceFailedToModifyListModRes CRITICALITY ignore TYPE PDUSessionResourceFailedToModifyListModRes PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PDU Session Resource Notify Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE NOTIFY +-- +-- ************************************************************** + +PDUSessionResourceNotify ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceNotifyIEs} }, + ... +} + +PDUSessionResourceNotifyIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceNotifyList CRITICALITY reject TYPE PDUSessionResourceNotifyList PRESENCE optional }| + { ID id-PDUSessionResourceReleasedListNot CRITICALITY ignore TYPE PDUSessionResourceReleasedListNot PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PDU Session Resource Modify Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE MODIFY INDICATION +-- +-- ************************************************************** + +PDUSessionResourceModifyIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyIndicationIEs} }, + ... +} + +PDUSessionResourceModifyIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceModifyListModInd CRITICALITY reject TYPE PDUSessionResourceModifyListModInd PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PDU SESSION RESOURCE MODIFY CONFIRM +-- +-- ************************************************************** + +PDUSessionResourceModifyConfirm ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyConfirmIEs} }, + ... +} + +PDUSessionResourceModifyConfirmIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceModifyListModCfm CRITICALITY ignore TYPE PDUSessionResourceModifyListModCfm PRESENCE optional }| + { ID id-PDUSessionResourceFailedToModifyListModCfm CRITICALITY ignore TYPE PDUSessionResourceFailedToModifyListModCfm PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Initial Context Setup Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- INITIAL CONTEXT SETUP REQUEST +-- +-- ************************************************************** + +InitialContextSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupRequestIEs} }, + ... +} + +InitialContextSetupRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-OldAMF CRITICALITY reject TYPE AMFName PRESENCE optional }| + { ID id-UEAggregateMaximumBitRate CRITICALITY reject TYPE UEAggregateMaximumBitRate PRESENCE conditional }| + { ID id-CoreNetworkAssistanceInformationForInactive CRITICALITY ignore TYPE CoreNetworkAssistanceInformationForInactive PRESENCE optional }| + { ID id-GUAMI CRITICALITY reject TYPE GUAMI PRESENCE mandatory }| + { ID id-PDUSessionResourceSetupListCxtReq CRITICALITY reject TYPE PDUSessionResourceSetupListCxtReq PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE mandatory }| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE mandatory }| + { ID id-SecurityKey CRITICALITY reject TYPE SecurityKey PRESENCE mandatory }| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE optional }| + { ID id-MobilityRestrictionList CRITICALITY ignore TYPE MobilityRestrictionList PRESENCE optional }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-IndexToRFSP CRITICALITY ignore TYPE IndexToRFSP PRESENCE optional }| + { ID id-MaskedIMEISV CRITICALITY ignore TYPE MaskedIMEISV PRESENCE optional }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE optional }| + { ID id-EmergencyFallbackIndicator CRITICALITY reject TYPE EmergencyFallbackIndicator PRESENCE optional }| + { ID id-RRCInactiveTransitionReportRequest CRITICALITY ignore TYPE RRCInactiveTransitionReportRequest PRESENCE optional }| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional }| + { ID id-RedirectionVoiceFallback CRITICALITY ignore TYPE RedirectionVoiceFallback PRESENCE optional }| + { ID id-LocationReportingRequestType CRITICALITY ignore TYPE LocationReportingRequestType PRESENCE optional }| + { ID id-CNAssistedRANTuning CRITICALITY ignore TYPE CNAssistedRANTuning PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY ignore TYPE IAB-Authorized PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| +{ ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| +{ ID id-LTEV2XServicesAuthorized CRITICALITY ignore TYPE LTEV2XServicesAuthorized PRESENCE optional }| +{ ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| +{ ID id-LTEUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE LTEUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UE-UP-CIoT-Support CRITICALITY ignore TYPE UE-UP-CIoT-Support PRESENCE optional }| + { ID id-RGLevelWirelineAccessCharacteristics CRITICALITY ignore TYPE RGLevelWirelineAccessCharacteristics PRESENCE optional }| + { ID id-ManagementBasedMDTPLMNList CRITICALITY ignore TYPE MDTPLMNList PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- INITIAL CONTEXT SETUP RESPONSE +-- +-- ************************************************************** + +InitialContextSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupResponseIEs} }, + ... +} + +InitialContextSetupResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceSetupListCxtRes CRITICALITY ignore TYPE PDUSessionResourceSetupListCxtRes PRESENCE optional }| + { ID id-PDUSessionResourceFailedToSetupListCxtRes CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListCxtRes PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- INITIAL CONTEXT SETUP FAILURE +-- +-- ************************************************************** + +InitialContextSetupFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupFailureIEs} }, + ... +} + +InitialContextSetupFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceFailedToSetupListCxtFail CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListCxtFail PRESENCE optional }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Release Request Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT RELEASE REQUEST +-- +-- ************************************************************** + +UEContextReleaseRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextReleaseRequest-IEs} }, + ... +} + +UEContextReleaseRequest-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceListCxtRelReq CRITICALITY reject TYPE PDUSessionResourceListCxtRelReq PRESENCE optional }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE Context Release Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT RELEASE COMMAND +-- +-- ************************************************************** + +UEContextReleaseCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextReleaseCommand-IEs} }, + ... +} + +UEContextReleaseCommand-IEs NGAP-PROTOCOL-IES ::= { + { ID id-UE-NGAP-IDs CRITICALITY reject TYPE UE-NGAP-IDs PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RELEASE COMPLETE +-- +-- ************************************************************** + +UEContextReleaseComplete ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextReleaseComplete-IEs} }, + ... +} + +UEContextReleaseComplete-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-InfoOnRecommendedCellsAndRANNodesForPaging CRITICALITY ignore TYPE InfoOnRecommendedCellsAndRANNodesForPaging PRESENCE optional }| + { ID id-PDUSessionResourceListCxtRelCpl CRITICALITY reject TYPE PDUSessionResourceListCxtRelCpl PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-PagingAssisDataforCEcapabUE CRITICALITY ignore TYPE PagingAssisDataforCEcapabUE PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Resume Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT RESUME REQUEST +-- +-- ************************************************************** + +UEContextResumeRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextResumeRequestIEs} }, + ... +} + +UEContextResumeRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RRC-Resume-Cause CRITICALITY ignore TYPE RRCEstablishmentCause PRESENCE mandatory }| + { ID id-PDUSessionResourceResumeListRESReq CRITICALITY reject TYPE PDUSessionResourceResumeListRESReq PRESENCE optional }| + { ID id-PDUSessionResourceFailedToResumeListRESReq CRITICALITY reject TYPE PDUSessionResourceFailedToResumeListRESReq PRESENCE optional }| + { ID id-Suspend-Request-Indication CRITICALITY ignore TYPE Suspend-Request-Indication PRESENCE optional }| + { ID id-InfoOnRecommendedCellsAndRANNodesForPaging CRITICALITY ignore TYPE InfoOnRecommendedCellsAndRANNodesForPaging PRESENCE optional }| + { ID id-PagingAssisDataforCEcapabUE CRITICALITY ignore TYPE PagingAssisDataforCEcapabUE PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RESUME RESPONSE +-- +-- ************************************************************** + +UEContextResumeResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextResumeResponseIEs} }, + ... +} + +UEContextResumeResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceResumeListRESRes CRITICALITY reject TYPE PDUSessionResourceResumeListRESRes PRESENCE optional }| + { ID id-PDUSessionResourceFailedToResumeListRESRes CRITICALITY reject TYPE PDUSessionResourceFailedToResumeListRESRes PRESENCE optional }| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE optional }| + { ID id-Suspend-Response-Indication CRITICALITY ignore TYPE Suspend-Response-Indication PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RESUME FAILURE +-- +-- ************************************************************** + +UEContextResumeFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextResumeFailureIEs} }, + ... +} + +UEContextResumeFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- UE Context Suspend Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT SUSPEND REQUEST +-- +-- ************************************************************** + +UEContextSuspendRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextSuspendRequestIEs} }, + ... +} + +UEContextSuspendRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-InfoOnRecommendedCellsAndRANNodesForPaging CRITICALITY ignore TYPE InfoOnRecommendedCellsAndRANNodesForPaging PRESENCE optional }| + { ID id-PagingAssisDataforCEcapabUE CRITICALITY ignore TYPE PagingAssisDataforCEcapabUE PRESENCE optional }| + { ID id-PDUSessionResourceSuspendListSUSReq CRITICALITY reject TYPE PDUSessionResourceSuspendListSUSReq PRESENCE optional }, ... +} + +-- ************************************************************** +-- +-- UE CONTEXT SUSPEND RESPONSE +-- +-- ************************************************************** + +UEContextSuspendResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextSuspendResponseIEs} }, + ... +} + +UEContextSuspendResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT SUSPEND FAILURE +-- +-- ************************************************************** + +UEContextSuspendFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextSuspendFailureIEs} }, + ... +} + +UEContextSuspendFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Modification Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION REQUEST +-- +-- ************************************************************** + +UEContextModificationRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextModificationRequestIEs} }, + ... +} + +UEContextModificationRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-SecurityKey CRITICALITY reject TYPE SecurityKey PRESENCE optional }| + { ID id-IndexToRFSP CRITICALITY ignore TYPE IndexToRFSP PRESENCE optional }| + { ID id-UEAggregateMaximumBitRate CRITICALITY ignore TYPE UEAggregateMaximumBitRate PRESENCE optional }| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE optional }| + { ID id-CoreNetworkAssistanceInformationForInactive CRITICALITY ignore TYPE CoreNetworkAssistanceInformationForInactive PRESENCE optional }| + { ID id-EmergencyFallbackIndicator CRITICALITY reject TYPE EmergencyFallbackIndicator PRESENCE optional }| + { ID id-NewAMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE optional }| + { ID id-RRCInactiveTransitionReportRequest CRITICALITY ignore TYPE RRCInactiveTransitionReportRequest PRESENCE optional }| + { ID id-NewGUAMI CRITICALITY reject TYPE GUAMI PRESENCE optional }| + { ID id-CNAssistedRANTuning CRITICALITY ignore TYPE CNAssistedRANTuning PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY ignore TYPE IAB-Authorized PRESENCE optional }| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-LTEV2XServicesAuthorized CRITICALITY ignore TYPE LTEV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-LTEUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE LTEUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }| + { ID id-RGLevelWirelineAccessCharacteristics CRITICALITY ignore TYPE RGLevelWirelineAccessCharacteristics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION RESPONSE +-- +-- ************************************************************** + +UEContextModificationResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextModificationResponseIEs} }, + ... +} + +UEContextModificationResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RRCState CRITICALITY ignore TYPE RRCState PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION FAILURE +-- +-- ************************************************************** + +UEContextModificationFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextModificationFailureIEs} }, + ... +} + +UEContextModificationFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RRC INACTIVE TRANSITION REPORT +-- +-- ************************************************************** + +RRCInactiveTransitionReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RRCInactiveTransitionReportIEs} }, + ... +} + +RRCInactiveTransitionReportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RRCState CRITICALITY ignore TYPE RRCState PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Retrieve UE Information +-- +-- ************************************************************** + +RetrieveUEInformation ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { RetrieveUEInformationIEs} }, + ... +} + +RetrieveUEInformationIEs NGAP-PROTOCOL-IES ::= { + { ID id-FiveG-S-TMSI CRITICALITY reject TYPE FiveG-S-TMSI PRESENCE mandatory }, + ... + +} + +-- ************************************************************** + +-- UE Information Transfer +-- +-- ************************************************************** + +UEInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEInformationTransferIEs} }, + ... +} + +UEInformationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-FiveG-S-TMSI CRITICALITY reject TYPE FiveG-S-TMSI PRESENCE mandatory }| + { ID id-NB-IoT-UEPriority CRITICALITY ignore TYPE NB-IoT-UEPriority PRESENCE optional }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-S-NSSAI CRITICALITY ignore TYPE S-NSSAI PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY ignore TYPE AllowedNSSAI PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RAN CP Relocation Indication +-- +-- ************************************************************** + +RANCPRelocationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { RANCPRelocationIndicationIEs} }, + ... +} + +RANCPRelocationIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-FiveG-S-TMSI CRITICALITY reject TYPE FiveG-S-TMSI PRESENCE mandatory }| + { ID id-EUTRA-CGI CRITICALITY ignore TYPE EUTRA-CGI PRESENCE mandatory }| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory }| + { ID id-UL-CP-SecurityInformation CRITICALITY reject TYPE UL-CP-SecurityInformation PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE MOBILITY MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Preparation Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER REQUIRED +-- +-- ************************************************************** + +HandoverRequired ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequiredIEs} }, + ... +} + +HandoverRequiredIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TargetID CRITICALITY reject TYPE TargetID PRESENCE mandatory }| + { ID id-DirectForwardingPathAvailability CRITICALITY ignore TYPE DirectForwardingPathAvailability PRESENCE optional }| + { ID id-PDUSessionResourceListHORqd CRITICALITY reject TYPE PDUSessionResourceListHORqd PRESENCE mandatory }| + { ID id-SourceToTarget-TransparentContainer CRITICALITY reject TYPE SourceToTarget-TransparentContainer PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER COMMAND +-- +-- ************************************************************** + +HandoverCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverCommandIEs} }, + ... +} + +HandoverCommandIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory }| + { ID id-NASSecurityParametersFromNGRAN CRITICALITY reject TYPE NASSecurityParametersFromNGRAN PRESENCE conditional }| + -- This IE shall be present if HandoverType IE is set to value "5GStoEPPS" or 5GStoUTRAN -- + { ID id-PDUSessionResourceHandoverList CRITICALITY ignore TYPE PDUSessionResourceHandoverList PRESENCE optional }| + { ID id-PDUSessionResourceToReleaseListHOCmd CRITICALITY ignore TYPE PDUSessionResourceToReleaseListHOCmd PRESENCE optional }| + { ID id-TargetToSource-TransparentContainer CRITICALITY reject TYPE TargetToSource-TransparentContainer PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- HANDOVER PREPARATION FAILURE +-- +-- ************************************************************** + +HandoverPreparationFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverPreparationFailureIEs} }, + ... +} + +HandoverPreparationFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-TargettoSource-Failure-TransparentContainer CRITICALITY ignore TYPE TargettoSource-Failure-TransparentContainer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Handover Resource Allocation Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER REQUEST +-- +-- ************************************************************** + +HandoverRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequestIEs} }, + ... +} + +HandoverRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-UEAggregateMaximumBitRate CRITICALITY reject TYPE UEAggregateMaximumBitRate PRESENCE mandatory }| + { ID id-CoreNetworkAssistanceInformationForInactive CRITICALITY ignore TYPE CoreNetworkAssistanceInformationForInactive PRESENCE optional }| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE mandatory }| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE mandatory }| + { ID id-NewSecurityContextInd CRITICALITY reject TYPE NewSecurityContextInd PRESENCE optional }| + { ID id-NASC CRITICALITY reject TYPE NAS-PDU PRESENCE optional }| + { ID id-PDUSessionResourceSetupListHOReq CRITICALITY reject TYPE PDUSessionResourceSetupListHOReq PRESENCE mandatory }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE mandatory }| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE optional }| + { ID id-MaskedIMEISV CRITICALITY ignore TYPE MaskedIMEISV PRESENCE optional }| + { ID id-SourceToTarget-TransparentContainer CRITICALITY reject TYPE SourceToTarget-TransparentContainer PRESENCE mandatory }| + { ID id-MobilityRestrictionList CRITICALITY ignore TYPE MobilityRestrictionList PRESENCE optional }| + { ID id-LocationReportingRequestType CRITICALITY ignore TYPE LocationReportingRequestType PRESENCE optional }| + { ID id-RRCInactiveTransitionReportRequest CRITICALITY ignore TYPE RRCInactiveTransitionReportRequest PRESENCE optional }| + { ID id-GUAMI CRITICALITY reject TYPE GUAMI PRESENCE mandatory }| + { ID id-RedirectionVoiceFallback CRITICALITY ignore TYPE RedirectionVoiceFallback PRESENCE optional }| + { ID id-CNAssistedRANTuning CRITICALITY ignore TYPE CNAssistedRANTuning PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY reject TYPE IAB-Authorized PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-LTEV2XServicesAuthorized CRITICALITY ignore TYPE LTEV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-LTEUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE LTEUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UE-UP-CIoT-Support CRITICALITY ignore TYPE UE-UP-CIoT-Support PRESENCE optional }| + { ID id-ManagementBasedMDTPLMNList CRITICALITY ignore TYPE MDTPLMNList PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER REQUEST ACKNOWLEDGE +-- +-- ************************************************************** + +HandoverRequestAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequestAcknowledgeIEs} }, + ... +} + +HandoverRequestAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceAdmittedList CRITICALITY ignore TYPE PDUSessionResourceAdmittedList PRESENCE mandatory }| + { ID id-PDUSessionResourceFailedToSetupListHOAck CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListHOAck PRESENCE optional }| + { ID id-TargetToSource-TransparentContainer CRITICALITY reject TYPE TargetToSource-TransparentContainer PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- HANDOVER FAILURE +-- +-- ************************************************************** + +HandoverFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverFailureIEs} }, + ... +} + +HandoverFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-TargettoSource-Failure-TransparentContainer CRITICALITY ignore TYPE TargettoSource-Failure-TransparentContainer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Handover Notification Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER NOTIFY +-- +-- ************************************************************** + +HandoverNotify ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverNotifyIEs} }, + ... +} + +HandoverNotifyIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-NotifySourceNGRANNode CRITICALITY ignore TYPE NotifySourceNGRANNode PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Path Switch Request Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PATH SWITCH REQUEST +-- +-- ************************************************************** + +PathSwitchRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestIEs} }, + ... +} + +PathSwitchRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-SourceAMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-UESecurityCapabilities CRITICALITY ignore TYPE UESecurityCapabilities PRESENCE mandatory }| + { ID id-PDUSessionResourceToBeSwitchedDLList CRITICALITY reject TYPE PDUSessionResourceToBeSwitchedDLList PRESENCE mandatory }| + { ID id-PDUSessionResourceFailedToSetupListPSReq CRITICALITY ignore TYPE PDUSessionResourceFailedToSetupListPSReq PRESENCE optional }| + { ID id-RRC-Resume-Cause CRITICALITY ignore TYPE RRCEstablishmentCause PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PATH SWITCH REQUEST ACKNOWLEDGE +-- +-- ************************************************************** + +PathSwitchRequestAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestAcknowledgeIEs} }, + ... +} + +PathSwitchRequestAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE optional }| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE mandatory }| + { ID id-NewSecurityContextInd CRITICALITY reject TYPE NewSecurityContextInd PRESENCE optional }| + { ID id-PDUSessionResourceSwitchedList CRITICALITY ignore TYPE PDUSessionResourceSwitchedList PRESENCE mandatory }| + { ID id-PDUSessionResourceReleasedListPSAck CRITICALITY ignore TYPE PDUSessionResourceReleasedListPSAck PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE mandatory }| + { ID id-CoreNetworkAssistanceInformationForInactive CRITICALITY ignore TYPE CoreNetworkAssistanceInformationForInactive PRESENCE optional }| + { ID id-RRCInactiveTransitionReportRequest CRITICALITY ignore TYPE RRCInactiveTransitionReportRequest PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-RedirectionVoiceFallback CRITICALITY ignore TYPE RedirectionVoiceFallback PRESENCE optional }| + { ID id-CNAssistedRANTuning CRITICALITY ignore TYPE CNAssistedRANTuning PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-LTEV2XServicesAuthorized CRITICALITY ignore TYPE LTEV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-LTEUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE LTEUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UE-UP-CIoT-Support CRITICALITY ignore TYPE UE-UP-CIoT-Support PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- PATH SWITCH REQUEST FAILURE +-- +-- ************************************************************** + +PathSwitchRequestFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestFailureIEs} }, + ... +} + +PathSwitchRequestFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceReleasedListPSFail CRITICALITY ignore TYPE PDUSessionResourceReleasedListPSFail PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Handover Cancellation Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER CANCEL +-- +-- ************************************************************** + +HandoverCancel ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCancelIEs} }, + ... +} + +HandoverCancelIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER CANCEL ACKNOWLEDGE +-- +-- ************************************************************** + +HandoverCancelAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCancelAcknowledgeIEs} }, + ... +} + +HandoverCancelAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER SUCCESS ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- HANDOVER SUCCESS +-- +-- ************************************************************** + +HandoverSuccess ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverSuccessIEs} }, + ... +} + +HandoverSuccessIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK RAN EARLY STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Uplink RAN Early Status Transfer +-- +-- ************************************************************** + +UplinkRANEarlyStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkRANEarlyStatusTransferIEs} }, + ... +} + +UplinkRANEarlyStatusTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory}| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory}| + { ID id-EarlyStatusTransfer-TransparentContainer CRITICALITY reject TYPE EarlyStatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK RAN EARLY STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Downlink RAN Early Status Transfer +-- +-- ************************************************************** + +DownlinkRANEarlyStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkRANEarlyStatusTransferIEs} }, + ... +} + +DownlinkRANEarlyStatusTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory}| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory}| + { ID id-EarlyStatusTransfer-TransparentContainer CRITICALITY reject TYPE EarlyStatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- Uplink RAN Status Transfer Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UPLINK RAN STATUS TRANSFER +-- +-- ************************************************************** + +UplinkRANStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkRANStatusTransferIEs} }, + ... +} + +UplinkRANStatusTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANStatusTransfer-TransparentContainer CRITICALITY reject TYPE RANStatusTransfer-TransparentContainer PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Downlink RAN Status Transfer Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- DOWNLINK RAN STATUS TRANSFER +-- +-- ************************************************************** + +DownlinkRANStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkRANStatusTransferIEs} }, + ... +} + +DownlinkRANStatusTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RANStatusTransfer-TransparentContainer CRITICALITY reject TYPE RANStatusTransfer-TransparentContainer PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- PAGING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PAGING +-- +-- ************************************************************** + +Paging ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PagingIEs} }, + ... +} + +PagingIEs NGAP-PROTOCOL-IES ::= { + { ID id-UEPagingIdentity CRITICALITY ignore TYPE UEPagingIdentity PRESENCE mandatory }| + { ID id-PagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE optional }| + { ID id-TAIListForPaging CRITICALITY ignore TYPE TAIListForPaging PRESENCE mandatory }| + { ID id-PagingPriority CRITICALITY ignore TYPE PagingPriority PRESENCE optional }| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional }| + { ID id-PagingOrigin CRITICALITY ignore TYPE PagingOrigin PRESENCE optional }| + { ID id-AssistanceDataForPaging CRITICALITY ignore TYPE AssistanceDataForPaging PRESENCE optional }| + { ID id-NB-IoT-Paging-eDRXInfo CRITICALITY ignore TYPE NB-IoT-Paging-eDRXInfo PRESENCE optional }| + { ID id-NB-IoT-PagingDRX CRITICALITY ignore TYPE NB-IoT-PagingDRX PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-WUS-Assistance-Information CRITICALITY ignore TYPE WUS-Assistance-Information PRESENCE optional }| + { ID id-PagingeDRXInformation CRITICALITY ignore TYPE PagingeDRXInformation PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NAS TRANSPORT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- INITIAL UE MESSAGE +-- +-- ************************************************************** + +InitialUEMessage ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialUEMessage-IEs} }, + ... +} + +InitialUEMessage-IEs NGAP-PROTOCOL-IES ::= { + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY reject TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-RRCEstablishmentCause CRITICALITY ignore TYPE RRCEstablishmentCause PRESENCE mandatory }| + { ID id-FiveG-S-TMSI CRITICALITY reject TYPE FiveG-S-TMSI PRESENCE optional }| + { ID id-AMFSetID CRITICALITY ignore TYPE AMFSetID PRESENCE optional }| + { ID id-UEContextRequest CRITICALITY ignore TYPE UEContextRequest PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE optional }| + { ID id-SourceToTarget-AMFInformationReroute CRITICALITY ignore TYPE SourceToTarget-AMFInformationReroute PRESENCE optional }| + { ID id-SelectedPLMNIdentity CRITICALITY ignore TYPE PLMNIdentity PRESENCE optional }| + { ID id-IABNodeIndication CRITICALITY reject TYPE IABNodeIndication PRESENCE optional }| + { ID id-CEmodeBSupport-Indicator CRITICALITY reject TYPE CEmodeBSupport-Indicator PRESENCE optional }| + { ID id-LTEM-Indication CRITICALITY ignore TYPE LTEM-Indication PRESENCE optional }| + { ID id-EDT-Session CRITICALITY ignore TYPE EDT-Session PRESENCE optional }| + { ID id-AuthenticatedIndication CRITICALITY ignore TYPE AuthenticatedIndication PRESENCE optional }| + { ID id-NPN-AccessInformation CRITICALITY reject TYPE NPN-AccessInformation PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK NAS TRANSPORT +-- +-- ************************************************************** + +DownlinkNASTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkNASTransport-IEs} }, + ... +} + +DownlinkNASTransport-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-OldAMF CRITICALITY reject TYPE AMFName PRESENCE optional }| + { ID id-RANPagingPriority CRITICALITY ignore TYPE RANPagingPriority PRESENCE optional }| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory }| + { ID id-MobilityRestrictionList CRITICALITY ignore TYPE MobilityRestrictionList PRESENCE optional }| + { ID id-IndexToRFSP CRITICALITY ignore TYPE IndexToRFSP PRESENCE optional }| + { ID id-UEAggregateMaximumBitRate CRITICALITY ignore TYPE UEAggregateMaximumBitRate PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE optional }| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-Extended-ConnectedTime CRITICALITY ignore TYPE Extended-ConnectedTime PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-UECapabilityInfoRequest CRITICALITY ignore TYPE UECapabilityInfoRequest PRESENCE optional }| + { ID id-EndIndication CRITICALITY ignore TYPE EndIndication PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UPLINK NAS TRANSPORT +-- +-- ************************************************************** + +UplinkNASTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkNASTransport-IEs} }, + ... +} + +UplinkNASTransport-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-W-AGFIdentityInformation CRITICALITY reject TYPE OCTET STRING PRESENCE optional }| + { ID id-TNGFIdentityInformation CRITICALITY reject TYPE OCTET STRING PRESENCE optional }| + { ID id-TWIFIdentityInformation CRITICALITY reject TYPE OCTET STRING PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NAS NON DELIVERY INDICATION +-- +-- ************************************************************** + +NASNonDeliveryIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NASNonDeliveryIndication-IEs} }, + ... +} + +NASNonDeliveryIndication-IEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- REROUTE NAS REQUEST +-- +-- ************************************************************** + +RerouteNASRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RerouteNASRequest-IEs} }, + ... +} + +RerouteNASRequest-IEs NGAP-PROTOCOL-IES ::= { + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE optional }| + { ID id-NGAP-Message CRITICALITY reject TYPE OCTET STRING PRESENCE mandatory }| + { ID id-AMFSetID CRITICALITY reject TYPE AMFSetID PRESENCE mandatory }| + { ID id-AllowedNSSAI CRITICALITY reject TYPE AllowedNSSAI PRESENCE optional }| + { ID id-SourceToTarget-AMFInformationReroute CRITICALITY ignore TYPE SourceToTarget-AMFInformationReroute PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- INTERFACE MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- NG Setup Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- NG SETUP REQUEST +-- +-- ************************************************************** + +NGSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGSetupRequestIEs} }, + ... +} + +NGSetupRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-GlobalRANNodeID CRITICALITY reject TYPE GlobalRANNodeID PRESENCE mandatory }| + { ID id-RANNodeName CRITICALITY ignore TYPE RANNodeName PRESENCE optional }| + { ID id-SupportedTAList CRITICALITY reject TYPE SupportedTAList PRESENCE mandatory }| + { ID id-DefaultPagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE mandatory }| + { ID id-UERetentionInformation CRITICALITY ignore TYPE UERetentionInformation PRESENCE optional }| + { ID id-NB-IoT-DefaultPagingDRX CRITICALITY ignore TYPE NB-IoT-DefaultPagingDRX PRESENCE optional }| + { ID id-Extended-RANNodeName CRITICALITY ignore TYPE Extended-RANNodeName PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NG SETUP RESPONSE +-- +-- ************************************************************** + +NGSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGSetupResponseIEs} }, + ... +} + +NGSetupResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMFName CRITICALITY reject TYPE AMFName PRESENCE mandatory }| + { ID id-ServedGUAMIList CRITICALITY reject TYPE ServedGUAMIList PRESENCE mandatory }| + { ID id-RelativeAMFCapacity CRITICALITY ignore TYPE RelativeAMFCapacity PRESENCE mandatory }| + { ID id-PLMNSupportList CRITICALITY reject TYPE PLMNSupportList PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-UERetentionInformation CRITICALITY ignore TYPE UERetentionInformation PRESENCE optional }| + { ID id-IAB-Supported CRITICALITY ignore TYPE IAB-Supported PRESENCE optional }| + { ID id-Extended-AMFName CRITICALITY ignore TYPE Extended-AMFName PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NG SETUP FAILURE +-- +-- ************************************************************** + +NGSetupFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGSetupFailureIEs} }, + ... +} + +NGSetupFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RAN Configuration Update Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- RAN CONFIGURATION UPDATE +-- +-- ************************************************************** + +RANConfigurationUpdate ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RANConfigurationUpdateIEs} }, + ... +} + +RANConfigurationUpdateIEs NGAP-PROTOCOL-IES ::= { + { ID id-RANNodeName CRITICALITY ignore TYPE RANNodeName PRESENCE optional }| + { ID id-SupportedTAList CRITICALITY reject TYPE SupportedTAList PRESENCE optional }| + { ID id-DefaultPagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore TYPE GlobalRANNodeID PRESENCE optional }| + { ID id-NGRAN-TNLAssociationToRemoveList CRITICALITY reject TYPE NGRAN-TNLAssociationToRemoveList PRESENCE optional }| + { ID id-NB-IoT-DefaultPagingDRX CRITICALITY ignore TYPE NB-IoT-DefaultPagingDRX PRESENCE optional }| + { ID id-Extended-RANNodeName CRITICALITY ignore TYPE Extended-RANNodeName PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RAN CONFIGURATION UPDATE ACKNOWLEDGE +-- +-- ************************************************************** + +RANConfigurationUpdateAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RANConfigurationUpdateAcknowledgeIEs} }, + ... +} + +RANConfigurationUpdateAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RAN CONFIGURATION UPDATE FAILURE +-- +-- ************************************************************** + +RANConfigurationUpdateFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {RANConfigurationUpdateFailureIEs} }, + ... +} + +RANConfigurationUpdateFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, +... +} + +-- ************************************************************** +-- +-- AMF Configuration Update Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- AMF CONFIGURATION UPDATE +-- +-- ************************************************************** + +AMFConfigurationUpdate ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {AMFConfigurationUpdateIEs} }, + ... +} + +AMFConfigurationUpdateIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMFName CRITICALITY reject TYPE AMFName PRESENCE optional }| + { ID id-ServedGUAMIList CRITICALITY reject TYPE ServedGUAMIList PRESENCE optional }| + { ID id-RelativeAMFCapacity CRITICALITY ignore TYPE RelativeAMFCapacity PRESENCE optional }| + { ID id-PLMNSupportList CRITICALITY reject TYPE PLMNSupportList PRESENCE optional }| + { ID id-AMF-TNLAssociationToAddList CRITICALITY ignore TYPE AMF-TNLAssociationToAddList PRESENCE optional }| + { ID id-AMF-TNLAssociationToRemoveList CRITICALITY ignore TYPE AMF-TNLAssociationToRemoveList PRESENCE optional }| + { ID id-AMF-TNLAssociationToUpdateList CRITICALITY ignore TYPE AMF-TNLAssociationToUpdateList PRESENCE optional }| + { ID id-Extended-AMFName CRITICALITY ignore TYPE Extended-AMFName PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- AMF CONFIGURATION UPDATE ACKNOWLEDGE +-- +-- ************************************************************** + +AMFConfigurationUpdateAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {AMFConfigurationUpdateAcknowledgeIEs} }, + ... +} + +AMFConfigurationUpdateAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-TNLAssociationSetupList CRITICALITY ignore TYPE AMF-TNLAssociationSetupList PRESENCE optional }| + { ID id-AMF-TNLAssociationFailedToSetupList CRITICALITY ignore TYPE TNLAssociationList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- AMF CONFIGURATION UPDATE FAILURE +-- +-- ************************************************************** + +AMFConfigurationUpdateFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {AMFConfigurationUpdateFailureIEs} }, + ... +} + +AMFConfigurationUpdateFailureIEs NGAP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- AMF Status Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- AMF STATUS INDICATION +-- +-- ************************************************************** + +AMFStatusIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {AMFStatusIndicationIEs} }, + ... +} + +AMFStatusIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-UnavailableGUAMIList CRITICALITY reject TYPE UnavailableGUAMIList PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- NG Reset Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- NG RESET +-- +-- ************************************************************** + +NGReset ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGResetIEs} }, + ... +} + +NGResetIEs NGAP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-ResetType CRITICALITY reject TYPE ResetType PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- NG RESET ACKNOWLEDGE +-- +-- ************************************************************** + +NGResetAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {NGResetAcknowledgeIEs} }, + ... +} + +NGResetAcknowledgeIEs NGAP-PROTOCOL-IES ::= { + { ID id-UE-associatedLogicalNG-connectionList CRITICALITY ignore TYPE UE-associatedLogicalNG-connectionList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- Error Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- ERROR INDICATION +-- +-- ************************************************************** + +ErrorIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ErrorIndicationIEs} }, + ... +} + +ErrorIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE optional }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE optional }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-FiveG-S-TMSI CRITICALITY ignore TYPE FiveG-S-TMSI PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- OVERLOAD START +-- +-- ************************************************************** + +OverloadStart ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {OverloadStartIEs} }, + ... +} + +OverloadStartIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMFOverloadResponse CRITICALITY reject TYPE OverloadResponse PRESENCE optional }| + { ID id-AMFTrafficLoadReductionIndication CRITICALITY ignore TYPE TrafficLoadReductionIndication PRESENCE optional }| + { ID id-OverloadStartNSSAIList CRITICALITY ignore TYPE OverloadStartNSSAIList PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- OVERLOAD STOP +-- +-- ************************************************************** + +OverloadStop ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {OverloadStopIEs} }, + ... +} + +OverloadStopIEs NGAP-PROTOCOL-IES ::= { + ... +} + +-- ************************************************************** +-- +-- CONFIGURATION TRANSFER ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UPLINK RAN CONFIGURATION TRANSFER +-- +-- ************************************************************** + +UplinkRANConfigurationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkRANConfigurationTransferIEs} }, + ... +} + +UplinkRANConfigurationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-SONConfigurationTransferUL CRITICALITY ignore TYPE SONConfigurationTransfer PRESENCE optional }| + { ID id-ENDC-SONConfigurationTransferUL CRITICALITY ignore TYPE EN-DCSONConfigurationTransfer PRESENCE optional }| + { ID id-IntersystemSONConfigurationTransferUL CRITICALITY ignore TYPE IntersystemSONConfigurationTransfer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK RAN CONFIGURATION TRANSFER +-- +-- ************************************************************** + +DownlinkRANConfigurationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkRANConfigurationTransferIEs} }, + ... +} + +DownlinkRANConfigurationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-SONConfigurationTransferDL CRITICALITY ignore TYPE SONConfigurationTransfer PRESENCE optional }| + { ID id-ENDC-SONConfigurationTransferDL CRITICALITY ignore TYPE EN-DCSONConfigurationTransfer PRESENCE optional }| + { ID id-IntersystemSONConfigurationTransferDL CRITICALITY ignore TYPE IntersystemSONConfigurationTransfer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- WARNING MESSAGE TRANSMISSION ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Write-Replace Warning Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- WRITE-REPLACE WARNING REQUEST +-- +-- ************************************************************** + +WriteReplaceWarningRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {WriteReplaceWarningRequestIEs} }, + ... +} + +WriteReplaceWarningRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-WarningAreaList CRITICALITY ignore TYPE WarningAreaList PRESENCE optional }| + { ID id-RepetitionPeriod CRITICALITY reject TYPE RepetitionPeriod PRESENCE mandatory }| + { ID id-NumberOfBroadcastsRequested CRITICALITY reject TYPE NumberOfBroadcastsRequested PRESENCE mandatory }| + { ID id-WarningType CRITICALITY ignore TYPE WarningType PRESENCE optional }| + { ID id-WarningSecurityInfo CRITICALITY ignore TYPE WarningSecurityInfo PRESENCE optional }| + { ID id-DataCodingScheme CRITICALITY ignore TYPE DataCodingScheme PRESENCE optional }| + { ID id-WarningMessageContents CRITICALITY ignore TYPE WarningMessageContents PRESENCE optional }| + { ID id-ConcurrentWarningMessageInd CRITICALITY reject TYPE ConcurrentWarningMessageInd PRESENCE optional }| + { ID id-WarningAreaCoordinates CRITICALITY ignore TYPE WarningAreaCoordinates PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- WRITE-REPLACE WARNING RESPONSE +-- +-- ************************************************************** + +WriteReplaceWarningResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {WriteReplaceWarningResponseIEs} }, + ... +} + +WriteReplaceWarningResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-BroadcastCompletedAreaList CRITICALITY ignore TYPE BroadcastCompletedAreaList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS Cancel Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PWS CANCEL REQUEST +-- +-- ************************************************************** + +PWSCancelRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PWSCancelRequestIEs} }, + ... +} + +PWSCancelRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-WarningAreaList CRITICALITY ignore TYPE WarningAreaList PRESENCE optional }| + { ID id-CancelAllWarningMessages CRITICALITY reject TYPE CancelAllWarningMessages PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS CANCEL RESPONSE +-- +-- ************************************************************** + +PWSCancelResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PWSCancelResponseIEs} }, + ... +} + +PWSCancelResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-BroadcastCancelledAreaList CRITICALITY ignore TYPE BroadcastCancelledAreaList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS Restart Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PWS RESTART INDICATION +-- +-- ************************************************************** + +PWSRestartIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PWSRestartIndicationIEs} }, + ... +} + +PWSRestartIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-CellIDListForRestart CRITICALITY reject TYPE CellIDListForRestart PRESENCE mandatory }| + { ID id-GlobalRANNodeID CRITICALITY reject TYPE GlobalRANNodeID PRESENCE mandatory }| + { ID id-TAIListForRestart CRITICALITY reject TYPE TAIListForRestart PRESENCE mandatory }| + { ID id-EmergencyAreaIDListForRestart CRITICALITY reject TYPE EmergencyAreaIDListForRestart PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS Failure Indication Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PWS FAILURE INDICATION +-- +-- ************************************************************** + +PWSFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PWSFailureIndicationIEs} }, + ... +} + +PWSFailureIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-PWSFailedCellIDList CRITICALITY reject TYPE PWSFailedCellIDList PRESENCE mandatory }| + { ID id-GlobalRANNodeID CRITICALITY reject TYPE GlobalRANNodeID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- NRPPA TRANSPORT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- DOWNLINK UE ASSOCIATED NRPPA TRANSPORT +-- +-- ************************************************************** + +DownlinkUEAssociatedNRPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkUEAssociatedNRPPaTransportIEs} }, + ... +} + +DownlinkUEAssociatedNRPPaTransportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RoutingID CRITICALITY reject TYPE RoutingID PRESENCE mandatory }| + { ID id-NRPPa-PDU CRITICALITY reject TYPE NRPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK UE ASSOCIATED NRPPA TRANSPORT +-- +-- ************************************************************** + +UplinkUEAssociatedNRPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkUEAssociatedNRPPaTransportIEs} }, + ... +} + +UplinkUEAssociatedNRPPaTransportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RoutingID CRITICALITY reject TYPE RoutingID PRESENCE mandatory }| + { ID id-NRPPa-PDU CRITICALITY reject TYPE NRPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK NON UE ASSOCIATED NRPPA TRANSPORT +-- +-- ************************************************************** + +DownlinkNonUEAssociatedNRPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkNonUEAssociatedNRPPaTransportIEs} }, + ... +} + +DownlinkNonUEAssociatedNRPPaTransportIEs NGAP-PROTOCOL-IES ::= { + { ID id-RoutingID CRITICALITY reject TYPE RoutingID PRESENCE mandatory }| + { ID id-NRPPa-PDU CRITICALITY reject TYPE NRPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK NON UE ASSOCIATED NRPPA TRANSPORT +-- +-- ************************************************************** + +UplinkNonUEAssociatedNRPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkNonUEAssociatedNRPPaTransportIEs} }, + ... +} + +UplinkNonUEAssociatedNRPPaTransportIEs NGAP-PROTOCOL-IES ::= { + { ID id-RoutingID CRITICALITY reject TYPE RoutingID PRESENCE mandatory }| + { ID id-NRPPa-PDU CRITICALITY reject TYPE NRPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- TRACE ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- TRACE START +-- +-- ************************************************************** + +TraceStart ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {TraceStartIEs} }, + ... +} + +TraceStartIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- TRACE FAILURE INDICATION +-- +-- ************************************************************** + +TraceFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {TraceFailureIndicationIEs} }, + ... +} + +TraceFailureIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NGRANTraceID CRITICALITY ignore TYPE NGRANTraceID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- DEACTIVATE TRACE +-- +-- ************************************************************** + +DeactivateTrace ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DeactivateTraceIEs} }, + ... +} + +DeactivateTraceIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-NGRANTraceID CRITICALITY ignore TYPE NGRANTraceID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- CELL TRAFFIC TRACE +-- +-- ************************************************************** + +CellTrafficTrace ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {CellTrafficTraceIEs} }, + ... +} + +CellTrafficTraceIEs NGAP-PROTOCOL-IES ::= { + {ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + {ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + {ID id-NGRANTraceID CRITICALITY ignore TYPE NGRANTraceID PRESENCE mandatory }| + {ID id-NGRAN-CGI CRITICALITY ignore TYPE NGRAN-CGI PRESENCE mandatory }| + {ID id-TraceCollectionEntityIPAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE mandatory }| + {ID id-PrivacyIndicator CRITICALITY ignore TYPE PrivacyIndicator PRESENCE optional }| + {ID id-TraceCollectionEntityURI CRITICALITY ignore TYPE URI-address PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- LOCATION REPORTING ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- LOCATION REPORTING CONTROL +-- +-- ************************************************************** + +LocationReportingControl ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {LocationReportingControlIEs} }, + ... +} + +LocationReportingControlIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-LocationReportingRequestType CRITICALITY ignore TYPE LocationReportingRequestType PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- LOCATION REPORTING FAILURE INDICATION +-- +-- ************************************************************** + +LocationReportingFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {LocationReportingFailureIndicationIEs} }, + ... +} + +LocationReportingFailureIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- LOCATION REPORT +-- +-- ************************************************************** + +LocationReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {LocationReportIEs} }, + ... +} + +LocationReportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE mandatory }| + { ID id-UEPresenceInAreaOfInterestList CRITICALITY ignore TYPE UEPresenceInAreaOfInterestList PRESENCE optional }| + { ID id-LocationReportingRequestType CRITICALITY ignore TYPE LocationReportingRequestType PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE TNLA BINDING ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE TNLA BINDING RELEASE REQUEST +-- +-- ************************************************************** + +UETNLABindingReleaseRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UETNLABindingReleaseRequestIEs} }, + ... +} + +UETNLABindingReleaseRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY MANAGEMENT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY INFO INDICATION +-- +-- ************************************************************** + +UERadioCapabilityInfoIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityInfoIndicationIEs} }, + ... +} + +UERadioCapabilityInfoIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE mandatory }| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional }| + { ID id-UERadioCapability-EUTRA-Format CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Radio Capability Check Elementary Procedure +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY CHECK REQUEST +-- +-- ************************************************************** + +UERadioCapabilityCheckRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityCheckRequestIEs} }, + ... +} + +UERadioCapabilityCheckRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY CHECK RESPONSE +-- +-- ************************************************************** + +UERadioCapabilityCheckResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityCheckResponseIEs} }, + ... +} + +UERadioCapabilityCheckResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-IMSVoiceSupportIndicator CRITICALITY reject TYPE IMSVoiceSupportIndicator PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PRIVATE MESSAGE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PRIVATE MESSAGE +-- +-- ************************************************************** + +PrivateMessage ::= SEQUENCE { + privateIEs PrivateIE-Container { { PrivateMessageIEs } }, + ... +} + +PrivateMessageIEs NGAP-PRIVATE-IES ::= { + ... +} + + +-- ************************************************************** +-- +-- DATA USAGE REPORTING ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- SECONDARY RAT DATA USAGE REPORT +-- +-- ************************************************************** + +SecondaryRATDataUsageReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {SecondaryRATDataUsageReportIEs} }, + ... +} + +SecondaryRATDataUsageReportIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY ignore TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY ignore TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-PDUSessionResourceSecondaryRATUsageList CRITICALITY ignore TYPE PDUSessionResourceSecondaryRATUsageList PRESENCE mandatory }| + { ID id-HandoverFlag CRITICALITY ignore TYPE HandoverFlag PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- RIM INFORMATION TRANSFER ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UPLINK RIM INFORMATION TRANSFER +-- +-- ************************************************************** + +UplinkRIMInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkRIMInformationTransferIEs} }, + ... +} + +UplinkRIMInformationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-RIMInformationTransfer CRITICALITY ignore TYPE RIMInformationTransfer PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- DOWNLINK RIM INFORMATION TRANSFER +-- +-- ************************************************************** + +DownlinkRIMInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkRIMInformationTransferIEs} }, + ... +} + +DownlinkRIMInformationTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-RIMInformationTransfer CRITICALITY ignore TYPE RIMInformationTransfer PRESENCE optional }, + + ... +} + +-- ************************************************************** +-- +-- Connection Establishment Indication +-- +-- ************************************************************** + +ConnectionEstablishmentIndication::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ConnectionEstablishmentIndicationIEs} }, + ... +} + +ConnectionEstablishmentIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-EndIndication CRITICALITY ignore TYPE EndIndication PRESENCE optional }| + { ID id-S-NSSAI CRITICALITY ignore TYPE S-NSSAI PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY ignore TYPE AllowedNSSAI PRESENCE optional }| + { ID id-UE-DifferentiationInfo CRITICALITY ignore TYPE UE-DifferentiationInfo PRESENCE optional }| + { ID id-DL-CP-SecurityInformation CRITICALITY ignore TYPE DL-CP-SecurityInformation PRESENCE optional }| + { ID id-NB-IoT-UEPriority CRITICALITY ignore TYPE NB-IoT-UEPriority PRESENCE optional }| + { ID id-Enhanced-CoverageRestriction CRITICALITY ignore TYPE Enhanced-CoverageRestriction PRESENCE optional }| + { ID id-CEmodeBrestricted CRITICALITY ignore TYPE CEmodeBrestricted PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY ID MAPPING ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY ID MAPPING REQUEST +-- +-- ************************************************************** + +UERadioCapabilityIDMappingRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityIDMappingRequestIEs} }, + ... +} + +UERadioCapabilityIDMappingRequestIEs NGAP-PROTOCOL-IES ::= { + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY ID MAPPING RESPONSE +-- +-- ************************************************************** + +UERadioCapabilityIDMappingResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UERadioCapabilityIDMappingResponseIEs} }, + ... +} + +UERadioCapabilityIDMappingResponseIEs NGAP-PROTOCOL-IES ::= { + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- AMF CP Relocation Indication +-- +-- ************************************************************** + +AMFCPRelocationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { AMFCPRelocationIndicationIEs} }, + ... +} + +AMFCPRelocationIndicationIEs NGAP-PROTOCOL-IES ::= { + { ID id-AMF-UE-NGAP-ID CRITICALITY reject TYPE AMF-UE-NGAP-ID PRESENCE mandatory }| + { ID id-RAN-UE-NGAP-ID CRITICALITY reject TYPE RAN-UE-NGAP-ID PRESENCE mandatory }| + { ID id-S-NSSAI CRITICALITY ignore TYPE S-NSSAI PRESENCE optional }| + { ID id-AllowedNSSAI CRITICALITY ignore TYPE AllowedNSSAI PRESENCE optional }, + ... +} + +END +-- ASN1STOP + +9.4.5 Information Element Definitions +-- ASN1START +-- ************************************************************** +-- +-- Information Element Definitions +-- +-- ************************************************************** + +NGAP-IEs { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-IEs (2) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +IMPORTS + + id-AdditionalDLForwardingUPTNLInformation, + id-AdditionalULForwardingUPTNLInformation, + id-AdditionalDLQosFlowPerTNLInformation, + id-AdditionalDLUPTNLInformationForHOList, + id-AdditionalNGU-UP-TNLInformation, + id-AdditionalRedundantDL-NGU-UP-TNLInformation, + id-AdditionalRedundantDLQosFlowPerTNLInformation, + id-AdditionalRedundantNGU-UP-TNLInformation, + id-AdditionalRedundantUL-NGU-UP-TNLInformation, + id-AdditionalUL-NGU-UP-TNLInformation, + id-AlternativeQoSParaSetList, + id-BurstArrivalTimeDownlink, + id-Cause, + id-CNPacketDelayBudgetDL, + id-CNPacketDelayBudgetUL, + id-CNTypeRestrictionsForEquivalent, + id-CNTypeRestrictionsForServing, + id-CommonNetworkInstance, + id-ConfiguredTACIndication, + id-CurrentQoSParaSetIndex, + id-DAPSRequestInfo, + id-DAPSResponseInfoList, + id-DataForwardingNotPossible, + id-DataForwardingResponseERABList, + id-DirectForwardingPathAvailability, + id-DL-NGU-UP-TNLInformation, + id-EndpointIPAddressAndPort, + id-ExtendedPacketDelayBudget, + id-ExtendedRATRestrictionInformation, + id-ExtendedSliceSupportList, + id-ExtendedTAISliceSupportList, + id-ExtendedUEIdentityIndexValue, + id-GlobalCable-ID, + id-GlobalRANNodeID, + id-GlobalTNGF-ID, + id-GlobalTWIF-ID, + id-GlobalW-AGF-ID, + id-GUAMIType, + id-LastEUTRAN-PLMNIdentity, + id-LocationReportingAdditionalInfo, + id-MaximumIntegrityProtectedDataRate-DL, + id-MDTConfiguration, + id-MicoAllPLMN, + id-NetworkInstance, + id-NID, + id-NPN-MobilityInformation, + id-NPN-PagingAssistanceInformation, + id-NPN-Support, + id-OldAssociatedQosFlowList-ULendmarkerexpected, + id-PagingAssisDataforCEcapabUE, + id-PagingeDRXInformation, + id-PDUSessionAggregateMaximumBitRate, + id-PduSessionExpectedUEActivityBehaviour, + id-PDUSessionResourceFailedToSetupListCxtFail, + id-PDUSessionResourceReleaseResponseTransfer, + id-PDUSessionType, + id-PSCellInformation, + id-QosFlowAddOrModifyRequestList, + id-QosFlowFailedToSetupList, + id-QosFlowFeedbackList, + id-QosFlowParametersList, + id-QosFlowSetupRequestList, + id-QosFlowToReleaseList, + id-QosMonitoringRequest, + id-QosMonitoringReportingFrequency, + id-RAT-Information, + id-RedundantCommonNetworkInstance, + id-RedundantDL-NGU-TNLInformationReused, + id-RedundantDL-NGU-UP-TNLInformation, + id-RedundantDLQosFlowPerTNLInformation, + id-RedundantPDUSessionInformation, + id-RedundantQosFlowIndicator, + id-RedundantUL-NGU-UP-TNLInformation, + id-SCTP-TLAs, + id-SecondaryRATUsageInformation, + id-SecurityIndication, + id-SecurityResult, + id-SgNB-UE-X2AP-ID, + id-S-NSSAI, + id-SONInformationReport, + id-TNLAssociationTransportLayerAddressNGRAN, + id-TargetRNC-ID, + id-TraceCollectionEntityURI, + id-TSCTrafficCharacteristics, + id-UEHistoryInformationFromTheUE, + id-UERadioCapabilityForPaging, + id-UERadioCapabilityForPagingOfNB-IoT, + id-UL-NGU-UP-TNLInformation, + id-UL-NGU-UP-TNLModifyList, + id-ULForwarding, + id-ULForwardingUP-TNLInformation, + id-UsedRSNInformation, + id-UserLocationInformationTNGF, + id-UserLocationInformationTWIF, + id-UserLocationInformationW-AGF, + maxnoofAllowedAreas, + maxnoofAllowedCAGsperPLMN, + maxnoofAllowedS-NSSAIs, + maxnoofBluetoothName, + maxnoofBPLMNs, + maxnoofCAGSperCell, + maxnoofCandidateCells, + maxnoofCellIDforMDT, + maxnoofCellIDforWarning, + maxnoofCellinAoI, + maxnoofCellinEAI, + maxnoofCellsingNB, + maxnoofCellsinngeNB, + maxnoofCellinTAI, + maxnoofCellsinUEHistoryInfo, + maxnoofCellsUEMovingTrajectory, + maxnoofDRBs, + maxnoofEmergencyAreaID, + maxnoofEAIforRestart, + maxnoofEPLMNs, + maxnoofEPLMNsPlusOne, + maxnoofE-RABs, + maxnoofErrors, + maxnoofExtSliceItems, + maxnoofForbTACs, + maxnoofFreqforMDT, + maxnoofMDTPLMNs, + maxnoofMultiConnectivity, + maxnoofMultiConnectivityMinusOne, + maxnoofNeighPCIforMDT, + maxnoofNGConnectionsToReset, + maxNRARFCN, + maxnoofNRCellBands, + maxnoofPC5QoSFlows, + maxnoofPDUSessions, + maxnoofPLMNs, + maxnoofQosFlows, + maxnoofQosParaSets, + maxnoofRANNodeinAoI, + maxnoofRecommendedCells, + maxnoofRecommendedRANNodes, + maxnoofAoI, + maxnoofSensorName, + maxnoofServedGUAMIs, + maxnoofSliceItems, + maxnoofTACs, + maxnoofTAforMDT, + maxnoofTAIforInactive, + maxnoofTAIforPaging, + maxnoofTAIforRestart, + maxnoofTAIforWarning, + maxnoofTAIinAoI, + maxnoofTimePeriods, + maxnoofTNLAssociations, + maxnoofWLANName, + maxnoofXnExtTLAs, + maxnoofXnGTP-TLAs, + maxnoofXnTLAs + +FROM NGAP-Constants + + Criticality, + ProcedureCode, + ProtocolIE-ID, + TriggeringMessage +FROM NGAP-CommonDataTypes + + ProtocolExtensionContainer{}, + ProtocolIE-Container{}, + NGAP-PROTOCOL-EXTENSION, + ProtocolIE-SingleContainer{}, + NGAP-PROTOCOL-IES +FROM NGAP-Containers; + +-- A + +AdditionalDLUPTNLInformationForHOList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivityMinusOne)) OF AdditionalDLUPTNLInformationForHOItem + +AdditionalDLUPTNLInformationForHOItem ::= SEQUENCE { + additionalDL-NGU-UP-TNLInformation UPTransportLayerInformation, + additionalQosFlowSetupResponseList QosFlowListWithDataForwarding, + additionalDLForwardingUPTNLInformation UPTransportLayerInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { AdditionalDLUPTNLInformationForHOItem-ExtIEs} } OPTIONAL, + ... +} + +AdditionalDLUPTNLInformationForHOItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalRedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }, + ... +} + +AdditionalQosFlowInformation ::= ENUMERATED { + more-likely, + ... +} + +AllocationAndRetentionPriority ::= SEQUENCE { + priorityLevelARP PriorityLevelARP, + pre-emptionCapability Pre-emptionCapability, + pre-emptionVulnerability Pre-emptionVulnerability, + iE-Extensions ProtocolExtensionContainer { {AllocationAndRetentionPriority-ExtIEs} } OPTIONAL, + ... +} + +AllocationAndRetentionPriority-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Allowed-CAG-List-per-PLMN ::= SEQUENCE (SIZE(1..maxnoofAllowedCAGsperPLMN)) OF CAG-ID + +AllowedNSSAI ::= SEQUENCE (SIZE(1..maxnoofAllowedS-NSSAIs)) OF AllowedNSSAI-Item + +AllowedNSSAI-Item ::= SEQUENCE { + s-NSSAI S-NSSAI, + iE-Extensions ProtocolExtensionContainer { {AllowedNSSAI-Item-ExtIEs} } OPTIONAL, + ... +} + +AllowedNSSAI-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Allowed-PNI-NPN-List ::= SEQUENCE (SIZE(1..maxnoofEPLMNsPlusOne)) OF Allowed-PNI-NPN-Item + +Allowed-PNI-NPN-Item ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + pNI-NPN-restricted ENUMERATED {restricted, not-restricted, ...}, + allowed-CAG-List-per-PLMN Allowed-CAG-List-per-PLMN, + iE-Extensions ProtocolExtensionContainer { {Allowed-PNI-NPN-Item-ExtIEs} } OPTIONAL, + ... +} + +Allowed-PNI-NPN-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AllowedTACs ::= SEQUENCE (SIZE(1..maxnoofAllowedAreas)) OF TAC + +AlternativeQoSParaSetIndex ::= INTEGER (1..8, ...) + +AlternativeQoSParaSetNotifyIndex ::= INTEGER (0..8, ...) + +AlternativeQoSParaSetList ::= SEQUENCE (SIZE(1..maxnoofQosParaSets)) OF AlternativeQoSParaSetItem + +AlternativeQoSParaSetItem ::= SEQUENCE { + alternativeQoSParaSetIndex AlternativeQoSParaSetIndex, + guaranteedFlowBitRateDL BitRate OPTIONAL, + guaranteedFlowBitRateUL BitRate OPTIONAL, + packetDelayBudget PacketDelayBudget OPTIONAL, + packetErrorRate PacketErrorRate OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AlternativeQoSParaSetItem-ExtIEs} } OPTIONAL, + ... +} + +AlternativeQoSParaSetItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AMFName ::= PrintableString (SIZE(1..150, ...)) + +AMFNameVisibleString ::= VisibleString (SIZE(1..150, ...)) + +AMFNameUTF8String ::= UTF8String (SIZE(1..150, ...)) + +AMFPagingTarget ::= CHOICE { + globalRANNodeID GlobalRANNodeID, + tAI TAI, + choice-Extensions ProtocolIE-SingleContainer { {AMFPagingTarget-ExtIEs} } +} + +AMFPagingTarget-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +AMFPointer ::= BIT STRING (SIZE(6)) + +AMFRegionID ::= BIT STRING (SIZE(8)) + +AMFSetID ::= BIT STRING (SIZE(10)) + +AMF-TNLAssociationSetupList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF AMF-TNLAssociationSetupItem + +AMF-TNLAssociationSetupItem ::= SEQUENCE { + aMF-TNLAssociationAddress CPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {AMF-TNLAssociationSetupItem-ExtIEs} } OPTIONAL, + ... +} + +AMF-TNLAssociationSetupItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AMF-TNLAssociationToAddList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF AMF-TNLAssociationToAddItem + +AMF-TNLAssociationToAddItem ::= SEQUENCE { + aMF-TNLAssociationAddress CPTransportLayerInformation, + tNLAssociationUsage TNLAssociationUsage OPTIONAL, + tNLAddressWeightFactor TNLAddressWeightFactor, + iE-Extensions ProtocolExtensionContainer { {AMF-TNLAssociationToAddItem-ExtIEs} } OPTIONAL, + ... +} + +AMF-TNLAssociationToAddItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AMF-TNLAssociationToRemoveList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF AMF-TNLAssociationToRemoveItem + +AMF-TNLAssociationToRemoveItem ::= SEQUENCE { + aMF-TNLAssociationAddress CPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {AMF-TNLAssociationToRemoveItem-ExtIEs} } OPTIONAL, + ... +} + +AMF-TNLAssociationToRemoveItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-TNLAssociationTransportLayerAddressNGRAN CRITICALITY reject EXTENSION CPTransportLayerInformation PRESENCE optional}, + ... +} + +AMF-TNLAssociationToUpdateList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF AMF-TNLAssociationToUpdateItem + +AMF-TNLAssociationToUpdateItem ::= SEQUENCE { + aMF-TNLAssociationAddress CPTransportLayerInformation, + tNLAssociationUsage TNLAssociationUsage OPTIONAL, + tNLAddressWeightFactor TNLAddressWeightFactor OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AMF-TNLAssociationToUpdateItem-ExtIEs} } OPTIONAL, + ... +} + +AMF-TNLAssociationToUpdateItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AMF-UE-NGAP-ID ::= INTEGER (0..1099511627775) + +AreaOfInterest ::= SEQUENCE { + areaOfInterestTAIList AreaOfInterestTAIList OPTIONAL, + areaOfInterestCellList AreaOfInterestCellList OPTIONAL, + areaOfInterestRANNodeList AreaOfInterestRANNodeList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterest-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterest-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AreaOfInterestCellList ::= SEQUENCE (SIZE(1..maxnoofCellinAoI)) OF AreaOfInterestCellItem + +AreaOfInterestCellItem ::= SEQUENCE { + nGRAN-CGI NGRAN-CGI, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterestCellItem-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterestCellItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AreaOfInterestList ::= SEQUENCE (SIZE(1..maxnoofAoI)) OF AreaOfInterestItem + +AreaOfInterestItem ::= SEQUENCE { + areaOfInterest AreaOfInterest, + locationReportingReferenceID LocationReportingReferenceID, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterestItem-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterestItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AreaOfInterestRANNodeList ::= SEQUENCE (SIZE(1..maxnoofRANNodeinAoI)) OF AreaOfInterestRANNodeItem + +AreaOfInterestRANNodeItem ::= SEQUENCE { + globalRANNodeID GlobalRANNodeID, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterestRANNodeItem-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterestRANNodeItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AreaOfInterestTAIList ::= SEQUENCE (SIZE(1..maxnoofTAIinAoI)) OF AreaOfInterestTAIItem + +AreaOfInterestTAIItem ::= SEQUENCE { + tAI TAI, + iE-Extensions ProtocolExtensionContainer { {AreaOfInterestTAIItem-ExtIEs} } OPTIONAL, + ... +} + +AreaOfInterestTAIItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AssistanceDataForPaging ::= SEQUENCE { + assistanceDataForRecommendedCells AssistanceDataForRecommendedCells OPTIONAL, + pagingAttemptInformation PagingAttemptInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AssistanceDataForPaging-ExtIEs} } OPTIONAL, + ... +} + +AssistanceDataForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-NPN-PagingAssistanceInformation CRITICALITY ignore EXTENSION NPN-PagingAssistanceInformation PRESENCE optional }| + { ID id-PagingAssisDataforCEcapabUE CRITICALITY ignore EXTENSION PagingAssisDataforCEcapabUE PRESENCE optional }, + ... +} + +AssistanceDataForRecommendedCells ::= SEQUENCE { + recommendedCellsForPaging RecommendedCellsForPaging, + iE-Extensions ProtocolExtensionContainer { {AssistanceDataForRecommendedCells-ExtIEs} } OPTIONAL, + ... +} + +AssistanceDataForRecommendedCells-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +AssociatedQosFlowList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF AssociatedQosFlowItem + +AssociatedQosFlowItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + qosFlowMappingIndication ENUMERATED {ul, dl, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {AssociatedQosFlowItem-ExtIEs} } OPTIONAL, + ... +} + +AssociatedQosFlowItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetIndex PRESENCE optional }, + ... +} + +AuthenticatedIndication ::= ENUMERATED {true, ...} + +AveragingWindow ::= INTEGER (0..4095, ...) + +AreaScopeOfMDT-NR ::= CHOICE { + cellBased CellBasedMDT-NR, + tABased TABasedMDT, + pLMNWide NULL, + tAIBased TAIBasedMDT, + choice-Extensions ProtocolIE-SingleContainer { {AreaScopeOfMDT-NR-ExtIEs} } +} + +AreaScopeOfMDT-NR-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +AreaScopeOfMDT-EUTRA ::= CHOICE { + cellBased CellBasedMDT-EUTRA, + tABased TABasedMDT, + pLMNWide NULL, + tAIBased TAIBasedMDT, + choice-Extensions ProtocolIE-SingleContainer { {AreaScopeOfMDT-EUTRA-ExtIEs} } +} + +AreaScopeOfMDT-EUTRA-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +AreaScopeOfNeighCellsList ::= SEQUENCE (SIZE(1..maxnoofFreqforMDT)) OF AreaScopeOfNeighCellsItem +AreaScopeOfNeighCellsItem ::= SEQUENCE { + nrFrequencyInfo NRFrequencyInfo, + pciListForMDT PCIListForMDT OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { AreaScopeOfNeighCellsItem-ExtIEs} } OPTIONAL, + ... +} + +AreaScopeOfNeighCellsItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- B + +BitRate ::= INTEGER (0..4000000000000, ...) + +BroadcastCancelledAreaList ::= CHOICE { + cellIDCancelledEUTRA CellIDCancelledEUTRA, + tAICancelledEUTRA TAICancelledEUTRA, + emergencyAreaIDCancelledEUTRA EmergencyAreaIDCancelledEUTRA, + cellIDCancelledNR CellIDCancelledNR, + tAICancelledNR TAICancelledNR, + emergencyAreaIDCancelledNR EmergencyAreaIDCancelledNR, + choice-Extensions ProtocolIE-SingleContainer { {BroadcastCancelledAreaList-ExtIEs} } +} + +BroadcastCancelledAreaList-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +BroadcastCompletedAreaList ::= CHOICE { + cellIDBroadcastEUTRA CellIDBroadcastEUTRA, + tAIBroadcastEUTRA TAIBroadcastEUTRA, + emergencyAreaIDBroadcastEUTRA EmergencyAreaIDBroadcastEUTRA, + cellIDBroadcastNR CellIDBroadcastNR, + tAIBroadcastNR TAIBroadcastNR, + emergencyAreaIDBroadcastNR EmergencyAreaIDBroadcastNR, + choice-Extensions ProtocolIE-SingleContainer { {BroadcastCompletedAreaList-ExtIEs} } +} + +BroadcastCompletedAreaList-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +BroadcastPLMNList ::= SEQUENCE (SIZE(1..maxnoofBPLMNs)) OF BroadcastPLMNItem + +BroadcastPLMNItem ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + tAISliceSupportList SliceSupportList, + iE-Extensions ProtocolExtensionContainer { {BroadcastPLMNItem-ExtIEs} } OPTIONAL, + ... +} + +BroadcastPLMNItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-NPN-Support CRITICALITY reject EXTENSION NPN-Support PRESENCE optional}| + {ID id-ExtendedTAISliceSupportList CRITICALITY reject EXTENSION ExtendedSliceSupportList PRESENCE optional}, + ... +} + +BluetoothMeasurementConfiguration ::= SEQUENCE { + bluetoothMeasConfig BluetoothMeasConfig, + bluetoothMeasConfigNameList BluetoothMeasConfigNameList OPTIONAL, + bt-rssi ENUMERATED {true, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { BluetoothMeasurementConfiguration-ExtIEs } } OPTIONAL, + ... +} + +BluetoothMeasurementConfiguration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +BluetoothMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofBluetoothName)) OF BluetoothMeasConfigNameItem + +BluetoothMeasConfigNameItem ::= SEQUENCE { + bluetoothName BluetoothName, + iE-Extensions ProtocolExtensionContainer { { BluetoothMeasConfigNameItem-ExtIEs } } OPTIONAL, + ... +} + +BluetoothMeasConfigNameItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +BluetoothMeasConfig::= ENUMERATED {setup,...} + +BluetoothName ::= OCTET STRING (SIZE (1..248)) + +BurstArrivalTime ::= OCTET STRING + +-- C + +CAG-ID ::= BIT STRING (SIZE(32)) + +CancelAllWarningMessages ::= ENUMERATED { + true, + ... +} + +CancelledCellsInEAI-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CancelledCellsInEAI-EUTRA-Item + +CancelledCellsInEAI-EUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellsInEAI-EUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellsInEAI-EUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CancelledCellsInEAI-NR ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CancelledCellsInEAI-NR-Item + +CancelledCellsInEAI-NR-Item ::= SEQUENCE { + nR-CGI NR-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellsInEAI-NR-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellsInEAI-NR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CancelledCellsInTAI-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CancelledCellsInTAI-EUTRA-Item + +CancelledCellsInTAI-EUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellsInTAI-EUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellsInTAI-EUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CancelledCellsInTAI-NR ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CancelledCellsInTAI-NR-Item + +CancelledCellsInTAI-NR-Item ::= SEQUENCE{ + nR-CGI NR-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellsInTAI-NR-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellsInTAI-NR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CandidateCellList ::= SEQUENCE (SIZE(1.. maxnoofCandidateCells)) OF CandidateCellItem + +CandidateCellItem ::= SEQUENCE{ + candidateCell CandidateCell, + iE-Extensions ProtocolExtensionContainer { {CandidateCellItem-ExtIEs} } OPTIONAL, + ... +} + +CandidateCellItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CandidateCell::= CHOICE { + candidateCGI CandidateCellID, + candidatePCI CandidatePCI, + choice-Extensions ProtocolIE-SingleContainer { { CandidateCell-ExtIEs} } +} + +CandidateCell-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + + +CandidateCellID::= SEQUENCE { + candidateCellID NR-CGI, + iE-Extensions ProtocolExtensionContainer { { CandidateCellID-ExtIEs} } OPTIONAL, + ... +} + +CandidateCellID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CandidatePCI::= SEQUENCE { + candidatePCI INTEGER (0..1007, ...), + candidateNRARFCN INTEGER (0..3279165), + iE-Extensions ProtocolExtensionContainer { { CandidatePCI-ExtIEs} } OPTIONAL, + ... +} + +CandidatePCI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Cause ::= CHOICE { + radioNetwork CauseRadioNetwork, + transport CauseTransport, + nas CauseNas, + protocol CauseProtocol, + misc CauseMisc, + choice-Extensions ProtocolIE-SingleContainer { {Cause-ExtIEs} } +} + +Cause-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +CauseMisc ::= ENUMERATED { + control-processing-overload, + not-enough-user-plane-processing-resources, + hardware-failure, + om-intervention, + unknown-PLMN-or-SNPN, + unspecified, + ... +} + +CauseNas ::= ENUMERATED { + normal-release, + authentication-failure, + deregister, + unspecified, + ... +} + +CauseProtocol ::= ENUMERATED { + transfer-syntax-error, + abstract-syntax-error-reject, + abstract-syntax-error-ignore-and-notify, + message-not-compatible-with-receiver-state, + semantic-error, + abstract-syntax-error-falsely-constructed-message, + unspecified, + ... +} + +CauseRadioNetwork ::= ENUMERATED { + unspecified, + txnrelocoverall-expiry, + successful-handover, + release-due-to-ngran-generated-reason, + release-due-to-5gc-generated-reason, + handover-cancelled, + partial-handover, + ho-failure-in-target-5GC-ngran-node-or-target-system, + ho-target-not-allowed, + tngrelocoverall-expiry, + tngrelocprep-expiry, + cell-not-available, + unknown-targetID, + no-radio-resources-available-in-target-cell, + unknown-local-UE-NGAP-ID, + inconsistent-remote-UE-NGAP-ID, + handover-desirable-for-radio-reason, + time-critical-handover, + resource-optimisation-handover, + reduce-load-in-serving-cell, + user-inactivity, + radio-connection-with-ue-lost, + radio-resources-not-available, + invalid-qos-combination, + failure-in-radio-interface-procedure, + interaction-with-other-procedure, + unknown-PDU-session-ID, + unkown-qos-flow-ID, + multiple-PDU-session-ID-instances, + multiple-qos-flow-ID-instances, + encryption-and-or-integrity-protection-algorithms-not-supported, + ng-intra-system-handover-triggered, + ng-inter-system-handover-triggered, + xn-handover-triggered, + not-supported-5QI-value, + ue-context-transfer, + ims-voice-eps-fallback-or-rat-fallback-triggered, + up-integrity-protection-not-possible, + up-confidentiality-protection-not-possible, + slice-not-supported, + ue-in-rrc-inactive-state-not-reachable, + redirection, + resources-not-available-for-the-slice, + ue-max-integrity-protected-data-rate-reason, + release-due-to-cn-detected-mobility, + ..., + n26-interface-not-available, + release-due-to-pre-emption, + multiple-location-reporting-reference-ID-instances, + rsn-not-available-for-the-up, + npn-access-denied, + cag-only-access-denied, + insufficient-ue-capabilities +} + +CauseTransport ::= ENUMERATED { + transport-resource-unavailable, + unspecified, + ... +} + +Cell-CAGInformation ::= SEQUENCE { + nGRAN-CGI NGRAN-CGI, + cellCAGList CellCAGList, + iE-Extensions ProtocolExtensionContainer { {Cell-CAGInformation-ExtIEs} } OPTIONAL, + ... +} + +Cell-CAGInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +CellCAGList ::= SEQUENCE (SIZE(1..maxnoofCAGSperCell)) OF CAG-ID + +CellIDBroadcastEUTRA ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF CellIDBroadcastEUTRA-Item + +CellIDBroadcastEUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + iE-Extensions ProtocolExtensionContainer { {CellIDBroadcastEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CellIDBroadcastEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIDBroadcastNR ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF CellIDBroadcastNR-Item + +CellIDBroadcastNR-Item ::= SEQUENCE { + nR-CGI NR-CGI, + iE-Extensions ProtocolExtensionContainer { {CellIDBroadcastNR-Item-ExtIEs} } OPTIONAL, + ... +} + +CellIDBroadcastNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIDCancelledEUTRA ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF CellIDCancelledEUTRA-Item + +CellIDCancelledEUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CellIDCancelledEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CellIDCancelledEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIDCancelledNR ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF CellIDCancelledNR-Item + +CellIDCancelledNR-Item ::= SEQUENCE { + nR-CGI NR-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CellIDCancelledNR-Item-ExtIEs} } OPTIONAL, + ... +} + +CellIDCancelledNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIDListForRestart ::= CHOICE { + eUTRA-CGIListforRestart EUTRA-CGIList, + nR-CGIListforRestart NR-CGIList, + choice-Extensions ProtocolIE-SingleContainer { {CellIDListForRestart-ExtIEs} } +} + +CellIDListForRestart-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +CellSize ::= ENUMERATED {verysmall, small, medium, large, ...} + + +CellType ::= SEQUENCE { + cellSize CellSize, + iE-Extensions ProtocolExtensionContainer { {CellType-ExtIEs} } OPTIONAL, + ... +} + +CellType-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CEmodeBSupport-Indicator ::= ENUMERATED {supported,...} + + +CEmodeBrestricted ::= ENUMERATED { + restricted, + not-restricted, + ... +} + +CNAssistedRANTuning ::= SEQUENCE { + expectedUEBehaviour ExpectedUEBehaviour OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {CNAssistedRANTuning-ExtIEs} } OPTIONAL, + ... +} + +CNAssistedRANTuning-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CNTypeRestrictionsForEquivalent ::= SEQUENCE (SIZE(1..maxnoofEPLMNs)) OF CNTypeRestrictionsForEquivalentItem + +CNTypeRestrictionsForEquivalentItem ::= SEQUENCE { + plmnIdentity PLMNIdentity, + cn-Type ENUMERATED {epc-forbidden, fiveGC-forbidden, ...}, + iE-Extensions ProtocolExtensionContainer { {CNTypeRestrictionsForEquivalentItem-ExtIEs} } OPTIONAL, + ... +} + +CNTypeRestrictionsForEquivalentItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::={ + ... +} + +CNTypeRestrictionsForServing ::= ENUMERATED { + epc-forbidden, + ... +} + +CommonNetworkInstance ::= OCTET STRING + +CompletedCellsInEAI-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CompletedCellsInEAI-EUTRA-Item + +CompletedCellsInEAI-EUTRA-Item ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellsInEAI-EUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellsInEAI-EUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CompletedCellsInEAI-NR ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CompletedCellsInEAI-NR-Item + +CompletedCellsInEAI-NR-Item ::= SEQUENCE { + nR-CGI NR-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellsInEAI-NR-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellsInEAI-NR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CompletedCellsInTAI-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CompletedCellsInTAI-EUTRA-Item + +CompletedCellsInTAI-EUTRA-Item ::= SEQUENCE{ + eUTRA-CGI EUTRA-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellsInTAI-EUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellsInTAI-EUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CompletedCellsInTAI-NR ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CompletedCellsInTAI-NR-Item + +CompletedCellsInTAI-NR-Item ::= SEQUENCE{ + nR-CGI NR-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellsInTAI-NR-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellsInTAI-NR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ConcurrentWarningMessageInd ::= ENUMERATED { + true, + ... +} + +ConfidentialityProtectionIndication ::= ENUMERATED { + required, + preferred, + not-needed, + ... +} + +ConfidentialityProtectionResult ::= ENUMERATED { + performed, + not-performed, + ... +} + +ConfiguredTACIndication ::= ENUMERATED { + true, + ... +} + +CoreNetworkAssistanceInformationForInactive ::= SEQUENCE { + uEIdentityIndexValue UEIdentityIndexValue, + uESpecificDRX PagingDRX OPTIONAL, + periodicRegistrationUpdateTimer PeriodicRegistrationUpdateTimer, + mICOModeIndication MICOModeIndication OPTIONAL, + tAIListForInactive TAIListForInactive, + expectedUEBehaviour ExpectedUEBehaviour OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {CoreNetworkAssistanceInformationForInactive-ExtIEs} } OPTIONAL, + ... +} + +CoreNetworkAssistanceInformationForInactive-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PagingeDRXInformation CRITICALITY ignore EXTENSION PagingeDRXInformation PRESENCE optional }| + { ID id-ExtendedUEIdentityIndexValue CRITICALITY ignore EXTENSION ExtendedUEIdentityIndexValue PRESENCE optional }| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore EXTENSION UERadioCapabilityForPaging PRESENCE optional }| + { ID id-MicoAllPLMN CRITICALITY ignore EXTENSION MicoAllPLMN PRESENCE optional }, + ... +} + +COUNTValueForPDCP-SN12 ::= SEQUENCE { + pDCP-SN12 INTEGER (0..4095), + hFN-PDCP-SN12 INTEGER (0..1048575), + iE-Extensions ProtocolExtensionContainer { {COUNTValueForPDCP-SN12-ExtIEs} } OPTIONAL, + ... +} + +COUNTValueForPDCP-SN12-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +COUNTValueForPDCP-SN18 ::= SEQUENCE { + pDCP-SN18 INTEGER (0..262143), + hFN-PDCP-SN18 INTEGER (0..16383), + iE-Extensions ProtocolExtensionContainer { {COUNTValueForPDCP-SN18-ExtIEs} } OPTIONAL, + ... +} + +COUNTValueForPDCP-SN18-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CoverageEnhancementLevel ::= OCTET STRING + +CPTransportLayerInformation ::= CHOICE { + endpointIPAddress TransportLayerAddress, + choice-Extensions ProtocolIE-SingleContainer { {CPTransportLayerInformation-ExtIEs} } +} + +CPTransportLayerInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-EndpointIPAddressAndPort CRITICALITY reject TYPE EndpointIPAddressAndPort PRESENCE mandatory }, + ... +} + +CriticalityDiagnostics ::= SEQUENCE { + procedureCode ProcedureCode OPTIONAL, + triggeringMessage TriggeringMessage OPTIONAL, + procedureCriticality Criticality OPTIONAL, + iEsCriticalityDiagnostics CriticalityDiagnostics-IE-List OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{CriticalityDiagnostics-ExtIEs}} OPTIONAL, + ... +} + +CriticalityDiagnostics-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CriticalityDiagnostics-IE-List ::= SEQUENCE (SIZE(1..maxnoofErrors)) OF CriticalityDiagnostics-IE-Item + +CriticalityDiagnostics-IE-Item ::= SEQUENCE { + iECriticality Criticality, + iE-ID ProtocolIE-ID, + typeOfError TypeOfError, + iE-Extensions ProtocolExtensionContainer {{CriticalityDiagnostics-IE-Item-ExtIEs}} OPTIONAL, + ... +} + +CriticalityDiagnostics-IE-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellBasedMDT-NR::= SEQUENCE { + cellIdListforMDT CellIdListforMDT-NR, + iE-Extensions ProtocolExtensionContainer { {CellBasedMDT-NR-ExtIEs} } OPTIONAL, + ... +} + +CellBasedMDT-NR-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIdListforMDT-NR ::= SEQUENCE (SIZE(1..maxnoofCellIDforMDT)) OF NR-CGI + + +CellBasedMDT-EUTRA::= SEQUENCE { + cellIdListforMDT CellIdListforMDT-EUTRA, + iE-Extensions ProtocolExtensionContainer { {CellBasedMDT-EUTRA-ExtIEs} } OPTIONAL, + ... +} + +CellBasedMDT-EUTRA-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIdListforMDT-EUTRA ::= SEQUENCE (SIZE(1..maxnoofCellIDforMDT)) OF EUTRA-CGI + + +-- D + +DataCodingScheme ::= BIT STRING (SIZE(8)) + +DataForwardingAccepted ::= ENUMERATED { + data-forwarding-accepted, + ... +} + +DataForwardingNotPossible ::= ENUMERATED { + data-forwarding-not-possible, + ... +} + +DataForwardingResponseDRBList ::= SEQUENCE (SIZE(1..maxnoofDRBs)) OF DataForwardingResponseDRBItem + +DataForwardingResponseDRBItem ::= SEQUENCE { + dRB-ID DRB-ID, + dLForwardingUP-TNLInformation UPTransportLayerInformation OPTIONAL, + uLForwardingUP-TNLInformation UPTransportLayerInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{DataForwardingResponseDRBItem-ExtIEs}} OPTIONAL, + ... +} + +DataForwardingResponseDRBItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DAPSRequestInfo ::= SEQUENCE { + dAPSIndicator ENUMERATED {daps-ho-required, ...}, + iE-Extensions ProtocolExtensionContainer { {DAPSRequestInfo-ExtIEs} } OPTIONAL, + ... +} + +DAPSRequestInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DAPSResponseInfoList ::= SEQUENCE (SIZE(1.. maxnoofDRBs)) OF DAPSResponseInfoItem + +DAPSResponseInfoItem ::= SEQUENCE { + dRB-ID DRB-ID, + dAPSResponseInfo DAPSResponseInfo, + iE-Extension ProtocolExtensionContainer { {DAPSResponseInfoItem-ExtIEs} } OPTIONAL, + ... +} + +DAPSResponseInfoItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DAPSResponseInfo ::= SEQUENCE { + dapsresponseindicator ENUMERATED {daps-ho-accepted, daps-ho-not-accepted, ...}, + iE-Extensions ProtocolExtensionContainer { { DAPSResponseInfo-ExtIEs} } OPTIONAL, + ... +} + +DAPSResponseInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +DataForwardingResponseERABList ::= SEQUENCE (SIZE(1..maxnoofE-RABs)) OF DataForwardingResponseERABListItem + +DataForwardingResponseERABListItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dLForwardingUP-TNLInformation UPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {DataForwardingResponseERABListItem-ExtIEs} } OPTIONAL, + ... +} + +DataForwardingResponseERABListItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DelayCritical ::= ENUMERATED { + delay-critical, + non-delay-critical, + ... +} + +DL-CP-SecurityInformation ::= SEQUENCE { + dl-NAS-MAC DL-NAS-MAC, + iE-Extensions ProtocolExtensionContainer { { DL-CP-SecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +DL-CP-SecurityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DL-NAS-MAC ::= BIT STRING (SIZE (16)) + +DLForwarding ::= ENUMERATED { + dl-forwarding-proposed, + ... +} + +DL-NGU-TNLInformationReused ::= ENUMERATED { + true, + ... +} + +DirectForwardingPathAvailability ::= ENUMERATED { + direct-path-available, + ... +} + +DRB-ID ::= INTEGER (1..32, ...) + +DRBsSubjectToStatusTransferList ::= SEQUENCE (SIZE(1..maxnoofDRBs)) OF DRBsSubjectToStatusTransferItem + +DRBsSubjectToStatusTransferItem ::= SEQUENCE { + dRB-ID DRB-ID, + dRBStatusUL DRBStatusUL, + dRBStatusDL DRBStatusDL, + iE-Extension ProtocolExtensionContainer { {DRBsSubjectToStatusTransferItem-ExtIEs} } OPTIONAL, + ... +} + +DRBsSubjectToStatusTransferItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-OldAssociatedQosFlowList-ULendmarkerexpected CRITICALITY ignore EXTENSION AssociatedQosFlowList PRESENCE optional }, + ... +} + +DRBStatusDL ::= CHOICE { + dRBStatusDL12 DRBStatusDL12, + dRBStatusDL18 DRBStatusDL18, + choice-Extensions ProtocolIE-SingleContainer { {DRBStatusDL-ExtIEs} } +} + +DRBStatusDL-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +DRBStatusDL12 ::= SEQUENCE { + dL-COUNTValue COUNTValueForPDCP-SN12, + iE-Extension ProtocolExtensionContainer { {DRBStatusDL12-ExtIEs} } OPTIONAL, + ... +} + +DRBStatusDL12-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBStatusDL18 ::= SEQUENCE { + dL-COUNTValue COUNTValueForPDCP-SN18, + iE-Extension ProtocolExtensionContainer { {DRBStatusDL18-ExtIEs} } OPTIONAL, + ... +} + +DRBStatusDL18-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBStatusUL ::= CHOICE { + dRBStatusUL12 DRBStatusUL12, + dRBStatusUL18 DRBStatusUL18, + choice-Extensions ProtocolIE-SingleContainer { {DRBStatusUL-ExtIEs} } +} + +DRBStatusUL-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +DRBStatusUL12 ::= SEQUENCE { + uL-COUNTValue COUNTValueForPDCP-SN12, + receiveStatusOfUL-PDCP-SDUs BIT STRING (SIZE(1..2048)) OPTIONAL, + iE-Extension ProtocolExtensionContainer { {DRBStatusUL12-ExtIEs} } OPTIONAL, + ... +} + +DRBStatusUL12-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBStatusUL18 ::= SEQUENCE { + uL-COUNTValue COUNTValueForPDCP-SN18, + receiveStatusOfUL-PDCP-SDUs BIT STRING (SIZE(1..131072)) OPTIONAL, + iE-Extension ProtocolExtensionContainer { {DRBStatusUL18-ExtIEs} } OPTIONAL, + ... +} + +DRBStatusUL18-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBsToQosFlowsMappingList ::= SEQUENCE (SIZE(1..maxnoofDRBs)) OF DRBsToQosFlowsMappingItem + +DRBsToQosFlowsMappingItem ::= SEQUENCE { + dRB-ID DRB-ID, + associatedQosFlowList AssociatedQosFlowList, + iE-Extensions ProtocolExtensionContainer { {DRBsToQosFlowsMappingItem-ExtIEs} } OPTIONAL, + ... +} + +DRBsToQosFlowsMappingItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-DAPSRequestInfo CRITICALITY ignore EXTENSION DAPSRequestInfo PRESENCE optional }, + ... +} + +Dynamic5QIDescriptor ::= SEQUENCE { + priorityLevelQos PriorityLevelQos, + packetDelayBudget PacketDelayBudget, + packetErrorRate PacketErrorRate, + fiveQI FiveQI OPTIONAL, + delayCritical DelayCritical OPTIONAL, +-- The above IE shall be present in case of GBR QoS flow + averagingWindow AveragingWindow OPTIONAL, +-- The above IE shall be present in case of GBR QoS flow + maximumDataBurstVolume MaximumDataBurstVolume OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {Dynamic5QIDescriptor-ExtIEs} } OPTIONAL, + ... +} + +Dynamic5QIDescriptor-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-ExtendedPacketDelayBudget CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-CNPacketDelayBudgetDL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-CNPacketDelayBudgetUL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }, + ... +} + +-- E + +EarlyStatusTransfer-TransparentContainer ::= SEQUENCE { + procedureStage ProcedureStageChoice, + iE-Extensions ProtocolExtensionContainer { {EarlyStatusTransfer-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +EarlyStatusTransfer-TransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ProcedureStageChoice ::= CHOICE { + first-dl-count FirstDLCount, + choice-Extensions ProtocolIE-SingleContainer { {ProcedureStageChoice-ExtIEs} } +} + +ProcedureStageChoice-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +FirstDLCount ::= SEQUENCE { + dRBsSubjectToEarlyStatusTransfer DRBsSubjectToEarlyStatusTransfer-List, + iE-Extension ProtocolExtensionContainer { {FirstDLCount-ExtIEs} } OPTIONAL, + ... +} + +FirstDLCount-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +DRBsSubjectToEarlyStatusTransfer-List ::= SEQUENCE (SIZE (1.. maxnoofDRBs)) OF DRBsSubjectToEarlyStatusTransfer-Item + +DRBsSubjectToEarlyStatusTransfer-Item ::= SEQUENCE { + dRB-ID DRB-ID, + firstDLCOUNT DRBStatusDL, + iE-Extension ProtocolExtensionContainer { { DRBsSubjectToEarlyStatusTransfer-Item-ExtIEs} } OPTIONAL, + ... +} + +DRBsSubjectToEarlyStatusTransfer-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +EDT-Session ::= ENUMERATED { + true, + ... +} + +EmergencyAreaID ::= OCTET STRING (SIZE(3)) + +EmergencyAreaIDBroadcastEUTRA ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaIDBroadcastEUTRA-Item + +EmergencyAreaIDBroadcastEUTRA-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + completedCellsInEAI-EUTRA CompletedCellsInEAI-EUTRA, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaIDBroadcastEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaIDBroadcastEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaIDBroadcastNR ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaIDBroadcastNR-Item + +EmergencyAreaIDBroadcastNR-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + completedCellsInEAI-NR CompletedCellsInEAI-NR, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaIDBroadcastNR-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaIDBroadcastNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaIDCancelledEUTRA ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaIDCancelledEUTRA-Item + +EmergencyAreaIDCancelledEUTRA-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + cancelledCellsInEAI-EUTRA CancelledCellsInEAI-EUTRA, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaIDCancelledEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaIDCancelledEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaIDCancelledNR ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaIDCancelledNR-Item + +EmergencyAreaIDCancelledNR-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + cancelledCellsInEAI-NR CancelledCellsInEAI-NR, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaIDCancelledNR-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaIDCancelledNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaIDList ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaID + +EmergencyAreaIDListForRestart ::= SEQUENCE (SIZE(1..maxnoofEAIforRestart)) OF EmergencyAreaID + +EmergencyFallbackIndicator ::= SEQUENCE { + emergencyFallbackRequestIndicator EmergencyFallbackRequestIndicator, + emergencyServiceTargetCN EmergencyServiceTargetCN OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {EmergencyFallbackIndicator-ExtIEs} } OPTIONAL, + ... +} + +EmergencyFallbackIndicator-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyFallbackRequestIndicator ::= ENUMERATED { + emergency-fallback-requested, + ... +} + +EmergencyServiceTargetCN ::= ENUMERATED { + fiveGC, + epc, + ... +} + +ENB-ID ::= CHOICE { + macroENB-ID BIT STRING (SIZE(20)), + homeENB-ID BIT STRING (SIZE(28)), + short-macroENB-ID BIT STRING (SIZE(18)), + long-macroENB-ID BIT STRING (SIZE(21)), + choice-Extensions ProtocolIE-SingleContainer { { ENB-ID-ExtIEs} } +} + +ENB-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + + +Enhanced-CoverageRestriction ::= ENUMERATED {restricted, ... } + + +Extended-ConnectedTime ::= INTEGER (0..255) + +EN-DCSONConfigurationTransfer ::= OCTET STRING + +EndpointIPAddressAndPort ::=SEQUENCE { + endpointIPAddress TransportLayerAddress, + portNumber PortNumber, + iE-Extensions ProtocolExtensionContainer { { EndpointIPAddressAndPort-ExtIEs} } OPTIONAL +} + +EndIndication ::= ENUMERATED { + no-further-data, + further-data-exists, + ... +} + +EndpointIPAddressAndPort-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EquivalentPLMNs ::= SEQUENCE (SIZE(1..maxnoofEPLMNs)) OF PLMNIdentity + +EPS-TAC ::= OCTET STRING (SIZE(2)) + +EPS-TAI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + ePS-TAC EPS-TAC, + iE-Extensions ProtocolExtensionContainer { {EPS-TAI-ExtIEs} } OPTIONAL, + ... +} + +EPS-TAI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +E-RAB-ID ::= INTEGER (0..15, ...) + +E-RABInformationList ::= SEQUENCE (SIZE(1..maxnoofE-RABs)) OF E-RABInformationItem + +E-RABInformationItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dLForwarding DLForwarding OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABInformationItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EUTRACellIdentity ::= BIT STRING (SIZE(28)) + +EUTRA-CGI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + eUTRACellIdentity EUTRACellIdentity, + iE-Extensions ProtocolExtensionContainer { {EUTRA-CGI-ExtIEs} } OPTIONAL, + ... +} + +EUTRA-CGI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +EUTRA-CGIList ::= SEQUENCE (SIZE(1..maxnoofCellsinngeNB)) OF EUTRA-CGI + +EUTRA-CGIListForWarning ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF EUTRA-CGI + +EUTRAencryptionAlgorithms ::= BIT STRING (SIZE(16, ...)) + +EUTRAintegrityProtectionAlgorithms ::= BIT STRING (SIZE(16, ...)) + +EventType ::= ENUMERATED { + direct, + change-of-serve-cell, + ue-presence-in-area-of-interest, + stop-change-of-serve-cell, + stop-ue-presence-in-area-of-interest, + cancel-location-reporting-for-the-ue, + ... +} + +ExpectedActivityPeriod ::= INTEGER (1..30|40|50|60|80|100|120|150|180|181, ...) + +ExpectedHOInterval ::= ENUMERATED { + sec15, sec30, sec60, sec90, sec120, sec180, long-time, + ... +} + +ExpectedIdlePeriod ::= INTEGER (1..30|40|50|60|80|100|120|150|180|181, ...) + +ExpectedUEActivityBehaviour ::= SEQUENCE { + expectedActivityPeriod ExpectedActivityPeriod OPTIONAL, + expectedIdlePeriod ExpectedIdlePeriod OPTIONAL, + sourceOfUEActivityBehaviourInformation SourceOfUEActivityBehaviourInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ExpectedUEActivityBehaviour-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEActivityBehaviour-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExpectedUEBehaviour ::= SEQUENCE { + expectedUEActivityBehaviour ExpectedUEActivityBehaviour OPTIONAL, + expectedHOInterval ExpectedHOInterval OPTIONAL, + expectedUEMobility ExpectedUEMobility OPTIONAL, + expectedUEMovingTrajectory ExpectedUEMovingTrajectory OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ExpectedUEBehaviour-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEBehaviour-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExpectedUEMobility ::= ENUMERATED { + stationary, + mobile, + ... +} + +ExpectedUEMovingTrajectory ::= SEQUENCE (SIZE(1..maxnoofCellsUEMovingTrajectory)) OF ExpectedUEMovingTrajectoryItem + +ExpectedUEMovingTrajectoryItem ::= SEQUENCE { + nGRAN-CGI NGRAN-CGI, + timeStayedInCell INTEGER (0..4095) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ExpectedUEMovingTrajectoryItem-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEMovingTrajectoryItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Extended-AMFName ::= SEQUENCE { + aMFNameVisibleString AMFNameVisibleString OPTIONAL, + aMFNameUTF8String AMFNameUTF8String OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { Extended-AMFName-ExtIEs } } OPTIONAL, + ... +} + +Extended-AMFName-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExtendedPacketDelayBudget ::= INTEGER (1..65535, ...) + + +Extended-RANNodeName ::= SEQUENCE { + rANNodeNameVisibleString RANNodeNameVisibleString OPTIONAL, + rANNodeNameUTF8String RANNodeNameUTF8String OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { Extended-RANNodeName-ExtIEs } } OPTIONAL, ... +} + +Extended-RANNodeName-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExtendedRATRestrictionInformation ::= SEQUENCE { + primaryRATRestriction BIT STRING (SIZE(8, ...)), + secondaryRATRestriction BIT STRING (SIZE(8, ...)), + iE-Extensions ProtocolExtensionContainer { {ExtendedRATRestrictionInformation-ExtIEs} } OPTIONAL, + ... +} + +ExtendedRATRestrictionInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ExtendedRNC-ID ::= INTEGER (4096..65535) + +ExtendedSliceSupportList ::= SEQUENCE (SIZE(1..maxnoofExtSliceItems)) OF SliceSupportItem + +ExtendedUEIdentityIndexValue ::= BIT STRING (SIZE(16)) + +EventTrigger::= CHOICE { + outOfCoverage ENUMERATED {true, ...}, + eventL1LoggedMDTConfig EventL1LoggedMDTConfig, + choice-Extensions ProtocolIE-SingleContainer { { EventTrigger-ExtIEs} } +} + +EventTrigger-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +EventL1LoggedMDTConfig ::= SEQUENCE { + l1Threshold MeasurementThresholdL1LoggedMDT, + hysteresis Hysteresis, + timeToTrigger TimeToTrigger, + iE-Extensions ProtocolExtensionContainer { { EventL1LoggedMDTConfig-ExtIEs} } OPTIONAL, + ... +} + +EventL1LoggedMDTConfig-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MeasurementThresholdL1LoggedMDT ::= CHOICE { + threshold-RSRP Threshold-RSRP, + threshold-RSRQ Threshold-RSRQ, + choice-Extensions ProtocolIE-SingleContainer { { MeasurementThresholdL1LoggedMDT-ExtIEs} } +} + +MeasurementThresholdL1LoggedMDT-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +-- F + +FailureIndication ::= SEQUENCE { + uERLFReportContainer UERLFReportContainer, + iE-Extensions ProtocolExtensionContainer { { FailureIndication-ExtIEs} } OPTIONAL, + ... +} + +FailureIndication-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +FiveG-S-TMSI ::= SEQUENCE { + aMFSetID AMFSetID, + aMFPointer AMFPointer, + fiveG-TMSI FiveG-TMSI, + iE-Extensions ProtocolExtensionContainer { {FiveG-S-TMSI-ExtIEs} } OPTIONAL, + ... +} + +FiveG-S-TMSI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +FiveG-TMSI ::= OCTET STRING (SIZE(4)) + +FiveQI ::= INTEGER (0..255, ...) + +ForbiddenAreaInformation ::= SEQUENCE (SIZE(1.. maxnoofEPLMNsPlusOne)) OF ForbiddenAreaInformation-Item + +ForbiddenAreaInformation-Item ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + forbiddenTACs ForbiddenTACs, + iE-Extensions ProtocolExtensionContainer { {ForbiddenAreaInformation-Item-ExtIEs} } OPTIONAL, + ... +} + +ForbiddenAreaInformation-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ForbiddenTACs ::= SEQUENCE (SIZE(1..maxnoofForbTACs)) OF TAC + +FromEUTRANtoNGRAN ::= SEQUENCE { + sourceeNBID IntersystemSONeNBID, + targetNGRANnodeID IntersystemSONNGRANnodeID, + iE-Extensions ProtocolExtensionContainer { { FromEUTRANtoNGRAN-ExtIEs} } OPTIONAL +} + +FromEUTRANtoNGRAN-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +FromNGRANtoEUTRAN ::= SEQUENCE { + sourceNGRANnodeID IntersystemSONNGRANnodeID, + targeteNBID IntersystemSONeNBID, + iE-Extensions ProtocolExtensionContainer { { FromNGRANtoEUTRAN-ExtIEs} } OPTIONAL +} + +FromNGRANtoEUTRAN-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- G + +GBR-QosInformation ::= SEQUENCE { + maximumFlowBitRateDL BitRate, + maximumFlowBitRateUL BitRate, + guaranteedFlowBitRateDL BitRate, + guaranteedFlowBitRateUL BitRate, + notificationControl NotificationControl OPTIONAL, + maximumPacketLossRateDL PacketLossRate OPTIONAL, + maximumPacketLossRateUL PacketLossRate OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {GBR-QosInformation-ExtIEs} } OPTIONAL, + ... +} + +GBR-QosInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AlternativeQoSParaSetList CRITICALITY ignore EXTENSION AlternativeQoSParaSetList PRESENCE optional }, + ... +} + +GlobalCable-ID ::= OCTET STRING + +GlobalENB-ID ::= SEQUENCE { + pLMNidentity PLMNIdentity, + eNB-ID ENB-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalENB-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalENB-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +GlobalGNB-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + gNB-ID GNB-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalGNB-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalGNB-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GlobalN3IWF-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + n3IWF-ID N3IWF-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalN3IWF-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalN3IWF-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GlobalLine-ID ::= SEQUENCE { + globalLineIdentity GlobalLineIdentity, + lineType LineType OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {GlobalLine-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalLine-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GlobalLineIdentity ::= OCTET STRING + +GlobalNgENB-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + ngENB-ID NgENB-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalNgENB-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalNgENB-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GlobalRANNodeID ::= CHOICE { + globalGNB-ID GlobalGNB-ID, + globalNgENB-ID GlobalNgENB-ID, + globalN3IWF-ID GlobalN3IWF-ID, + choice-Extensions ProtocolIE-SingleContainer { {GlobalRANNodeID-ExtIEs} } +} + +GlobalRANNodeID-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-GlobalTNGF-ID CRITICALITY reject TYPE GlobalTNGF-ID PRESENCE mandatory }| + { ID id-GlobalTWIF-ID CRITICALITY reject TYPE GlobalTWIF-ID PRESENCE mandatory }| + { ID id-GlobalW-AGF-ID CRITICALITY reject TYPE GlobalW-AGF-ID PRESENCE mandatory }, + ... +} + +GlobalTNGF-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + tNGF-ID TNGF-ID, + iE-Extensions ProtocolExtensionContainer { { GlobalTNGF-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalTNGF-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +GlobalTWIF-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + tWIF-ID TWIF-ID, + iE-Extensions ProtocolExtensionContainer { { GlobalTWIF-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalTWIF-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +GlobalW-AGF-ID ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + w-AGF-ID W-AGF-ID, + iE-Extensions ProtocolExtensionContainer { { GlobalW-AGF-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalW-AGF-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GNB-ID ::= CHOICE { + gNB-ID BIT STRING (SIZE(22..32)), + choice-Extensions ProtocolIE-SingleContainer { {GNB-ID-ExtIEs} } +} + +GNB-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +GTP-TEID ::= OCTET STRING (SIZE(4)) + +GTPTunnel ::= SEQUENCE { + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { {GTPTunnel-ExtIEs} } OPTIONAL, + ... +} + +GTPTunnel-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GUAMI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + aMFRegionID AMFRegionID, + aMFSetID AMFSetID, + aMFPointer AMFPointer, + iE-Extensions ProtocolExtensionContainer { {GUAMI-ExtIEs} } OPTIONAL, + ... +} + +GUAMI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GUAMIType ::= ENUMERATED {native, mapped, ...} + +-- H + +HandoverCommandTransfer ::= SEQUENCE { + dLForwardingUP-TNLInformation UPTransportLayerInformation OPTIONAL, + qosFlowToBeForwardedList QosFlowToBeForwardedList OPTIONAL, + dataForwardingResponseDRBList DataForwardingResponseDRBList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverCommandTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverCommandTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalDLForwardingUPTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-ULForwardingUP-TNLInformation CRITICALITY reject EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalULForwardingUPTNLInformation CRITICALITY reject EXTENSION UPTransportLayerInformationList PRESENCE optional }| + { ID id-DataForwardingResponseERABList CRITICALITY ignore EXTENSION DataForwardingResponseERABList PRESENCE optional }| + { ID id-QosFlowFailedToSetupList CRITICALITY ignore EXTENSION QosFlowListWithCause PRESENCE optional }, + ... +} + +HandoverFlag ::= ENUMERATED { + handover-preparation, + ... +} + +HandoverPreparationUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {HandoverPreparationUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverPreparationUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +HandoverRequestAcknowledgeTransfer ::= SEQUENCE { + dL-NGU-UP-TNLInformation UPTransportLayerInformation, + dLForwardingUP-TNLInformation UPTransportLayerInformation OPTIONAL, + securityResult SecurityResult OPTIONAL, + qosFlowSetupResponseList QosFlowListWithDataForwarding, + qosFlowFailedToSetupList QosFlowListWithCause OPTIONAL, + dataForwardingResponseDRBList DataForwardingResponseDRBList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverRequestAcknowledgeTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverRequestAcknowledgeTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalDLUPTNLInformationForHOList CRITICALITY ignore EXTENSION AdditionalDLUPTNLInformationForHOList PRESENCE optional }| + { ID id-ULForwardingUP-TNLInformation CRITICALITY reject EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalULForwardingUPTNLInformation CRITICALITY reject EXTENSION UPTransportLayerInformationList PRESENCE optional }| + { ID id-DataForwardingResponseERABList CRITICALITY ignore EXTENSION DataForwardingResponseERABList PRESENCE optional }| + { ID id-RedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-UsedRSNInformation CRITICALITY ignore EXTENSION RedundantPDUSessionInformation PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore EXTENSION GlobalRANNodeID PRESENCE optional }, + ... +} + +HandoverRequiredTransfer ::= SEQUENCE { + directForwardingPathAvailability DirectForwardingPathAvailability OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverRequiredTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverRequiredTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +HandoverResourceAllocationUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + criticalityDiagnostics CriticalityDiagnostics OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverResourceAllocationUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +HandoverResourceAllocationUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +HandoverType ::= ENUMERATED { + intra5gs, + fivegs-to-eps, + eps-to-5gs, + ..., + fivegs-to-utran +} + +HFCNode-ID ::= OCTET STRING + +HOReport::= SEQUENCE { + handoverReportType ENUMERATED {ho-too-early, ho-to-wrong-cell, intersystem-ping-pong, ...}, + handoverCause Cause, + sourcecellCGI NGRAN-CGI, + targetcellCGI NGRAN-CGI, + reestablishmentcellCGI NGRAN-CGI OPTIONAL, + -- The above IE shall be present if the Handover Report Type IE is set to the value "HO to wrong cell" -- + sourcecellC-RNTI BIT STRING (SIZE(16)) OPTIONAL, + targetcellinE-UTRAN EUTRA-CGI OPTIONAL, + -- The above IE shall be present if the Handover Report Type IE is set to the value "Inter System ping-pong" -- + mobilityInformation MobilityInformation OPTIONAL, + uERLFReportContainer UERLFReportContainer OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { HOReport-ExtIEs} } OPTIONAL, + ... +} + +HOReport-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +Hysteresis ::= INTEGER (0..30) + +-- I + +IAB-Authorized ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +IAB-Supported ::= ENUMERATED { + true, + ... +} + +IABNodeIndication ::= ENUMERATED { + true, + ... +} + +IMSVoiceSupportIndicator ::= ENUMERATED { + supported, + not-supported, + ... +} + +IndexToRFSP ::= INTEGER (1..256, ...) + +InfoOnRecommendedCellsAndRANNodesForPaging ::= SEQUENCE { + recommendedCellsForPaging RecommendedCellsForPaging, + recommendRANNodesForPaging RecommendedRANNodesForPaging, + iE-Extensions ProtocolExtensionContainer { {InfoOnRecommendedCellsAndRANNodesForPaging-ExtIEs} } OPTIONAL, + ... +} + +InfoOnRecommendedCellsAndRANNodesForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +IntegrityProtectionIndication ::= ENUMERATED { + required, + preferred, + not-needed, + ... +} + +IntegrityProtectionResult ::= ENUMERATED { + performed, + not-performed, + ... +} + +IntendedNumberOfPagingAttempts ::= INTEGER (1..16, ...) + +InterfacesToTrace ::= BIT STRING (SIZE(8)) + +ImmediateMDTNr ::= SEQUENCE { + measurementsToActivate MeasurementsToActivate, + m1Configuration M1Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the first bit set to 1 + m4Configuration M4Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the third bit set to 1 + m5Configuration M5Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the fourth bit set to 1 + m6Configuration M6Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the fifth bit set to 1 + m7Configuration M7Configuration OPTIONAL, +-- The above IE shall be present if the Measurements to Activate IE has the sixth bit set to 1 + bluetoothMeasurementConfiguration BluetoothMeasurementConfiguration OPTIONAL, + wLANMeasurementConfiguration WLANMeasurementConfiguration OPTIONAL, + mDT-Location-Info MDT-Location-Info OPTIONAL, + sensorMeasurementConfiguration SensorMeasurementConfiguration OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ImmediateMDTNr-ExtIEs} } OPTIONAL, + ... +} + +ImmediateMDTNr-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +InterSystemFailureIndication ::= SEQUENCE { + uERLFReportContainer UERLFReportContainer OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { InterSystemFailureIndication-ExtIEs} } OPTIONAL, + ... +} + +InterSystemFailureIndication-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONConfigurationTransfer ::= SEQUENCE { + transferType IntersystemSONTransferType, + intersystemSONInformation IntersystemSONInformation, + iE-Extensions ProtocolExtensionContainer { { IntersystemSONConfigurationTransfer-ExtIEs} } OPTIONAL, + ... +} + +IntersystemSONConfigurationTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONTransferType ::= CHOICE { + fromEUTRANtoNGRAN FromEUTRANtoNGRAN, + fromNGRANtoEUTRAN FromNGRANtoEUTRAN, + choice-Extensions ProtocolIE-SingleContainer { { IntersystemSONTransferType-ExtIEs} } +} +IntersystemSONTransferType-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +IntersystemSONeNBID ::= SEQUENCE { + globaleNBID GlobalENB-ID, + selectedEPSTAI EPS-TAI, + iE-Extensions ProtocolExtensionContainer { { IntersystemSONeNBID-ExtIEs} } OPTIONAL, + ... +} + +IntersystemSONeNBID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONNGRANnodeID ::= SEQUENCE { + globalRANNodeID GlobalRANNodeID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { { IntersystemSONNGRANnodeID-ExtIEs} } OPTIONAL, + ... +} + +IntersystemSONNGRANnodeID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONInformation ::= CHOICE { + intersystemSONInformationReport IntersystemSONInformationReport, + choice-Extensions ProtocolIE-SingleContainer { { IntersystemSONInformation-ExtIEs} } +} + +IntersystemSONInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +IntersystemSONInformationReport::= CHOICE { + hOReportInformation InterSystemHOReport, + failureIndicationInformation InterSystemFailureIndication, + choice-Extensions ProtocolIE-SingleContainer { { IntersystemSONInformationReport-ExtIEs} } +} + +IntersystemSONInformationReport-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +InterSystemHOReport ::= SEQUENCE { + handoverReportType InterSystemHandoverReportType, + iE-Extensions ProtocolExtensionContainer { { InterSystemHOReport-ExtIEs} } OPTIONAL, + ... +} + +InterSystemHOReport-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +InterSystemHandoverReportType ::= CHOICE { + tooearlyIntersystemHO TooearlyIntersystemHO, + intersystemUnnecessaryHO IntersystemUnnecessaryHO, + choice-Extensions ProtocolIE-SingleContainer { { InterSystemHandoverReportType-ExtIEs} } +} + +InterSystemHandoverReportType-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +IntersystemUnnecessaryHO ::= SEQUENCE { + sourcecellID NGRAN-CGI, + targetcellID EUTRA-CGI, + earlyIRATHO ENUMERATED {true, false, ...}, + candidateCellList CandidateCellList, + iE-Extensions ProtocolExtensionContainer { { IntersystemUnnecessaryHO-ExtIEs} } OPTIONAL, + ... +} + +IntersystemUnnecessaryHO-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- J +-- K +-- L + +LAC ::= OCTET STRING (SIZE (2)) + +LAI ::= SEQUENCE { + pLMNidentity PLMNIdentity, + lAC LAC, + iE-Extensions ProtocolExtensionContainer { {LAI-ExtIEs} } OPTIONAL, + ... +} + +LAI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LastVisitedCellInformation ::= CHOICE { + nGRANCell LastVisitedNGRANCellInformation, + eUTRANCell LastVisitedEUTRANCellInformation, + uTRANCell LastVisitedUTRANCellInformation, + gERANCell LastVisitedGERANCellInformation, + choice-Extensions ProtocolIE-SingleContainer { {LastVisitedCellInformation-ExtIEs} } +} + +LastVisitedCellInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +LastVisitedCellItem ::= SEQUENCE { + lastVisitedCellInformation LastVisitedCellInformation, + iE-Extensions ProtocolExtensionContainer { {LastVisitedCellItem-ExtIEs} } OPTIONAL, + ... +} + +LastVisitedCellItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LastVisitedEUTRANCellInformation ::= OCTET STRING + +LastVisitedGERANCellInformation ::= OCTET STRING + +LastVisitedNGRANCellInformation::= SEQUENCE { + globalCellID NGRAN-CGI, + cellType CellType, + timeUEStayedInCell TimeUEStayedInCell, + timeUEStayedInCellEnhancedGranularity TimeUEStayedInCellEnhancedGranularity OPTIONAL, + hOCauseValue Cause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {LastVisitedNGRANCellInformation-ExtIEs} } OPTIONAL, + ... +} + +LastVisitedNGRANCellInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LastVisitedUTRANCellInformation ::= OCTET STRING + +LineType ::= ENUMERATED { + dsl, + pon, + ... +} + + +LocationReportingAdditionalInfo ::= ENUMERATED { + includePSCell, + ... +} + +LocationReportingReferenceID ::= INTEGER (1..64, ...) + +LocationReportingRequestType ::= SEQUENCE { + eventType EventType, + reportArea ReportArea, + areaOfInterestList AreaOfInterestList OPTIONAL, + locationReportingReferenceIDToBeCancelled LocationReportingReferenceID OPTIONAL, +-- The above IE shall be present if the event type is set to stop reporting UE presence in the area of interest + iE-Extensions ProtocolExtensionContainer { {LocationReportingRequestType-ExtIEs} } OPTIONAL, + ... +} + +LocationReportingRequestType-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-LocationReportingAdditionalInfo CRITICALITY ignore EXTENSION LocationReportingAdditionalInfo PRESENCE optional }, + ... +} + +LoggedMDTNr ::= SEQUENCE { + loggingInterval LoggingInterval, + loggingDuration LoggingDuration, + loggedMDTTrigger LoggedMDTTrigger, + bluetoothMeasurementConfiguration BluetoothMeasurementConfiguration OPTIONAL, + wLANMeasurementConfiguration WLANMeasurementConfiguration OPTIONAL, + sensorMeasurementConfiguration SensorMeasurementConfiguration OPTIONAL, + areaScopeOfNeighCellsList AreaScopeOfNeighCellsList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {LoggedMDTNr-ExtIEs} } OPTIONAL, + ... +} + +LoggedMDTNr-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LoggingInterval ::= ENUMERATED { + ms320, ms640, ms1280, ms2560, ms5120, ms10240, ms20480, ms30720, ms40960, ms61440, + infinity, + ... +} + +LoggingDuration ::= ENUMERATED {m10, m20, m40, m60, m90, m120, ...} + +Links-to-log ::= ENUMERATED { + uplink, + downlink, + both-uplink-and-downlink, + ... +} + +LoggedMDTTrigger ::= CHOICE{ + periodical NULL, + eventTrigger EventTrigger, + choice-Extensions ProtocolIE-SingleContainer { {LoggedMDTTrigger-ExtIEs} } +} + +LoggedMDTTrigger-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +LTEM-Indication ::= ENUMERATED {lte-m,...} + +LTEUERLFReportContainer ::= OCTET STRING + +LTEV2XServicesAuthorized ::= SEQUENCE { + vehicleUE VehicleUE OPTIONAL, + pedestrianUE PedestrianUE OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {LTEV2XServicesAuthorized-ExtIEs} } OPTIONAL, + ... +} + +LTEV2XServicesAuthorized-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +LTEUESidelinkAggregateMaximumBitrate ::= SEQUENCE { + uESidelinkAggregateMaximumBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { {LTEUE-Sidelink-Aggregate-MaximumBitrates-ExtIEs} } OPTIONAL, + ... +} + +LTEUE-Sidelink-Aggregate-MaximumBitrates-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- M + +MaskedIMEISV ::= BIT STRING (SIZE(64)) + +MaximumDataBurstVolume ::= INTEGER (0..4095, ..., 4096.. 2000000) + +MessageIdentifier ::= BIT STRING (SIZE(16)) + +MaximumIntegrityProtectedDataRate ::= ENUMERATED { + bitrate64kbs, + maximum-UE-rate, + ... +} + +MicoAllPLMN ::= ENUMERATED { + true, + ... +} + + +MICOModeIndication ::= ENUMERATED { + true, + ... +} + +MobilityInformation ::= BIT STRING (SIZE(16)) + +MobilityRestrictionList ::= SEQUENCE { + servingPLMN PLMNIdentity, + equivalentPLMNs EquivalentPLMNs OPTIONAL, + rATRestrictions RATRestrictions OPTIONAL, + forbiddenAreaInformation ForbiddenAreaInformation OPTIONAL, + serviceAreaInformation ServiceAreaInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {MobilityRestrictionList-ExtIEs} } OPTIONAL, + ... +} + +MobilityRestrictionList-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-LastEUTRAN-PLMNIdentity CRITICALITY ignore EXTENSION PLMNIdentity PRESENCE optional }| + { ID id-CNTypeRestrictionsForServing CRITICALITY ignore EXTENSION CNTypeRestrictionsForServing PRESENCE optional }| + { ID id-CNTypeRestrictionsForEquivalent CRITICALITY ignore EXTENSION CNTypeRestrictionsForEquivalent PRESENCE optional }| + { ID id-NPN-MobilityInformation CRITICALITY reject EXTENSION NPN-MobilityInformation PRESENCE optional }, + ... +} + +MDTPLMNList ::= SEQUENCE (SIZE(1..maxnoofMDTPLMNs)) OF PLMNIdentity + +MDT-Configuration ::= SEQUENCE { + mdt-Config-NR MDT-Configuration-NR OPTIONAL, + mdt-Config-EUTRA MDT-Configuration-EUTRA OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { MDT-Configuration-ExtIEs} } OPTIONAL, + ... +} + +MDT-Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-Configuration-NR ::= SEQUENCE { + mdt-Activation MDT-Activation, + areaScopeOfMDT AreaScopeOfMDT-NR, + mDTModeNr MDTModeNr, + signallingBasedMDTPLMNList MDTPLMNList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { MDT-Configuration-NR-ExtIEs} } OPTIONAL, + ... +} + +MDT-Configuration-NR-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-Configuration-EUTRA ::= SEQUENCE { + mdt-Activation MDT-Activation, + areaScopeOfMDT AreaScopeOfMDT-EUTRA, + mDTMode MDTModeEutra, + signallingBasedMDTPLMNList MDTPLMNList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { MDT-Configuration-EUTRA-ExtIEs} } OPTIONAL, + ... +} + +MDT-Configuration-EUTRA-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-Activation ::= ENUMERATED { + immediate-MDT-only, + logged-MDT-only, + immediate-MDT-and-Trace, + ... +} + +MDTModeNr ::= CHOICE { + immediateMDTNr ImmediateMDTNr, + loggedMDTNr LoggedMDTNr, + choice-Extensions ProtocolIE-SingleContainer { {MDTModeNr-ExtIEs} } +} + +MDTModeNr-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +MDTModeEutra ::= OCTET STRING + +MeasurementsToActivate ::= BIT STRING(SIZE(8)) + +M1Configuration ::= SEQUENCE { + m1reportingTrigger M1ReportingTrigger, + m1thresholdEventA2 M1ThresholdEventA2 OPTIONAL, +-- The above IE shall be present if the M1 Reporting Trigger IE is set to A2event-triggered or A2event-triggered periodic + m1periodicReporting M1PeriodicReporting OPTIONAL, +-- The above IE shall be present if the M1 Reporting Trigger IE is set to periodic or A2event-triggered periodic + iE-Extensions ProtocolExtensionContainer { { M1Configuration-ExtIEs} } OPTIONAL, + ... +} + +M1Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M1ReportingTrigger ::= ENUMERATED{ + periodic, + a2eventtriggered, + a2eventtriggered-periodic, + ... +} + +M1ThresholdEventA2 ::= SEQUENCE { + m1ThresholdType M1ThresholdType, + iE-Extensions ProtocolExtensionContainer { { M1ThresholdEventA2-ExtIEs} } OPTIONAL, + ... +} + +M1ThresholdEventA2-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M1ThresholdType ::= CHOICE { + threshold-RSRP Threshold-RSRP, + threshold-RSRQ Threshold-RSRQ, + threshold-SINR Threshold-SINR, + choice-Extensions ProtocolIE-SingleContainer { {M1ThresholdType-ExtIEs} } +} + +M1ThresholdType-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +M1PeriodicReporting ::= SEQUENCE { + reportInterval ReportIntervalMDT, + reportAmount ReportAmountMDT, + iE-Extensions ProtocolExtensionContainer { { M1PeriodicReporting-ExtIEs} } OPTIONAL, + ... +} + +M1PeriodicReporting-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M4Configuration ::= SEQUENCE { + m4period M4period, + m4-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M4Configuration-ExtIEs} } OPTIONAL, + ... +} + +M4Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M4period ::= ENUMERATED {ms1024, ms2048, ms5120, ms10240, min1, ... } + +M5Configuration ::= SEQUENCE { + m5period M5period, + m5-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M5Configuration-ExtIEs} } OPTIONAL, + ... +} + +M5Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M5period ::= ENUMERATED {ms1024, ms2048, ms5120, ms10240, min1, ... } + +M6Configuration ::= SEQUENCE { + m6report-Interval M6report-Interval, + m6-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M6Configuration-ExtIEs} } OPTIONAL, + ... +} + +M6Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M6report-Interval ::= ENUMERATED { + ms120, ms240, ms480, ms640, ms1024, ms2048, ms5120, ms10240, ms20480, ms40960, min1, min6, min12, min30, + ... +} + + +M7Configuration ::= SEQUENCE { + m7period M7period, + m7-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M7Configuration-ExtIEs} } OPTIONAL, + ... +} + +M7Configuration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +M7period ::= INTEGER(1..60, ...) + +MDT-Location-Info ::= SEQUENCE { + mDT-Location-Information MDT-Location-Information, + iE-Extensions ProtocolExtensionContainer { { MDT-Location-Info-ExtIEs} } OPTIONAL, + ... +} + +MDT-Location-Info-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-Location-Information::= BIT STRING (SIZE (8)) + +-- N + +N3IWF-ID ::= CHOICE { + n3IWF-ID BIT STRING (SIZE(16)), + choice-Extensions ProtocolIE-SingleContainer { {N3IWF-ID-ExtIEs} } +} + +N3IWF-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NAS-PDU ::= OCTET STRING + +NASSecurityParametersFromNGRAN ::= OCTET STRING + +NB-IoT-DefaultPagingDRX ::= ENUMERATED { + rf128, rf256, rf512, rf1024, + ... +} + +NB-IoT-PagingDRX ::= ENUMERATED { + rf32, rf64, rf128, rf256, rf512, rf1024, + ... +} + +NB-IoT-Paging-eDRXCycle ::= ENUMERATED { + hf2, hf4, hf6, hf8, hf10, hf12, hf14, hf16, hf32, hf64, hf128, hf256, hf512, hf1024, + ... +} + +NB-IoT-Paging-TimeWindow ::= ENUMERATED { + s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15, s16, + ... +} + +NB-IoT-Paging-eDRXInfo ::= SEQUENCE { + nB-IoT-Paging-eDRXCycle NB-IoT-Paging-eDRXCycle, + nB-IoT-Paging-TimeWindow NB-IoT-Paging-TimeWindow OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { NB-IoT-Paging-eDRXInfo-ExtIEs} } OPTIONAL, + ... +} + +NB-IoT-Paging-eDRXInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NB-IoT-UEPriority ::= INTEGER (0..255, ...) + +NetworkInstance ::= INTEGER (1..256, ...) + +NewSecurityContextInd ::= ENUMERATED { + true, + ... +} + +NextHopChainingCount ::= INTEGER (0..7) + +NextPagingAreaScope ::= ENUMERATED { + same, + changed, + ... +} + +NgENB-ID ::= CHOICE { + macroNgENB-ID BIT STRING (SIZE(20)), + shortMacroNgENB-ID BIT STRING (SIZE(18)), + longMacroNgENB-ID BIT STRING (SIZE(21)), + choice-Extensions ProtocolIE-SingleContainer { {NgENB-ID-ExtIEs} } +} + +NgENB-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NotifySourceNGRANNode ::= ENUMERATED { + notifySource, + ... +} + +NGRAN-CGI ::= CHOICE { + nR-CGI NR-CGI, + eUTRA-CGI EUTRA-CGI, + choice-Extensions ProtocolIE-SingleContainer { {NGRAN-CGI-ExtIEs} } +} + +NGRAN-CGI-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NGRAN-TNLAssociationToRemoveList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF NGRAN-TNLAssociationToRemoveItem + +NGRAN-TNLAssociationToRemoveItem::= SEQUENCE { + tNLAssociationTransportLayerAddress CPTransportLayerInformation, + tNLAssociationTransportLayerAddressAMF CPTransportLayerInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { NGRAN-TNLAssociationToRemoveItem-ExtIEs} } OPTIONAL +} + +NGRAN-TNLAssociationToRemoveItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NGRANTraceID ::= OCTET STRING (SIZE(8)) + +NID ::= BIT STRING (SIZE(44)) + +NonDynamic5QIDescriptor ::= SEQUENCE { + fiveQI FiveQI, + priorityLevelQos PriorityLevelQos OPTIONAL, + averagingWindow AveragingWindow OPTIONAL, + maximumDataBurstVolume MaximumDataBurstVolume OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {NonDynamic5QIDescriptor-ExtIEs} } OPTIONAL, + ... +} + +NonDynamic5QIDescriptor-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CNPacketDelayBudgetDL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-CNPacketDelayBudgetUL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }, + ... +} + +NotAllowedTACs ::= SEQUENCE (SIZE(1..maxnoofAllowedAreas)) OF TAC + +NotificationCause ::= ENUMERATED { + fulfilled, + not-fulfilled, + ... +} + +NotificationControl ::= ENUMERATED { + notification-requested, + ... +} + +NPN-AccessInformation ::= CHOICE { + pNI-NPN-Access-Information CellCAGList, + choice-Extensions ProtocolIE-SingleContainer { {NPN-AccessInformation-ExtIEs} } +} + +NPN-AccessInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NPN-MobilityInformation ::= CHOICE { + sNPN-MobilityInformation SNPN-MobilityInformation, + pNI-NPN-MobilityInformation PNI-NPN-MobilityInformation, + choice-Extensions ProtocolIE-SingleContainer { {NPN-MobilityInformation-ExtIEs} } +} + +NPN-MobilityInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + + +NPN-PagingAssistanceInformation ::= CHOICE { + pNI-NPN-PagingAssistance Allowed-PNI-NPN-List, + choice-Extensions ProtocolIE-SingleContainer { {NPN-PagingAssistanceInformation-ExtIEs} } +} + +NPN-PagingAssistanceInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NPN-Support ::= CHOICE { + sNPN NID, + choice-Extensions ProtocolIE-SingleContainer { {NPN-Support-ExtIEs} } +} + +NPN-Support-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +NRCellIdentity ::= BIT STRING (SIZE(36)) + +NR-CGI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + nRCellIdentity NRCellIdentity, + iE-Extensions ProtocolExtensionContainer { {NR-CGI-ExtIEs} } OPTIONAL, + ... +} + +NR-CGI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NR-CGIList ::= SEQUENCE (SIZE(1..maxnoofCellsingNB)) OF NR-CGI + +NR-CGIListForWarning ::= SEQUENCE (SIZE(1..maxnoofCellIDforWarning)) OF NR-CGI + +NRencryptionAlgorithms ::= BIT STRING (SIZE(16, ...)) + +NRintegrityProtectionAlgorithms ::= BIT STRING (SIZE(16, ...)) + +NRMobilityHistoryReport ::= OCTET STRING + +NRPPa-PDU ::= OCTET STRING + +NRUERLFReportContainer ::= OCTET STRING + +NumberOfBroadcasts ::= INTEGER (0..65535) + +NumberOfBroadcastsRequested ::= INTEGER (0..65535) + +NRARFCN ::= INTEGER (0.. maxNRARFCN) + +NRFrequencyBand ::= INTEGER (1..1024, ...) + +NRFrequencyBand-List ::= SEQUENCE (SIZE(1..maxnoofNRCellBands)) OF NRFrequencyBandItem + +NRFrequencyBandItem ::= SEQUENCE { + nr-frequency-band NRFrequencyBand, + iE-Extension ProtocolExtensionContainer { {NRFrequencyBandItem-ExtIEs} } OPTIONAL, + ... +} + +NRFrequencyBandItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NRFrequencyInfo ::= SEQUENCE { + nrARFCN NRARFCN, + frequencyBand-List NRFrequencyBand-List, + iE-Extension ProtocolExtensionContainer { {NRFrequencyInfo-ExtIEs} } OPTIONAL, + ... +} + +NRFrequencyInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +NR-PCI ::= INTEGER (0..1007, ...) + +NRV2XServicesAuthorized ::= SEQUENCE { + vehicleUE VehicleUE OPTIONAL, + pedestrianUE PedestrianUE OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {NRV2XServicesAuthorized-ExtIEs} } OPTIONAL, + ... +} + +NRV2XServicesAuthorized-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +VehicleUE ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +PedestrianUE ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +NRUESidelinkAggregateMaximumBitrate ::= SEQUENCE { + uESidelinkAggregateMaximumBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { {NRUESidelinkAggregateMaximumBitrate-ExtIEs} } OPTIONAL, + ... +} + +NRUESidelinkAggregateMaximumBitrate-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- O + +OverloadAction ::= ENUMERATED { + reject-non-emergency-mo-dt, + reject-rrc-cr-signalling, + permit-emergency-sessions-and-mobile-terminated-services-only, + permit-high-priority-sessions-and-mobile-terminated-services-only, + ... +} + +OverloadResponse ::= CHOICE { + overloadAction OverloadAction, + choice-Extensions ProtocolIE-SingleContainer { {OverloadResponse-ExtIEs} } +} + +OverloadResponse-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +OverloadStartNSSAIList ::= SEQUENCE (SIZE (1..maxnoofSliceItems)) OF OverloadStartNSSAIItem + +OverloadStartNSSAIItem ::= SEQUENCE { + sliceOverloadList SliceOverloadList, + sliceOverloadResponse OverloadResponse OPTIONAL, + sliceTrafficLoadReductionIndication TrafficLoadReductionIndication OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {OverloadStartNSSAIItem-ExtIEs} } OPTIONAL, + ... +} + +OverloadStartNSSAIItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- P + +PacketDelayBudget ::= INTEGER (0..1023, ...) + +PacketErrorRate ::= SEQUENCE { + pERScalar INTEGER (0..9, ...), + pERExponent INTEGER (0..9, ...), + iE-Extensions ProtocolExtensionContainer { {PacketErrorRate-ExtIEs} } OPTIONAL, + ... +} + +PacketErrorRate-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PacketLossRate ::= INTEGER (0..1000, ...) + +PagingAssisDataforCEcapabUE ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + coverageEnhancementLevel CoverageEnhancementLevel, + iE-Extensions ProtocolExtensionContainer { { PagingAssisDataforCEcapabUE-ExtIEs} } OPTIONAL, + ... +} + +PagingAssisDataforCEcapabUE-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PagingAttemptInformation ::= SEQUENCE { + pagingAttemptCount PagingAttemptCount, + intendedNumberOfPagingAttempts IntendedNumberOfPagingAttempts, + nextPagingAreaScope NextPagingAreaScope OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PagingAttemptInformation-ExtIEs} } OPTIONAL, + ... +} + +PagingAttemptInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PagingAttemptCount ::= INTEGER (1..16, ...) + +PagingDRX ::= ENUMERATED { + v32, + v64, + v128, + v256, + ... +} + +PagingOrigin ::= ENUMERATED { + non-3gpp, + ... +} + +PagingPriority ::= ENUMERATED { + priolevel1, + priolevel2, + priolevel3, + priolevel4, + priolevel5, + priolevel6, + priolevel7, + priolevel8, + ... +} + +PagingeDRXInformation ::= SEQUENCE { + paging-eDRX-Cycle Paging-eDRX-Cycle, + paging-Time-Window Paging-Time-Window OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PagingeDRXInformation-ExtIEs} } OPTIONAL, + ... +} + +PagingeDRXInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Paging-eDRX-Cycle ::= ENUMERATED { + hfhalf, hf1, hf2, hf4, hf6, + hf8, hf10, hf12, hf14, hf16, + hf32, hf64, hf128, hf256, + ... +} + + +Paging-Time-Window ::= ENUMERATED { + s1, s2, s3, s4, s5, + s6, s7, s8, s9, s10, + s11, s12, s13, s14, s15, s16, + ... +} + +PagingProbabilityInformation ::= ENUMERATED { + p00, p05, p10, p15, p20, p25, p30, p35, p40, p45, p50, p55, p60, p65, p70, p75, p80, p85, p90, p95, p100, + ... +} + +PathSwitchRequestAcknowledgeTransfer ::= SEQUENCE { + uL-NGU-UP-TNLInformation UPTransportLayerInformation OPTIONAL, + securityIndication SecurityIndication OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PathSwitchRequestAcknowledgeTransfer-ExtIEs} } OPTIONAL, + ... +} + +PathSwitchRequestAcknowledgeTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }| + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalRedundantNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }| + { ID id-QosFlowParametersList CRITICALITY ignore EXTENSION QosFlowParametersList PRESENCE optional }, + ... +} + +PathSwitchRequestSetupFailedTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PathSwitchRequestSetupFailedTransfer-ExtIEs} } OPTIONAL, + ... +} + +PathSwitchRequestSetupFailedTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PathSwitchRequestTransfer ::= SEQUENCE { + dL-NGU-UP-TNLInformation UPTransportLayerInformation, + dL-NGU-TNLInformationReused DL-NGU-TNLInformationReused OPTIONAL, + userPlaneSecurityInformation UserPlaneSecurityInformation OPTIONAL, + qosFlowAcceptedList QosFlowAcceptedList, + iE-Extensions ProtocolExtensionContainer { {PathSwitchRequestTransfer-ExtIEs} } OPTIONAL, + ... +} + +PathSwitchRequestTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-RedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-RedundantDL-NGU-TNLInformationReused CRITICALITY ignore EXTENSION DL-NGU-TNLInformationReused PRESENCE optional }| + { ID id-AdditionalRedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-UsedRSNInformation CRITICALITY ignore EXTENSION RedundantPDUSessionInformation PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore EXTENSION GlobalRANNodeID PRESENCE optional }, + ... +} + +PathSwitchRequestUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PathSwitchRequestUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +PathSwitchRequestUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PC5QoSParameters ::= SEQUENCE { + pc5QoSFlowList PC5QoSFlowList, + pc5LinkAggregateBitRates BitRate OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PC5QoSParameters-ExtIEs} } OPTIONAL, + ... +} + +PC5QoSParameters-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PC5QoSFlowList ::= SEQUENCE (SIZE(1..maxnoofPC5QoSFlows)) OF PC5QoSFlowItem + +PC5QoSFlowItem::= SEQUENCE { + pQI FiveQI, + pc5FlowBitRates PC5FlowBitRates OPTIONAL, + range Range OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PC5QoSFlowItem-ExtIEs} } OPTIONAL, + ... +} + +PC5QoSFlowItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PC5FlowBitRates ::= SEQUENCE { + guaranteedFlowBitRate BitRate, + maximumFlowBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { { PC5FlowBitRates-ExtIEs} } OPTIONAL, + ... +} + +PC5FlowBitRates-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +PCIListForMDT ::= SEQUENCE (SIZE(1.. maxnoofNeighPCIforMDT)) OF NR-PCI + +PrivacyIndicator ::= ENUMERATED { + immediate-MDT, + logged-MDT, + ... +} + +PDUSessionAggregateMaximumBitRate ::= SEQUENCE { + pDUSessionAggregateMaximumBitRateDL BitRate, + pDUSessionAggregateMaximumBitRateUL BitRate, + iE-Extensions ProtocolExtensionContainer { {PDUSessionAggregateMaximumBitRate-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionAggregateMaximumBitRate-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionID ::= INTEGER (0..255) + +PDUSessionResourceAdmittedList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceAdmittedItem + +PDUSessionResourceAdmittedItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverRequestAcknowledgeTransfer OCTET STRING (CONTAINING HandoverRequestAcknowledgeTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceAdmittedItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceAdmittedItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToModifyListModCfm ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToModifyItemModCfm + +PDUSessionResourceFailedToModifyItemModCfm ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyIndicationUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyIndicationUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToModifyItemModCfm-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToModifyItemModCfm-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToModifyListModRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToModifyItemModRes + +PDUSessionResourceFailedToModifyItemModRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToModifyItemModRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToModifyItemModRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToResumeListRESReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToResumeItemRESReq + +PDUSessionResourceFailedToResumeItemRESReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToResumeItemRESReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToResumeItemRESReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +PDUSessionResourceFailedToResumeListRESRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToResumeItemRESRes + +PDUSessionResourceFailedToResumeItemRESRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToResumeItemRESRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToResumeItemRESRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListCxtFail ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemCxtFail + +PDUSessionResourceFailedToSetupItemCxtFail ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemCxtFail-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemCxtFail-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListCxtRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemCxtRes + +PDUSessionResourceFailedToSetupItemCxtRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemCxtRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemCxtRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListHOAck ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemHOAck + +PDUSessionResourceFailedToSetupItemHOAck ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverResourceAllocationUnsuccessfulTransfer OCTET STRING (CONTAINING HandoverResourceAllocationUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemHOAck-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemHOAck-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListPSReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemPSReq + +PDUSessionResourceFailedToSetupItemPSReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestSetupFailedTransfer OCTET STRING (CONTAINING PathSwitchRequestSetupFailedTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemPSReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemPSReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceFailedToSetupListSURes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceFailedToSetupItemSURes + +PDUSessionResourceFailedToSetupItemSURes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupUnsuccessfulTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceFailedToSetupItemSURes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceFailedToSetupItemSURes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceHandoverList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceHandoverItem + +PDUSessionResourceHandoverItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverCommandTransfer OCTET STRING (CONTAINING HandoverCommandTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceHandoverItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceHandoverItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceInformationList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceInformationItem + +PDUSessionResourceInformationItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + qosFlowInformationList QosFlowInformationList, + dRBsToQosFlowsMappingList DRBsToQosFlowsMappingList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceInformationItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceListCxtRelCpl ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceItemCxtRelCpl + +PDUSessionResourceItemCxtRelCpl ::= SEQUENCE { + pDUSessionID PDUSessionID, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceItemCxtRelCpl-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceItemCxtRelCpl-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PDUSessionResourceReleaseResponseTransfer CRITICALITY ignore EXTENSION OCTET STRING (CONTAINING PDUSessionResourceReleaseResponseTransfer) PRESENCE optional }, + ... +} + +PDUSessionResourceListCxtRelReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceItemCxtRelReq + +PDUSessionResourceItemCxtRelReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceItemCxtRelReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceItemCxtRelReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceListHORqd ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceItemHORqd + +PDUSessionResourceItemHORqd ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverRequiredTransfer OCTET STRING (CONTAINING HandoverRequiredTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceItemHORqd-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceItemHORqd-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyConfirmTransfer ::= SEQUENCE { + qosFlowModifyConfirmList QosFlowModifyConfirmList, + uLNGU-UP-TNLInformation UPTransportLayerInformation, + additionalNG-UUPTNLInformation UPTransportLayerInformationPairList OPTIONAL, + qosFlowFailedToModifyList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyConfirmTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyConfirmTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalRedundantNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }, + ... +} + +PDUSessionResourceModifyIndicationUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyIndicationUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyIndicationUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyRequestTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceModifyRequestTransferIEs} }, + ... +} + +PDUSessionResourceModifyRequestTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-PDUSessionAggregateMaximumBitRate CRITICALITY reject TYPE PDUSessionAggregateMaximumBitRate PRESENCE optional }| + { ID id-UL-NGU-UP-TNLModifyList CRITICALITY reject TYPE UL-NGU-UP-TNLModifyList PRESENCE optional }| + { ID id-NetworkInstance CRITICALITY reject TYPE NetworkInstance PRESENCE optional }| + { ID id-QosFlowAddOrModifyRequestList CRITICALITY reject TYPE QosFlowAddOrModifyRequestList PRESENCE optional }| + { ID id-QosFlowToReleaseList CRITICALITY reject TYPE QosFlowListWithCause PRESENCE optional }| + { ID id-AdditionalUL-NGU-UP-TNLInformation CRITICALITY reject TYPE UPTransportLayerInformationList PRESENCE optional }| + { ID id-CommonNetworkInstance CRITICALITY ignore TYPE CommonNetworkInstance PRESENCE optional }| + { ID id-AdditionalRedundantUL-NGU-UP-TNLInformation CRITICALITY ignore TYPE UPTransportLayerInformationList PRESENCE optional }| + { ID id-RedundantCommonNetworkInstance CRITICALITY ignore TYPE CommonNetworkInstance PRESENCE optional }| + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore TYPE UPTransportLayerInformation PRESENCE optional }| + { ID id-SecurityIndication CRITICALITY ignore TYPE SecurityIndication PRESENCE optional }, + ... +} + +PDUSessionResourceModifyResponseTransfer ::= SEQUENCE { + dL-NGU-UP-TNLInformation UPTransportLayerInformation OPTIONAL, + uL-NGU-UP-TNLInformation UPTransportLayerInformation OPTIONAL, + qosFlowAddOrModifyResponseList QosFlowAddOrModifyResponseList OPTIONAL, + additionalDLQosFlowPerTNLInformation QosFlowPerTNLInformationList OPTIONAL, + qosFlowFailedToAddOrModifyList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyResponseTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyResponseTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-AdditionalNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }| + { ID id-RedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalRedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-AdditionalRedundantNGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformationPairList PRESENCE optional }, + ... +} + +PDUSessionResourceModifyIndicationTransfer ::= SEQUENCE { + dLQosFlowPerTNLInformation QosFlowPerTNLInformation, + additionalDLQosFlowPerTNLInformation QosFlowPerTNLInformationList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyIndicationTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyIndicationTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SecondaryRATUsageInformation CRITICALITY ignore EXTENSION SecondaryRATUsageInformation PRESENCE optional }| + { ID id-SecurityResult CRITICALITY ignore EXTENSION SecurityResult PRESENCE optional }| + { ID id-RedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformation PRESENCE optional }| + { ID id-AdditionalRedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore EXTENSION GlobalRANNodeID PRESENCE optional }, + ... +} + +PDUSessionResourceModifyListModCfm ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceModifyItemModCfm + +PDUSessionResourceModifyItemModCfm ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyConfirmTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyConfirmTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyItemModCfm-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyItemModCfm-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyListModInd ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceModifyItemModInd + +PDUSessionResourceModifyItemModInd ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyIndicationTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyIndicationTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyItemModInd-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyItemModInd-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyListModReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceModifyItemModReq + +PDUSessionResourceModifyItemModReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + nAS-PDU NAS-PDU OPTIONAL, + pDUSessionResourceModifyRequestTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyItemModReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyItemModReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-S-NSSAI CRITICALITY reject EXTENSION S-NSSAI PRESENCE optional }| + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceModifyListModRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceModifyItemModRes + +PDUSessionResourceModifyItemModRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceModifyResponseTransfer OCTET STRING (CONTAINING PDUSessionResourceModifyResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyItemModRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyItemModRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceModifyUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + criticalityDiagnostics CriticalityDiagnostics OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceModifyUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceModifyUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceNotifyList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceNotifyItem + +PDUSessionResourceNotifyItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceNotifyTransfer OCTET STRING (CONTAINING PDUSessionResourceNotifyTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceNotifyItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceNotifyItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceNotifyReleasedTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceNotifyReleasedTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceNotifyReleasedTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SecondaryRATUsageInformation CRITICALITY ignore EXTENSION SecondaryRATUsageInformation PRESENCE optional }, + ... +} + +PDUSessionResourceNotifyTransfer ::= SEQUENCE { + qosFlowNotifyList QosFlowNotifyList OPTIONAL, + qosFlowReleasedList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceNotifyTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceNotifyTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SecondaryRATUsageInformation CRITICALITY ignore EXTENSION SecondaryRATUsageInformation PRESENCE optional }| + { ID id-QosFlowFeedbackList CRITICALITY ignore EXTENSION QosFlowFeedbackList PRESENCE optional }, + ... +} + +PDUSessionResourceReleaseCommandTransfer ::= SEQUENCE { + cause Cause, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleaseCommandTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleaseCommandTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleasedListNot ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceReleasedItemNot + +PDUSessionResourceReleasedItemNot ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceNotifyReleasedTransfer OCTET STRING (CONTAINING PDUSessionResourceNotifyReleasedTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleasedItemNot-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleasedItemNot-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleasedListPSAck ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceReleasedItemPSAck + +PDUSessionResourceReleasedItemPSAck ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestUnsuccessfulTransfer OCTET STRING (CONTAINING PathSwitchRequestUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleasedItemPSAck-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleasedItemPSAck-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleasedListPSFail ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceReleasedItemPSFail + +PDUSessionResourceReleasedItemPSFail ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestUnsuccessfulTransfer OCTET STRING (CONTAINING PathSwitchRequestUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleasedItemPSFail-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleasedItemPSFail-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleasedListRelRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceReleasedItemRelRes + +PDUSessionResourceReleasedItemRelRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceReleaseResponseTransfer OCTET STRING (CONTAINING PDUSessionResourceReleaseResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleasedItemRelRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleasedItemRelRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceReleaseResponseTransfer ::= SEQUENCE { + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceReleaseResponseTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceReleaseResponseTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SecondaryRATUsageInformation CRITICALITY ignore EXTENSION SecondaryRATUsageInformation PRESENCE optional }, + ... +} + +PDUSessionResourceResumeListRESReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceResumeItemRESReq + +PDUSessionResourceResumeItemRESReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + uEContextResumeRequestTransfer OCTET STRING (CONTAINING UEContextResumeRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceResumeItemRESReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceResumeItemRESReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceResumeListRESRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceResumeItemRESRes + +PDUSessionResourceResumeItemRESRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + uEContextResumeResponseTransfer OCTET STRING (CONTAINING UEContextResumeResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceResumeItemRESRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceResumeItemRESRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSecondaryRATUsageList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSecondaryRATUsageItem + +PDUSessionResourceSecondaryRATUsageItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + secondaryRATDataUsageReportTransfer OCTET STRING (CONTAINING SecondaryRATDataUsageReportTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSecondaryRATUsageItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSecondaryRATUsageItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSetupListCxtReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemCxtReq + +PDUSessionResourceSetupItemCxtReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + nAS-PDU NAS-PDU OPTIONAL, + s-NSSAI S-NSSAI, + pDUSessionResourceSetupRequestTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemCxtReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemCxtReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceSetupListCxtRes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemCxtRes + +PDUSessionResourceSetupItemCxtRes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupResponseTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemCxtRes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemCxtRes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSetupListHOReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemHOReq + +PDUSessionResourceSetupItemHOReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + s-NSSAI S-NSSAI, + handoverRequestTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemHOReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemHOReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceSetupListSUReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemSUReq + +PDUSessionResourceSetupItemSUReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionNAS-PDU NAS-PDU OPTIONAL, + s-NSSAI S-NSSAI, + pDUSessionResourceSetupRequestTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemSUReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemSUReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceSetupListSURes ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSetupItemSURes + +PDUSessionResourceSetupItemSURes ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceSetupResponseTransfer OCTET STRING (CONTAINING PDUSessionResourceSetupResponseTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupItemSURes-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupItemSURes-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSetupRequestTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {PDUSessionResourceSetupRequestTransferIEs} }, + ... +} + +PDUSessionResourceSetupRequestTransferIEs NGAP-PROTOCOL-IES ::= { + { ID id-PDUSessionAggregateMaximumBitRate CRITICALITY reject TYPE PDUSessionAggregateMaximumBitRate PRESENCE optional }| + { ID id-UL-NGU-UP-TNLInformation CRITICALITY reject TYPE UPTransportLayerInformation PRESENCE mandatory }| + { ID id-AdditionalUL-NGU-UP-TNLInformation CRITICALITY reject TYPE UPTransportLayerInformationList PRESENCE optional }| + { ID id-DataForwardingNotPossible CRITICALITY reject TYPE DataForwardingNotPossible PRESENCE optional }| + { ID id-PDUSessionType CRITICALITY reject TYPE PDUSessionType PRESENCE mandatory }| + { ID id-SecurityIndication CRITICALITY reject TYPE SecurityIndication PRESENCE optional }| + { ID id-NetworkInstance CRITICALITY reject TYPE NetworkInstance PRESENCE optional }| + { ID id-QosFlowSetupRequestList CRITICALITY reject TYPE QosFlowSetupRequestList PRESENCE mandatory }| + { ID id-CommonNetworkInstance CRITICALITY ignore TYPE CommonNetworkInstance PRESENCE optional }| + { ID id-DirectForwardingPathAvailability CRITICALITY ignore TYPE DirectForwardingPathAvailability PRESENCE optional }| + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore TYPE UPTransportLayerInformation PRESENCE optional }| + { ID id-AdditionalRedundantUL-NGU-UP-TNLInformation CRITICALITY ignore TYPE UPTransportLayerInformationList PRESENCE optional }| + { ID id-RedundantCommonNetworkInstance CRITICALITY ignore TYPE CommonNetworkInstance PRESENCE optional }| + { ID id-RedundantPDUSessionInformation CRITICALITY ignore TYPE RedundantPDUSessionInformation PRESENCE optional }, + ... +} + +PDUSessionResourceSetupResponseTransfer ::= SEQUENCE { + dLQosFlowPerTNLInformation QosFlowPerTNLInformation, + additionalDLQosFlowPerTNLInformation QosFlowPerTNLInformationList OPTIONAL, + securityResult SecurityResult OPTIONAL, + qosFlowFailedToSetupList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupResponseTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupResponseTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-RedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformation PRESENCE optional }| + { ID id-AdditionalRedundantDLQosFlowPerTNLInformation CRITICALITY ignore EXTENSION QosFlowPerTNLInformationList PRESENCE optional }| + { ID id-UsedRSNInformation CRITICALITY ignore EXTENSION RedundantPDUSessionInformation PRESENCE optional }| + { ID id-GlobalRANNodeID CRITICALITY ignore EXTENSION GlobalRANNodeID PRESENCE optional }, + ... +} + +PDUSessionResourceSetupUnsuccessfulTransfer ::= SEQUENCE { + cause Cause, + criticalityDiagnostics CriticalityDiagnostics OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSetupUnsuccessfulTransfer-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSetupUnsuccessfulTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSuspendListSUSReq ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSuspendItemSUSReq + +PDUSessionResourceSuspendItemSUSReq ::= SEQUENCE { + pDUSessionID PDUSessionID, + uEContextSuspendRequestTransfer OCTET STRING (CONTAINING UEContextSuspendRequestTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceSuspendItemSUSReq-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSuspendItemSUSReq-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceSwitchedList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceSwitchedItem + +PDUSessionResourceSwitchedItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestAcknowledgeTransfer OCTET STRING (CONTAINING PathSwitchRequestAcknowledgeTransfer), + iE-Extensions ProtocolExtensionContainer { { PDUSessionResourceSwitchedItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceSwitchedItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PduSessionExpectedUEActivityBehaviour CRITICALITY ignore EXTENSION ExpectedUEActivityBehaviour PRESENCE optional }, + ... +} + +PDUSessionResourceToBeSwitchedDLList ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceToBeSwitchedDLItem + +PDUSessionResourceToBeSwitchedDLItem ::= SEQUENCE { + pDUSessionID PDUSessionID, + pathSwitchRequestTransfer OCTET STRING (CONTAINING PathSwitchRequestTransfer), + iE-Extensions ProtocolExtensionContainer { { PDUSessionResourceToBeSwitchedDLItem-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceToBeSwitchedDLItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceToReleaseListHOCmd ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceToReleaseItemHOCmd + +PDUSessionResourceToReleaseItemHOCmd ::= SEQUENCE { + pDUSessionID PDUSessionID, + handoverPreparationUnsuccessfulTransfer OCTET STRING (CONTAINING HandoverPreparationUnsuccessfulTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceToReleaseItemHOCmd-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceToReleaseItemHOCmd-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PDUSessionResourceToReleaseListRelCmd ::= SEQUENCE (SIZE(1..maxnoofPDUSessions)) OF PDUSessionResourceToReleaseItemRelCmd + +PDUSessionResourceToReleaseItemRelCmd ::= SEQUENCE { + pDUSessionID PDUSessionID, + pDUSessionResourceReleaseCommandTransfer OCTET STRING (CONTAINING PDUSessionResourceReleaseCommandTransfer), + iE-Extensions ProtocolExtensionContainer { {PDUSessionResourceToReleaseItemRelCmd-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionResourceToReleaseItemRelCmd-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} +PDUSessionType ::= ENUMERATED { + ipv4, + ipv6, + ipv4v6, + ethernet, + unstructured, + ... +} + +PDUSessionUsageReport ::= SEQUENCE { + rATType ENUMERATED {nr, eutra, ..., nr-unlicensed, e-utra-unlicensed}, + pDUSessionTimedReportList VolumeTimedReportList, + iE-Extensions ProtocolExtensionContainer { {PDUSessionUsageReport-ExtIEs} } OPTIONAL, + ... +} + +PDUSessionUsageReport-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +Periodicity ::= INTEGER (0..640000, ...) + +PeriodicRegistrationUpdateTimer ::= BIT STRING (SIZE(8)) + +PLMNIdentity ::= OCTET STRING (SIZE(3)) + +PLMNSupportList ::= SEQUENCE (SIZE(1..maxnoofPLMNs)) OF PLMNSupportItem + +PLMNSupportItem ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + sliceSupportList SliceSupportList, + iE-Extensions ProtocolExtensionContainer { {PLMNSupportItem-ExtIEs} } OPTIONAL, + ... +} + +PLMNSupportItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-NPN-Support CRITICALITY reject EXTENSION NPN-Support PRESENCE optional }| + { ID id-ExtendedSliceSupportList CRITICALITY reject EXTENSION ExtendedSliceSupportList PRESENCE optional }, + ... +} + +PNI-NPN-MobilityInformation ::= SEQUENCE { + allowed-PNI-NPI-List Allowed-PNI-NPN-List, + iE-Extensions ProtocolExtensionContainer { {PNI-NPN-MobilityInformation-ExtIEs} } OPTIONAL, + ... +} + +PNI-NPN-MobilityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +PortNumber ::= OCTET STRING (SIZE(2)) + +Pre-emptionCapability ::= ENUMERATED { + shall-not-trigger-pre-emption, + may-trigger-pre-emption, + ... +} + +Pre-emptionVulnerability ::= ENUMERATED { + not-pre-emptable, + pre-emptable, + ... +} + +PriorityLevelARP ::= INTEGER (1..15) + +PriorityLevelQos ::= INTEGER (1..127, ...) + +PWSFailedCellIDList ::= CHOICE { + eUTRA-CGI-PWSFailedList EUTRA-CGIList, + nR-CGI-PWSFailedList NR-CGIList, + choice-Extensions ProtocolIE-SingleContainer { {PWSFailedCellIDList-ExtIEs} } +} + +PWSFailedCellIDList-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +-- Q + +QosCharacteristics ::= CHOICE { + nonDynamic5QI NonDynamic5QIDescriptor, + dynamic5QI Dynamic5QIDescriptor, + choice-Extensions ProtocolIE-SingleContainer { {QosCharacteristics-ExtIEs} } +} + +QosCharacteristics-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +QosFlowAcceptedList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowAcceptedItem + +QosFlowAcceptedItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + iE-Extensions ProtocolExtensionContainer { {QosFlowAcceptedItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowAcceptedItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetIndex PRESENCE optional }, + ... +} + +QosFlowAddOrModifyRequestList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowAddOrModifyRequestItem + +QosFlowAddOrModifyRequestItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + qosFlowLevelQosParameters QosFlowLevelQosParameters OPTIONAL, + e-RAB-ID E-RAB-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowAddOrModifyRequestItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowAddOrModifyRequestItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-TSCTrafficCharacteristics CRITICALITY ignore EXTENSION TSCTrafficCharacteristics PRESENCE optional }| + {ID id-RedundantQosFlowIndicator CRITICALITY ignore EXTENSION RedundantQosFlowIndicator PRESENCE optional }, + ... +} + +QosFlowAddOrModifyResponseList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowAddOrModifyResponseItem + +QosFlowAddOrModifyResponseItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + iE-Extensions ProtocolExtensionContainer { {QosFlowAddOrModifyResponseItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowAddOrModifyResponseItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetIndex PRESENCE optional }, + ... +} + +QosFlowFeedbackList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowFeedbackItem + +QosFlowFeedbackItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + updateFeedback UpdateFeedback OPTIONAL, + cNpacketDelayBudgetDL ExtendedPacketDelayBudget OPTIONAL, + cNpacketDelayBudgetUL ExtendedPacketDelayBudget OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowFeedbackItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowFeedbackItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowIdentifier ::= INTEGER (0..63, ...) + +QosFlowInformationList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowInformationItem + +QosFlowInformationItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + dLForwarding DLForwarding OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowInformationItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-ULForwarding CRITICALITY ignore EXTENSION ULForwarding PRESENCE optional}, + ... +} + +QosFlowLevelQosParameters ::= SEQUENCE { + qosCharacteristics QosCharacteristics, + allocationAndRetentionPriority AllocationAndRetentionPriority, + gBR-QosInformation GBR-QosInformation OPTIONAL, + reflectiveQosAttribute ReflectiveQosAttribute OPTIONAL, + additionalQosFlowInformation AdditionalQosFlowInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowLevelQosParameters-ExtIEs} } OPTIONAL, + ... +} + +QosFlowLevelQosParameters-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-QosMonitoringRequest CRITICALITY ignore EXTENSION QosMonitoringRequest PRESENCE optional}| + {ID id-QosMonitoringReportingFrequency CRITICALITY ignore EXTENSION QosMonitoringReportingFrequency PRESENCE optional}, + ... +} + + +QosMonitoringRequest ::= ENUMERATED {ul, dl, both, ..., stop} + +QosMonitoringReportingFrequency ::= INTEGER (1..1800, ...) + +QosFlowListWithCause ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowWithCauseItem + +QosFlowWithCauseItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {QosFlowWithCauseItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowWithCauseItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowModifyConfirmList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowModifyConfirmItem + +QosFlowModifyConfirmItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + iE-Extensions ProtocolExtensionContainer { {QosFlowModifyConfirmItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowModifyConfirmItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowNotifyList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowNotifyItem + +QosFlowNotifyItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + notificationCause NotificationCause, + iE-Extensions ProtocolExtensionContainer { {QosFlowNotifyItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowNotifyItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetNotifyIndex PRESENCE optional }, + ... +} +QosFlowParametersList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowParametersItem + +QosFlowParametersItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + alternativeQoSParaSetList AlternativeQoSParaSetList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowParametersItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowParametersItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CNPacketDelayBudgetDL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-CNPacketDelayBudgetUL CRITICALITY ignore EXTENSION ExtendedPacketDelayBudget PRESENCE optional }| + { ID id-BurstArrivalTimeDownlink CRITICALITY ignore EXTENSION BurstArrivalTime PRESENCE optional }, + ... +} + +QosFlowPerTNLInformation ::= SEQUENCE { + uPTransportLayerInformation UPTransportLayerInformation, + associatedQosFlowList AssociatedQosFlowList, + iE-Extensions ProtocolExtensionContainer { { QosFlowPerTNLInformation-ExtIEs} } OPTIONAL, + ... +} + +QosFlowPerTNLInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowPerTNLInformationList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivityMinusOne)) OF QosFlowPerTNLInformationItem + +QosFlowPerTNLInformationItem ::= SEQUENCE { + qosFlowPerTNLInformation QosFlowPerTNLInformation, + iE-Extensions ProtocolExtensionContainer { { QosFlowPerTNLInformationItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowPerTNLInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QosFlowSetupRequestList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowSetupRequestItem + +QosFlowSetupRequestItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + qosFlowLevelQosParameters QosFlowLevelQosParameters, + e-RAB-ID E-RAB-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowSetupRequestItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowSetupRequestItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-TSCTrafficCharacteristics CRITICALITY ignore EXTENSION TSCTrafficCharacteristics PRESENCE optional }| + {ID id-RedundantQosFlowIndicator CRITICALITY ignore EXTENSION RedundantQosFlowIndicator PRESENCE optional }, + ... +} + +QosFlowListWithDataForwarding ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowItemWithDataForwarding + +QosFlowItemWithDataForwarding ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + dataForwardingAccepted DataForwardingAccepted OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {QosFlowItemWithDataForwarding-ExtIEs} } OPTIONAL, + ... +} + +QosFlowItemWithDataForwarding-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CurrentQoSParaSetIndex CRITICALITY ignore EXTENSION AlternativeQoSParaSetIndex PRESENCE optional }, + ... +} + +QosFlowToBeForwardedList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QosFlowToBeForwardedItem + +QosFlowToBeForwardedItem ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + iE-Extensions ProtocolExtensionContainer { {QosFlowToBeForwardedItem-ExtIEs} } OPTIONAL, + ... +} + +QosFlowToBeForwardedItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +QoSFlowsUsageReportList ::= SEQUENCE (SIZE(1..maxnoofQosFlows)) OF QoSFlowsUsageReport-Item + +QoSFlowsUsageReport-Item ::= SEQUENCE { + qosFlowIdentifier QosFlowIdentifier, + rATType ENUMERATED {nr, eutra, ..., nr-unlicensed, e-utra-unlicensed}, + qoSFlowsTimedReportList VolumeTimedReportList, + iE-Extensions ProtocolExtensionContainer { {QoSFlowsUsageReport-Item-ExtIEs} } OPTIONAL, + ... +} + +QoSFlowsUsageReport-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- R + +Range ::= ENUMERATED {m50, m80, m180, m200, m350, m400, m500, m700, m1000, ...} + +RANNodeName ::= PrintableString (SIZE(1..150, ...)) + +RANNodeNameVisibleString ::= VisibleString (SIZE(1..150, ...)) + +RANNodeNameUTF8String ::= UTF8String (SIZE(1..150, ...)) + +RANPagingPriority ::= INTEGER (1..256) + +RANStatusTransfer-TransparentContainer ::= SEQUENCE { + dRBsSubjectToStatusTransferList DRBsSubjectToStatusTransferList, + iE-Extensions ProtocolExtensionContainer { {RANStatusTransfer-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +RANStatusTransfer-TransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RAN-UE-NGAP-ID ::= INTEGER (0..4294967295) + +RAT-Information ::= ENUMERATED { + unlicensed, + nb-IoT, + ... +} + +RATRestrictions ::= SEQUENCE (SIZE(1..maxnoofEPLMNsPlusOne)) OF RATRestrictions-Item + +RATRestrictions-Item ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + rATRestrictionInformation RATRestrictionInformation, + iE-Extensions ProtocolExtensionContainer { {RATRestrictions-Item-ExtIEs} } OPTIONAL, + ... +} + +RATRestrictions-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-ExtendedRATRestrictionInformation CRITICALITY ignore EXTENSION ExtendedRATRestrictionInformation PRESENCE optional }, + ... +} + +RATRestrictionInformation ::= BIT STRING (SIZE(8, ...)) + +RecommendedCellsForPaging ::= SEQUENCE { + recommendedCellList RecommendedCellList, + iE-Extensions ProtocolExtensionContainer { {RecommendedCellsForPaging-ExtIEs} } OPTIONAL, + ... +} + +RecommendedCellsForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedCellList ::= SEQUENCE (SIZE(1..maxnoofRecommendedCells)) OF RecommendedCellItem + +RecommendedCellItem ::= SEQUENCE { + nGRAN-CGI NGRAN-CGI, + timeStayedInCell INTEGER (0..4095) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {RecommendedCellItem-ExtIEs} } OPTIONAL, + ... +} + +RecommendedCellItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedRANNodesForPaging ::= SEQUENCE { + recommendedRANNodeList RecommendedRANNodeList, + iE-Extensions ProtocolExtensionContainer { {RecommendedRANNodesForPaging-ExtIEs} } OPTIONAL, + ... +} + +RecommendedRANNodesForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedRANNodeList::= SEQUENCE (SIZE(1..maxnoofRecommendedRANNodes)) OF RecommendedRANNodeItem + +RecommendedRANNodeItem ::= SEQUENCE { + aMFPagingTarget AMFPagingTarget, + iE-Extensions ProtocolExtensionContainer { {RecommendedRANNodeItem-ExtIEs} } OPTIONAL, + ... +} + +RecommendedRANNodeItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RedirectionVoiceFallback ::= ENUMERATED { + possible, + not-possible, + ... +} + +RedundantPDUSessionInformation ::= SEQUENCE { + rSN RSN, + iE-Extensions ProtocolExtensionContainer { {RedundantPDUSessionInformation-ExtIEs} } OPTIONAL, + ... +} + +RedundantPDUSessionInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +RedundantQosFlowIndicator ::= ENUMERATED {true, false} + +ReflectiveQosAttribute ::= ENUMERATED { + subject-to, + ... +} + +RelativeAMFCapacity ::= INTEGER (0..255) + +ReportArea ::= ENUMERATED { + cell, + ... +} + +RepetitionPeriod ::= INTEGER (0..131071) + +ResetAll ::= ENUMERATED { + reset-all, + ... +} + +ReportAmountMDT ::= ENUMERATED { + r1, r2, r4, r8, r16, r32, r64, rinfinity +} + +ReportIntervalMDT ::= ENUMERATED { + ms120, ms240, ms480, ms640, ms1024, ms2048, ms5120, ms10240, min1, min6, min12, min30, min60 +} + +ResetType ::= CHOICE { + nG-Interface ResetAll, + partOfNG-Interface UE-associatedLogicalNG-connectionList, + choice-Extensions ProtocolIE-SingleContainer { {ResetType-ExtIEs} } +} + +ResetType-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +RGLevelWirelineAccessCharacteristics ::= OCTET STRING + +RNC-ID ::= INTEGER (0..4095) + +RoutingID ::= OCTET STRING + +RRCContainer ::= OCTET STRING + +RRCEstablishmentCause ::= ENUMERATED { + emergency, + highPriorityAccess, + mt-Access, + mo-Signalling, + mo-Data, + mo-VoiceCall, + mo-VideoCall, + mo-SMS, + mps-PriorityAccess, + mcs-PriorityAccess, + ..., + notAvailable, + mo-ExceptionData +} + +RRCInactiveTransitionReportRequest ::= ENUMERATED { + subsequent-state-transition-report, + single-rrc-connected-state-report, + cancel-report, + ... +} + +RRCState ::= ENUMERATED { + inactive, + connected, + ... +} + +RSN ::= ENUMERATED {v1, v2, ...} + +RIMInformationTransfer ::= SEQUENCE { + targetRANNodeID TargetRANNodeID, + sourceRANNodeID SourceRANNodeID, + rIMInformation RIMInformation, + iE-Extensions ProtocolExtensionContainer { {RIMInformationTransfer-ExtIEs} } OPTIONAL, + ... +} + +RIMInformationTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + + +RIMInformation ::= SEQUENCE { + targetgNBSetID GNBSetID, + rIM-RSDetection ENUMERATED {rs-detected, rs-disappeared, ...}, + iE-Extensions ProtocolExtensionContainer { {RIMInformation-ExtIEs} } OPTIONAL, + ... +} + +RIMInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +GNBSetID ::= BIT STRING (SIZE(22)) + +-- S + +ScheduledCommunicationTime ::= SEQUENCE { + dayofWeek BIT STRING (SIZE(7)) OPTIONAL, + timeofDayStart INTEGER (0..86399, ...) OPTIONAL, + timeofDayEnd INTEGER (0..86399, ...) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ScheduledCommunicationTime-ExtIEs}} OPTIONAL, + ... +} + +ScheduledCommunicationTime-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SCTP-TLAs ::= SEQUENCE (SIZE(1..maxnoofXnTLAs)) OF TransportLayerAddress + +SD ::= OCTET STRING (SIZE(3)) + +SecondaryRATUsageInformation ::= SEQUENCE { + pDUSessionUsageReport PDUSessionUsageReport OPTIONAL, + qosFlowsUsageReportList QoSFlowsUsageReportList OPTIONAL, + iE-Extension ProtocolExtensionContainer { {SecondaryRATUsageInformation-ExtIEs} } OPTIONAL, + ... +} + +SecondaryRATUsageInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SecondaryRATDataUsageReportTransfer ::= SEQUENCE { + secondaryRATUsageInformation SecondaryRATUsageInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SecondaryRATDataUsageReportTransfer-ExtIEs} } OPTIONAL, + ... +} + +SecondaryRATDataUsageReportTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SecurityContext ::= SEQUENCE { + nextHopChainingCount NextHopChainingCount, + nextHopNH SecurityKey, + iE-Extensions ProtocolExtensionContainer { {SecurityContext-ExtIEs} } OPTIONAL, + ... +} + +SecurityContext-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SecurityIndication ::= SEQUENCE { + integrityProtectionIndication IntegrityProtectionIndication, + confidentialityProtectionIndication ConfidentialityProtectionIndication, + maximumIntegrityProtectedDataRate-UL MaximumIntegrityProtectedDataRate OPTIONAL, +-- The above IE shall be present if integrity protection is required or preferred + iE-Extensions ProtocolExtensionContainer { {SecurityIndication-ExtIEs} } OPTIONAL, + ... +} + +SecurityIndication-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-MaximumIntegrityProtectedDataRate-DL CRITICALITY ignore EXTENSION MaximumIntegrityProtectedDataRate PRESENCE optional }, + ... +} + +SecurityKey ::= BIT STRING (SIZE(256)) + +SecurityResult ::= SEQUENCE { + integrityProtectionResult IntegrityProtectionResult, + confidentialityProtectionResult ConfidentialityProtectionResult, + iE-Extensions ProtocolExtensionContainer { {SecurityResult-ExtIEs} } OPTIONAL, + ... +} + +SecurityResult-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SensorMeasurementConfiguration ::= SEQUENCE { + sensorMeasConfig SensorMeasConfig, + sensorMeasConfigNameList SensorMeasConfigNameList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SensorMeasurementConfiguration-ExtIEs} } OPTIONAL, + ... +} + +SensorMeasurementConfiguration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SensorMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofSensorName)) OF SensorMeasConfigNameItem + +SensorMeasConfigNameItem ::= SEQUENCE { + sensorNameConfig SensorNameConfig, + iE-Extensions ProtocolExtensionContainer { { SensorMeasConfigNameItem-ExtIEs } } OPTIONAL, + ... +} + +SensorMeasConfigNameItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SensorMeasConfig::= ENUMERATED {setup,...} + +SensorNameConfig ::= CHOICE { + uncompensatedBarometricConfig ENUMERATED {true, ...}, + ueSpeedConfig ENUMERATED {true, ...}, + ueOrientationConfig ENUMERATED {true, ...}, + choice-Extensions ProtocolIE-SingleContainer { {SensorNameConfig-ExtIEs} } +} + +SensorNameConfig-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +SerialNumber ::= BIT STRING (SIZE(16)) + +ServedGUAMIList ::= SEQUENCE (SIZE(1..maxnoofServedGUAMIs)) OF ServedGUAMIItem + +ServedGUAMIItem ::= SEQUENCE { + gUAMI GUAMI, + backupAMFName AMFName OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ServedGUAMIItem-ExtIEs} } OPTIONAL, + ... +} + +ServedGUAMIItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-GUAMIType CRITICALITY ignore EXTENSION GUAMIType PRESENCE optional }, + ... +} + +ServiceAreaInformation ::= SEQUENCE (SIZE(1.. maxnoofEPLMNsPlusOne)) OF ServiceAreaInformation-Item + +ServiceAreaInformation-Item ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + allowedTACs AllowedTACs OPTIONAL, + notAllowedTACs NotAllowedTACs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ServiceAreaInformation-Item-ExtIEs} } OPTIONAL, + ... +} + +ServiceAreaInformation-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SgNB-UE-X2AP-ID ::= INTEGER (0..4294967295) + +SliceOverloadList ::= SEQUENCE (SIZE(1..maxnoofSliceItems)) OF SliceOverloadItem + +SliceOverloadItem ::= SEQUENCE { + s-NSSAI S-NSSAI, + iE-Extensions ProtocolExtensionContainer { {SliceOverloadItem-ExtIEs} } OPTIONAL, + ... +} + +SliceOverloadItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SliceSupportList ::= SEQUENCE (SIZE(1..maxnoofSliceItems)) OF SliceSupportItem + +SliceSupportItem ::= SEQUENCE { + s-NSSAI S-NSSAI, + iE-Extensions ProtocolExtensionContainer { {SliceSupportItem-ExtIEs} } OPTIONAL, + ... +} + +SliceSupportItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SNPN-MobilityInformation ::= SEQUENCE { + serving-NID NID, + iE-Extensions ProtocolExtensionContainer { {SNPN-MobilityInformation-ExtIEs} } OPTIONAL, + ... +} + +SNPN-MobilityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +S-NSSAI ::= SEQUENCE { + sST SST, + sD SD OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { S-NSSAI-ExtIEs} } OPTIONAL, + ... +} + +S-NSSAI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SONConfigurationTransfer ::= SEQUENCE { + targetRANNodeID TargetRANNodeID, + sourceRANNodeID SourceRANNodeID, + sONInformation SONInformation, + xnTNLConfigurationInfo XnTNLConfigurationInfo OPTIONAL, +-- The above IE shall be present if the SON Information IE contains the SON Information Request IE set to Xn TNL Configuration Info + iE-Extensions ProtocolExtensionContainer { {SONConfigurationTransfer-ExtIEs} } OPTIONAL, + ... +} + +SONConfigurationTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SONInformation ::= CHOICE { + sONInformationRequest SONInformationRequest, + sONInformationReply SONInformationReply, + choice-Extensions ProtocolIE-SingleContainer { {SONInformation-ExtIEs} } +} + +SONInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-SONInformationReport CRITICALITY ignore TYPE SONInformationReport PRESENCE mandatory }, + ... +} + +SONInformationReply ::= SEQUENCE { + xnTNLConfigurationInfo XnTNLConfigurationInfo OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SONInformationReply-ExtIEs} } OPTIONAL, + ... +} + +SONInformationReply-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SONInformationReport::= CHOICE { + failureIndicationInformation FailureIndication, + hOReportInformation HOReport, + choice-Extensions ProtocolIE-SingleContainer { { SONInformationReport-ExtIEs} } +} + +SONInformationReport-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +SONInformationRequest ::= ENUMERATED { + xn-TNL-configuration-info, + ... +} + +SourceNGRANNode-ToTargetNGRANNode-TransparentContainer ::= SEQUENCE { + rRCContainer RRCContainer, + pDUSessionResourceInformationList PDUSessionResourceInformationList OPTIONAL, + e-RABInformationList E-RABInformationList OPTIONAL, + targetCell-ID NGRAN-CGI, + indexToRFSP IndexToRFSP OPTIONAL, + uEHistoryInformation UEHistoryInformation, + iE-Extensions ProtocolExtensionContainer { {SourceNGRANNode-ToTargetNGRANNode-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +SourceNGRANNode-ToTargetNGRANNode-TransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SgNB-UE-X2AP-ID CRITICALITY ignore EXTENSION SgNB-UE-X2AP-ID PRESENCE optional }| + { ID id-UEHistoryInformationFromTheUE CRITICALITY ignore EXTENSION UEHistoryInformationFromTheUE PRESENCE optional }, + ... +} + +SourceOfUEActivityBehaviourInformation ::= ENUMERATED { + subscription-information, + statistics, + ... +} + +SourceRANNodeID ::= SEQUENCE { + globalRANNodeID GlobalRANNodeID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { {SourceRANNodeID-ExtIEs} } OPTIONAL, + ... +} + +SourceRANNodeID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +SourceToTarget-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the source RAN node to the target RAN node. +-- The octets of the OCTET STRING are encoded according to the specifications of the target system. + +SourceToTarget-AMFInformationReroute ::= SEQUENCE { + configuredNSSAI ConfiguredNSSAI OPTIONAL, + rejectedNSSAIinPLMN RejectedNSSAIinPLMN OPTIONAL, + rejectedNSSAIinTA RejectedNSSAIinTA OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SourceToTarget-AMFInformationReroute-ExtIEs} } OPTIONAL, + ... +} + +SourceToTarget-AMFInformationReroute-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- This IE includes information from the source Core node to the target Core node for reroute information provide by NSSF. +-- The octets of the OCTET STRING are encoded according to the specifications of the Core network. + +SRVCCOperationPossible ::= ENUMERATED { + possible, + notPossible, + ... +} + +ConfiguredNSSAI ::= OCTET STRING (SIZE(128)) + +RejectedNSSAIinPLMN ::= OCTET STRING (SIZE(32)) + +RejectedNSSAIinTA ::= OCTET STRING (SIZE(32)) + +SST ::= OCTET STRING (SIZE(1)) + +SupportedTAList ::= SEQUENCE (SIZE(1..maxnoofTACs)) OF SupportedTAItem + +SupportedTAItem ::= SEQUENCE { + tAC TAC, + broadcastPLMNList BroadcastPLMNList, + iE-Extensions ProtocolExtensionContainer { {SupportedTAItem-ExtIEs} } OPTIONAL, + ... +} + +SupportedTAItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + {ID id-ConfiguredTACIndication CRITICALITY ignore EXTENSION ConfiguredTACIndication PRESENCE optional }| + {ID id-RAT-Information CRITICALITY reject EXTENSION RAT-Information PRESENCE optional }, + ... +} + +SuspendIndicator ::= ENUMERATED { + true, + ... +} + +Suspend-Request-Indication ::= ENUMERATED { + suspend-requested, + ... +} + +Suspend-Response-Indication ::= ENUMERATED { + suspend-indicated, + ... +} + +-- T + +TAC ::= OCTET STRING (SIZE(3)) + +TAI ::= SEQUENCE { + pLMNIdentity PLMNIdentity, + tAC TAC, + iE-Extensions ProtocolExtensionContainer { {TAI-ExtIEs} } OPTIONAL, + ... +} + +TAI-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIBroadcastEUTRA ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAIBroadcastEUTRA-Item + +TAIBroadcastEUTRA-Item ::= SEQUENCE { + tAI TAI, + completedCellsInTAI-EUTRA CompletedCellsInTAI-EUTRA, + iE-Extensions ProtocolExtensionContainer { {TAIBroadcastEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +TAIBroadcastEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIBroadcastNR ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAIBroadcastNR-Item + +TAIBroadcastNR-Item ::= SEQUENCE { + tAI TAI, + completedCellsInTAI-NR CompletedCellsInTAI-NR, + iE-Extensions ProtocolExtensionContainer { {TAIBroadcastNR-Item-ExtIEs} } OPTIONAL, + ... +} + +TAIBroadcastNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAICancelledEUTRA ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAICancelledEUTRA-Item + +TAICancelledEUTRA-Item ::= SEQUENCE { + tAI TAI, + cancelledCellsInTAI-EUTRA CancelledCellsInTAI-EUTRA, + iE-Extensions ProtocolExtensionContainer { {TAICancelledEUTRA-Item-ExtIEs} } OPTIONAL, + ... +} + +TAICancelledEUTRA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAICancelledNR ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAICancelledNR-Item + +TAICancelledNR-Item ::= SEQUENCE { + tAI TAI, + cancelledCellsInTAI-NR CancelledCellsInTAI-NR, + iE-Extensions ProtocolExtensionContainer { {TAICancelledNR-Item-ExtIEs} } OPTIONAL, + ... +} + +TAICancelledNR-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListForInactive ::= SEQUENCE (SIZE(1..maxnoofTAIforInactive)) OF TAIListForInactiveItem + +TAIListForInactiveItem ::= SEQUENCE { + tAI TAI, + iE-Extensions ProtocolExtensionContainer { {TAIListForInactiveItem-ExtIEs} } OPTIONAL, + ... +} + +TAIListForInactiveItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListForPaging ::= SEQUENCE (SIZE(1..maxnoofTAIforPaging)) OF TAIListForPagingItem + +TAIListForPagingItem ::= SEQUENCE { + tAI TAI, + iE-Extensions ProtocolExtensionContainer { {TAIListForPagingItem-ExtIEs} } OPTIONAL, + ... +} + +TAIListForPagingItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListForRestart ::= SEQUENCE (SIZE(1..maxnoofTAIforRestart)) OF TAI + +TAIListForWarning ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAI + +TargeteNB-ID ::= SEQUENCE { + globalENB-ID GlobalNgENB-ID, + selected-EPS-TAI EPS-TAI, + iE-Extensions ProtocolExtensionContainer { {TargeteNB-ID-ExtIEs} } OPTIONAL, + ... +} + +TargeteNB-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetID ::= CHOICE { + targetRANNodeID TargetRANNodeID, + targeteNB-ID TargeteNB-ID, + choice-Extensions ProtocolIE-SingleContainer { {TargetID-ExtIEs} } +} + +TargetID-ExtIEs NGAP-PROTOCOL-IES ::= { + {ID id-TargetRNC-ID CRITICALITY reject TYPE TargetRNC-ID PRESENCE mandatory }, + ... +} + +TargetNGRANNode-ToSourceNGRANNode-TransparentContainer ::= SEQUENCE { + rRCContainer RRCContainer, + iE-Extensions ProtocolExtensionContainer { {TargetNGRANNode-ToSourceNGRANNode-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +TargetNGRANNode-ToSourceNGRANNode-TransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-DAPSResponseInfoList CRITICALITY ignore EXTENSION DAPSResponseInfoList PRESENCE optional }, + ... +} + +TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer ::= SEQUENCE { + cell-CAGInformation Cell-CAGInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +TargetNGRANNode-ToSourceNGRANNode-FailureTransparentContainer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetRANNodeID ::= SEQUENCE { + globalRANNodeID GlobalRANNodeID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { {TargetRANNodeID-ExtIEs} } OPTIONAL, + ... +} + +TargetRANNodeID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetRNC-ID ::= SEQUENCE { + lAI LAI, + rNC-ID RNC-ID, + extendedRNC-ID ExtendedRNC-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TargetRNC-ID-ExtIEs} } OPTIONAL, + ... +} + +TargetRNC-ID-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetToSource-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the target RAN node to the source RAN node. +-- The octets of the OCTET STRING are encoded according to the specifications of the target system. + +TargettoSource-Failure-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the target RAN node to the source RAN node. +-- The octets of the OCTET STRING are encoded according to the specifications of the target system (if applicable). + +TimerApproachForGUAMIRemoval ::= ENUMERATED { + apply-timer, + ... +} + +TimeStamp ::= OCTET STRING (SIZE(4)) + +TimeToWait ::= ENUMERATED {v1s, v2s, v5s, v10s, v20s, v60s, ...} + +TimeUEStayedInCell ::= INTEGER (0..4095) + +TimeUEStayedInCellEnhancedGranularity ::= INTEGER (0..40950) + +TNAP-ID ::= OCTET STRING + +TNGF-ID ::= CHOICE { + tNGF-ID BIT STRING (SIZE(32, ...)), + choice-Extensions ProtocolIE-SingleContainer { {TNGF-ID-ExtIEs} } +} + +TNGF-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +TNLAddressWeightFactor ::= INTEGER (0..255) + +TNLAssociationList ::= SEQUENCE (SIZE(1..maxnoofTNLAssociations)) OF TNLAssociationItem + +TNLAssociationItem ::= SEQUENCE { + tNLAssociationAddress CPTransportLayerInformation, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {TNLAssociationItem-ExtIEs} } OPTIONAL, + ... +} + +TNLAssociationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TNLAssociationUsage ::= ENUMERATED { + ue, + non-ue, + both, + ... +} + +TooearlyIntersystemHO::= SEQUENCE { + sourcecellID EUTRA-CGI, + failurecellID NGRAN-CGI, + uERLFReportContainer UERLFReportContainer OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { TooearlyIntersystemHO-ExtIEs} } OPTIONAL, + ... +} + +TooearlyIntersystemHO-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TraceActivation ::= SEQUENCE { + nGRANTraceID NGRANTraceID, + interfacesToTrace InterfacesToTrace, +traceDepth TraceDepth, +traceCollectionEntityIPAddress TransportLayerAddress, + iE-Extensions ProtocolExtensionContainer { {TraceActivation-ExtIEs} } OPTIONAL, + ... +} + +TraceActivation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-MDTConfiguration CRITICALITY ignore EXTENSION MDT-Configuration PRESENCE optional }| + { ID id-TraceCollectionEntityURI CRITICALITY ignore EXTENSION URI-address PRESENCE optional }, + ... +} + +TraceDepth ::= ENUMERATED { + minimum, + medium, + maximum, + minimumWithoutVendorSpecificExtension, + mediumWithoutVendorSpecificExtension, + maximumWithoutVendorSpecificExtension, + ... +} + +TrafficLoadReductionIndication ::= INTEGER (1..99) + +TransportLayerAddress ::= BIT STRING (SIZE(1..160, ...)) + +TypeOfError ::= ENUMERATED { + not-understood, + missing, + ... +} + +TAIBasedMDT ::= SEQUENCE { + tAIListforMDT TAIListforMDT, + iE-Extensions ProtocolExtensionContainer { {TAIBasedMDT-ExtIEs} } OPTIONAL, + ... +} + +TAIBasedMDT-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListforMDT ::= SEQUENCE (SIZE(1..maxnoofTAforMDT)) OF TAI + + +TABasedMDT ::= SEQUENCE { + tAListforMDT TAListforMDT, + iE-Extensions ProtocolExtensionContainer { {TABasedMDT-ExtIEs} } OPTIONAL, + ... +} + +TABasedMDT-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TAListforMDT ::= SEQUENCE (SIZE(1..maxnoofTAforMDT)) OF TAC + +Threshold-RSRP ::= INTEGER(0..127) + +Threshold-RSRQ ::= INTEGER(0..127) + +Threshold-SINR ::= INTEGER(0..127) + +TimeToTrigger ::= ENUMERATED {ms0, ms40, ms64, ms80, ms100, ms128, ms160, ms256, ms320, ms480, ms512, ms640, ms1024, ms1280, ms2560, ms5120} + + +TWAP-ID ::= OCTET STRING + +TWIF-ID ::= CHOICE { + tWIF-ID BIT STRING (SIZE(32, ...)), + choice-Extensions ProtocolIE-SingleContainer { {TWIF-ID-ExtIEs} } +} + +TWIF-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +TSCAssistanceInformation ::= SEQUENCE { + periodicity Periodicity, + burstArrivalTime BurstArrivalTime OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TSCAssistanceInformation-ExtIEs} } OPTIONAL, + ... +} + +TSCAssistanceInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +TSCTrafficCharacteristics ::= SEQUENCE { + tSCAssistanceInformationDL TSCAssistanceInformation OPTIONAL, + tSCAssistanceInformationUL TSCAssistanceInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TSCTrafficCharacteristics-ExtIEs} } OPTIONAL, + ... +} + +TSCTrafficCharacteristics-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- U + +UEAggregateMaximumBitRate ::= SEQUENCE { + uEAggregateMaximumBitRateDL BitRate, + uEAggregateMaximumBitRateUL BitRate, + iE-Extensions ProtocolExtensionContainer { {UEAggregateMaximumBitRate-ExtIEs} } OPTIONAL, + ... +} + +UEAggregateMaximumBitRate-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UE-associatedLogicalNG-connectionList ::= SEQUENCE (SIZE(1..maxnoofNGConnectionsToReset)) OF UE-associatedLogicalNG-connectionItem + +UE-associatedLogicalNG-connectionItem ::= SEQUENCE { + aMF-UE-NGAP-ID AMF-UE-NGAP-ID OPTIONAL, + rAN-UE-NGAP-ID RAN-UE-NGAP-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UE-associatedLogicalNG-connectionItem-ExtIEs} } OPTIONAL, + ... +} + +UE-associatedLogicalNG-connectionItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UECapabilityInfoRequest ::= ENUMERATED { + requested, + ... +} + +UEContextRequest ::= ENUMERATED {requested, ...} + + +UEContextResumeRequestTransfer ::= SEQUENCE { + qosFlowFailedToResumeList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UEContextResumeRequestTransfer-ExtIEs} } OPTIONAL, + ... +} + +UEContextResumeRequestTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UEContextResumeResponseTransfer ::= SEQUENCE { + qosFlowFailedToResumeList QosFlowListWithCause OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UEContextResumeResponseTransfer-ExtIEs} } OPTIONAL, + ... +} + +UEContextResumeResponseTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UEContextSuspendRequestTransfer ::= SEQUENCE { + suspendIndicator SuspendIndicator OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UEContextSuspendRequestTransfer-ExtIEs} } OPTIONAL, + ... +} + +UEContextSuspendRequestTransfer-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UE-DifferentiationInfo ::= SEQUENCE { + periodicCommunicationIndicator ENUMERATED {periodically, ondemand, ... } OPTIONAL, + periodicTime INTEGER (1..3600, ...) OPTIONAL, + scheduledCommunicationTime ScheduledCommunicationTime OPTIONAL, + stationaryIndication ENUMERATED {stationary, mobile, ...} OPTIONAL, + trafficProfile ENUMERATED {single-packet, dual-packets, multiple-packets, ...} OPTIONAL, + batteryIndication ENUMERATED {battery-powered, battery-powered-not-rechargeable-or-replaceable, not-battery-powered, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { UE-DifferentiationInfo-ExtIEs} } OPTIONAL, + ... +} + +UE-DifferentiationInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UEHistoryInformation ::= SEQUENCE (SIZE(1..maxnoofCellsinUEHistoryInfo)) OF LastVisitedCellItem + +UEHistoryInformationFromTheUE ::= CHOICE { + nR NRMobilityHistoryReport, + choice-Extensions ProtocolIE-SingleContainer { {UEHistoryInformationFromTheUE-ExtIEs} } +} + +UEHistoryInformationFromTheUE-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UEIdentityIndexValue ::= CHOICE { + indexLength10 BIT STRING (SIZE(10)), + choice-Extensions ProtocolIE-SingleContainer { {UEIdentityIndexValue-ExtIEs} } +} + +UEIdentityIndexValue-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UE-NGAP-IDs ::= CHOICE { + uE-NGAP-ID-pair UE-NGAP-ID-pair, + aMF-UE-NGAP-ID AMF-UE-NGAP-ID, + choice-Extensions ProtocolIE-SingleContainer { {UE-NGAP-IDs-ExtIEs} } +} + +UE-NGAP-IDs-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UE-NGAP-ID-pair ::= SEQUENCE{ + aMF-UE-NGAP-ID AMF-UE-NGAP-ID, + rAN-UE-NGAP-ID RAN-UE-NGAP-ID, + iE-Extensions ProtocolExtensionContainer { {UE-NGAP-ID-pair-ExtIEs} } OPTIONAL, + ... +} + +UE-NGAP-ID-pair-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UEPagingIdentity ::= CHOICE { + fiveG-S-TMSI FiveG-S-TMSI, + choice-Extensions ProtocolIE-SingleContainer { {UEPagingIdentity-ExtIEs} } + } + +UEPagingIdentity-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UEPresence ::= ENUMERATED {in, out, unknown, ...} + +UEPresenceInAreaOfInterestList ::= SEQUENCE (SIZE(1..maxnoofAoI)) OF UEPresenceInAreaOfInterestItem + +UEPresenceInAreaOfInterestItem ::= SEQUENCE { + locationReportingReferenceID LocationReportingReferenceID, + uEPresence UEPresence, + iE-Extensions ProtocolExtensionContainer { {UEPresenceInAreaOfInterestItem-ExtIEs} } OPTIONAL, + ... +} + +UEPresenceInAreaOfInterestItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UERadioCapability ::= OCTET STRING + +UERadioCapabilityForPaging ::= SEQUENCE { + uERadioCapabilityForPagingOfNR UERadioCapabilityForPagingOfNR OPTIONAL, + uERadioCapabilityForPagingOfEUTRA UERadioCapabilityForPagingOfEUTRA OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UERadioCapabilityForPaging-ExtIEs} } OPTIONAL, + ... +} + +UERadioCapabilityForPaging-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-UERadioCapabilityForPagingOfNB-IoT CRITICALITY ignore EXTENSION UERadioCapabilityForPagingOfNB-IoT PRESENCE optional }, + ... +} + +UERadioCapabilityForPagingOfNB-IoT ::= OCTET STRING + +UERadioCapabilityForPagingOfNR ::= OCTET STRING + +UERadioCapabilityForPagingOfEUTRA ::= OCTET STRING + +UERadioCapabilityID ::= OCTET STRING + +UERetentionInformation ::= ENUMERATED { + ues-retained, + ... +} + +UERLFReportContainer ::= CHOICE { + nR NRUERLFReportContainer, + lTE LTEUERLFReportContainer, + choice-Extensions ProtocolIE-SingleContainer { {UERLFReportContainer-ExtIEs} } +} + +UERLFReportContainer-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UESecurityCapabilities ::= SEQUENCE { + nRencryptionAlgorithms NRencryptionAlgorithms, + nRintegrityProtectionAlgorithms NRintegrityProtectionAlgorithms, + eUTRAencryptionAlgorithms EUTRAencryptionAlgorithms, + eUTRAintegrityProtectionAlgorithms EUTRAintegrityProtectionAlgorithms, + iE-Extensions ProtocolExtensionContainer { {UESecurityCapabilities-ExtIEs} } OPTIONAL, + ... +} + +UESecurityCapabilities-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UE-UP-CIoT-Support ::= ENUMERATED {supported, ...} + +UL-CP-SecurityInformation ::= SEQUENCE { + ul-NAS-MAC UL-NAS-MAC, + ul-NAS-Count UL-NAS-Count, + iE-Extensions ProtocolExtensionContainer { { UL-CP-SecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +UL-CP-SecurityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UL-NAS-MAC ::= BIT STRING (SIZE (16)) + +UL-NAS-Count ::= BIT STRING (SIZE (5)) + +UL-NGU-UP-TNLModifyList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivity)) OF UL-NGU-UP-TNLModifyItem + +UL-NGU-UP-TNLModifyItem ::= SEQUENCE { + uL-NGU-UP-TNLInformation UPTransportLayerInformation, + dL-NGU-UP-TNLInformation UPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {UL-NGU-UP-TNLModifyItem-ExtIEs} } OPTIONAL, + ... +} + +UL-NGU-UP-TNLModifyItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-RedundantUL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }| + { ID id-RedundantDL-NGU-UP-TNLInformation CRITICALITY ignore EXTENSION UPTransportLayerInformation PRESENCE optional }, + ... +} + +UnavailableGUAMIList ::= SEQUENCE (SIZE(1..maxnoofServedGUAMIs)) OF UnavailableGUAMIItem + +UnavailableGUAMIItem ::= SEQUENCE { + gUAMI GUAMI, + timerApproachForGUAMIRemoval TimerApproachForGUAMIRemoval OPTIONAL, + backupAMFName AMFName OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UnavailableGUAMIItem-ExtIEs} } OPTIONAL, + ... +} + +UnavailableGUAMIItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +ULForwarding ::= ENUMERATED { + ul-forwarding-proposed, + ... +} + +UpdateFeedback ::= BIT STRING (SIZE(8, ...)) + +UPTransportLayerInformation ::= CHOICE { + gTPTunnel GTPTunnel, + choice-Extensions ProtocolIE-SingleContainer { {UPTransportLayerInformation-ExtIEs} } +} + +UPTransportLayerInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +UPTransportLayerInformationList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivityMinusOne)) OF UPTransportLayerInformationItem + +UPTransportLayerInformationItem ::= SEQUENCE { + nGU-UP-TNLInformation UPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {UPTransportLayerInformationItem-ExtIEs} } OPTIONAL, + ... +} + +UPTransportLayerInformationItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-CommonNetworkInstance CRITICALITY ignore EXTENSION CommonNetworkInstance PRESENCE optional }, + ... +} + + +UPTransportLayerInformationPairList ::= SEQUENCE (SIZE(1..maxnoofMultiConnectivityMinusOne)) OF UPTransportLayerInformationPairItem + +UPTransportLayerInformationPairItem ::= SEQUENCE { + uL-NGU-UP-TNLInformation UPTransportLayerInformation, + dL-NGU-UP-TNLInformation UPTransportLayerInformation, + iE-Extensions ProtocolExtensionContainer { {UPTransportLayerInformationPairItem-ExtIEs} } OPTIONAL, + ... +} + +UPTransportLayerInformationPairItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +URI-address ::= VisibleString + +UserLocationInformation ::= CHOICE { + userLocationInformationEUTRA UserLocationInformationEUTRA, + userLocationInformationNR UserLocationInformationNR, + userLocationInformationN3IWF UserLocationInformationN3IWF, + choice-Extensions ProtocolIE-SingleContainer { {UserLocationInformation-ExtIEs} } +} + +UserLocationInformation-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-UserLocationInformationTNGF CRITICALITY ignore TYPE UserLocationInformationTNGF PRESENCE mandatory }| + { ID id-UserLocationInformationTWIF CRITICALITY ignore TYPE UserLocationInformationTWIF PRESENCE mandatory }| + { ID id-UserLocationInformationW-AGF CRITICALITY ignore TYPE UserLocationInformationW-AGF PRESENCE mandatory }, + ... +} + +UserLocationInformationEUTRA ::= SEQUENCE { + eUTRA-CGI EUTRA-CGI, + tAI TAI, + timeStamp TimeStamp OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationEUTRA-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationEUTRA-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PSCellInformation CRITICALITY ignore EXTENSION NGRAN-CGI PRESENCE optional}, + ... +} + +UserLocationInformationN3IWF ::= SEQUENCE { + iPAddress TransportLayerAddress, + portNumber PortNumber, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationN3IWF-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationN3IWF-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UserLocationInformationTNGF ::= SEQUENCE { + tNAP-ID TNAP-ID, + iPAddress TransportLayerAddress, + portNumber PortNumber OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationTNGF-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationTNGF-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UserLocationInformationTWIF ::= SEQUENCE { + tWAP-ID TWAP-ID, + iPAddress TransportLayerAddress, + portNumber PortNumber OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationTWIF-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationTWIF-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +UserLocationInformationW-AGF ::= CHOICE { + globalLine-ID GlobalLine-ID, + hFCNode-ID HFCNode-ID, + choice-Extensions ProtocolIE-SingleContainer { { UserLocationInformationW-AGF-ExtIEs} } +} + +UserLocationInformationW-AGF-ExtIEs NGAP-PROTOCOL-IES ::= { + { ID id-GlobalCable-ID CRITICALITY ignore TYPE GlobalCable-ID PRESENCE mandatory }, + ... +} + +UserLocationInformationNR ::= SEQUENCE { + nR-CGI NR-CGI, + tAI TAI, + timeStamp TimeStamp OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {UserLocationInformationNR-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformationNR-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-PSCellInformation CRITICALITY ignore EXTENSION NGRAN-CGI PRESENCE optional }| + { ID id-NID CRITICALITY reject EXTENSION NID PRESENCE optional }, + ... +} + +UserPlaneSecurityInformation ::= SEQUENCE { + securityResult SecurityResult, + securityIndication SecurityIndication, + iE-Extensions ProtocolExtensionContainer { {UserPlaneSecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +UserPlaneSecurityInformation-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- V + +VolumeTimedReportList ::= SEQUENCE (SIZE(1..maxnoofTimePeriods)) OF VolumeTimedReport-Item + +VolumeTimedReport-Item ::= SEQUENCE { + startTimeStamp OCTET STRING (SIZE(4)), + endTimeStamp OCTET STRING (SIZE(4)), + usageCountUL INTEGER (0..18446744073709551615), + usageCountDL INTEGER (0..18446744073709551615), + iE-Extensions ProtocolExtensionContainer { {VolumeTimedReport-Item-ExtIEs} } OPTIONAL, + ... +} + +VolumeTimedReport-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- W + +W-AGF-ID ::= CHOICE { + w-AGF-ID BIT STRING (SIZE(16, ...)), + choice-Extensions ProtocolIE-SingleContainer { {W-AGF-ID-ExtIEs} } +} + +W-AGF-ID-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +WarningAreaCoordinates ::= OCTET STRING (SIZE(1..1024)) + +WarningAreaList ::= CHOICE { + eUTRA-CGIListForWarning EUTRA-CGIListForWarning, + nR-CGIListForWarning NR-CGIListForWarning, + tAIListForWarning TAIListForWarning, + emergencyAreaIDList EmergencyAreaIDList, + choice-Extensions ProtocolIE-SingleContainer { {WarningAreaList-ExtIEs} } +} + +WarningAreaList-ExtIEs NGAP-PROTOCOL-IES ::= { + ... +} + +WarningMessageContents ::= OCTET STRING (SIZE(1..9600)) + +WarningSecurityInfo ::= OCTET STRING (SIZE(50)) + +WarningType ::= OCTET STRING (SIZE(2)) + +WLANMeasurementConfiguration ::= SEQUENCE { + wlanMeasConfig WLANMeasConfig, + wlanMeasConfigNameList WLANMeasConfigNameList OPTIONAL, + wlan-rssi ENUMERATED {true, ...} OPTIONAL, + wlan-rtt ENUMERATED {true, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { WLANMeasurementConfiguration-ExtIEs } } OPTIONAL, + ... +} + +WLANMeasurementConfiguration-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +WLANMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofWLANName)) OF WLANMeasConfigNameItem + +WLANMeasConfigNameItem ::= SEQUENCE { + wLANName WLANName, + iE-Extensions ProtocolExtensionContainer { { WLANMeasConfigNameItem-ExtIEs } } OPTIONAL, + ... +} + +WLANMeasConfigNameItem-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +WLANMeasConfig::= ENUMERATED {setup,...} + +WLANName ::= OCTET STRING (SIZE (1..32)) + +WUS-Assistance-Information ::= SEQUENCE { + pagingProbabilityInformation PagingProbabilityInformation, + iE-Extensions ProtocolExtensionContainer { { WUS-Assistance-Information-ExtIEs } } OPTIONAL, + ... +} + +WUS-Assistance-Information-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- X + +XnExtTLAs ::= SEQUENCE (SIZE(1..maxnoofXnExtTLAs)) OF XnExtTLA-Item + +XnExtTLA-Item ::= SEQUENCE { + iPsecTLA TransportLayerAddress OPTIONAL, + gTP-TLAs XnGTP-TLAs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {XnExtTLA-Item-ExtIEs} } OPTIONAL, + ... +} + +XnExtTLA-Item-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + { ID id-SCTP-TLAs CRITICALITY ignore EXTENSION SCTP-TLAs PRESENCE optional }, + ... +} + +XnGTP-TLAs ::= SEQUENCE (SIZE(1..maxnoofXnGTP-TLAs)) OF TransportLayerAddress + +XnTLAs ::= SEQUENCE (SIZE(1..maxnoofXnTLAs)) OF TransportLayerAddress + +XnTNLConfigurationInfo ::= SEQUENCE { + xnTransportLayerAddresses XnTLAs, + xnExtendedTransportLayerAddresses XnExtTLAs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {XnTNLConfigurationInfo-ExtIEs} } OPTIONAL, + ... +} + +XnTNLConfigurationInfo-ExtIEs NGAP-PROTOCOL-EXTENSION ::= { + ... +} + +-- Y +-- Z + +END +-- ASN1STOP + +9.4.6 Common Definitions +-- ASN1START +-- ************************************************************** +-- +-- Common definitions +-- +-- ************************************************************** + +NGAP-CommonDataTypes { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-CommonDataTypes (3) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +Criticality ::= ENUMERATED { reject, ignore, notify } + +Presence ::= ENUMERATED { optional, conditional, mandatory } + +PrivateIE-ID ::= CHOICE { + local INTEGER (0..65535), + global OBJECT IDENTIFIER +} + +ProcedureCode ::= INTEGER (0..255) + +ProtocolExtensionID ::= INTEGER (0..65535) + +ProtocolIE-ID ::= INTEGER (0..65535) + +TriggeringMessage ::= ENUMERATED { initiating-message, successful-outcome, unsuccessfull-outcome } + +END +-- ASN1STOP + +9.4.7 Constant Definitions +-- ASN1START +-- ************************************************************** +-- +-- Constant definitions +-- +-- ************************************************************** + +NGAP-Constants { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-Constants (4) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + ProcedureCode, + ProtocolIE-ID +FROM NGAP-CommonDataTypes; + + +-- ************************************************************** +-- +-- Elementary Procedures +-- +-- ************************************************************** + +id-AMFConfigurationUpdate ProcedureCode ::= 0 +id-AMFStatusIndication ProcedureCode ::= 1 +id-CellTrafficTrace ProcedureCode ::= 2 +id-DeactivateTrace ProcedureCode ::= 3 +id-DownlinkNASTransport ProcedureCode ::= 4 +id-DownlinkNonUEAssociatedNRPPaTransport ProcedureCode ::= 5 +id-DownlinkRANConfigurationTransfer ProcedureCode ::= 6 +id-DownlinkRANStatusTransfer ProcedureCode ::= 7 +id-DownlinkUEAssociatedNRPPaTransport ProcedureCode ::= 8 +id-ErrorIndication ProcedureCode ::= 9 +id-HandoverCancel ProcedureCode ::= 10 +id-HandoverNotification ProcedureCode ::= 11 +id-HandoverPreparation ProcedureCode ::= 12 +id-HandoverResourceAllocation ProcedureCode ::= 13 +id-InitialContextSetup ProcedureCode ::= 14 +id-InitialUEMessage ProcedureCode ::= 15 +id-LocationReportingControl ProcedureCode ::= 16 +id-LocationReportingFailureIndication ProcedureCode ::= 17 +id-LocationReport ProcedureCode ::= 18 +id-NASNonDeliveryIndication ProcedureCode ::= 19 +id-NGReset ProcedureCode ::= 20 +id-NGSetup ProcedureCode ::= 21 +id-OverloadStart ProcedureCode ::= 22 +id-OverloadStop ProcedureCode ::= 23 +id-Paging ProcedureCode ::= 24 +id-PathSwitchRequest ProcedureCode ::= 25 +id-PDUSessionResourceModify ProcedureCode ::= 26 +id-PDUSessionResourceModifyIndication ProcedureCode ::= 27 +id-PDUSessionResourceRelease ProcedureCode ::= 28 +id-PDUSessionResourceSetup ProcedureCode ::= 29 +id-PDUSessionResourceNotify ProcedureCode ::= 30 +id-PrivateMessage ProcedureCode ::= 31 +id-PWSCancel ProcedureCode ::= 32 +id-PWSFailureIndication ProcedureCode ::= 33 +id-PWSRestartIndication ProcedureCode ::= 34 +id-RANConfigurationUpdate ProcedureCode ::= 35 +id-RerouteNASRequest ProcedureCode ::= 36 +id-RRCInactiveTransitionReport ProcedureCode ::= 37 +id-TraceFailureIndication ProcedureCode ::= 38 +id-TraceStart ProcedureCode ::= 39 +id-UEContextModification ProcedureCode ::= 40 +id-UEContextRelease ProcedureCode ::= 41 +id-UEContextReleaseRequest ProcedureCode ::= 42 +id-UERadioCapabilityCheck ProcedureCode ::= 43 +id-UERadioCapabilityInfoIndication ProcedureCode ::= 44 +id-UETNLABindingRelease ProcedureCode ::= 45 +id-UplinkNASTransport ProcedureCode ::= 46 +id-UplinkNonUEAssociatedNRPPaTransport ProcedureCode ::= 47 +id-UplinkRANConfigurationTransfer ProcedureCode ::= 48 +id-UplinkRANStatusTransfer ProcedureCode ::= 49 +id-UplinkUEAssociatedNRPPaTransport ProcedureCode ::= 50 +id-WriteReplaceWarning ProcedureCode ::= 51 +id-SecondaryRATDataUsageReport ProcedureCode ::= 52 +id-UplinkRIMInformationTransfer ProcedureCode ::= 53 +id-DownlinkRIMInformationTransfer ProcedureCode ::= 54 +id-RetrieveUEInformation ProcedureCode ::= 55 +id-UEInformationTransfer ProcedureCode ::= 56 +id-RANCPRelocationIndication ProcedureCode ::= 57 +id-UEContextResume ProcedureCode ::= 58 +id-UEContextSuspend ProcedureCode ::= 59 +id-UERadioCapabilityIDMapping ProcedureCode ::= 60 +id-HandoverSuccess ProcedureCode ::= 61 +id-UplinkRANEarlyStatusTransfer ProcedureCode ::= 62 +id-DownlinkRANEarlyStatusTransfer ProcedureCode ::= 63 +id-AMFCPRelocationIndication ProcedureCode ::= 64 +id-ConnectionEstablishmentIndication ProcedureCode ::= 65 + +-- ************************************************************** +-- +-- Extension constants +-- +-- ************************************************************** + +maxPrivateIEs INTEGER ::= 65535 +maxProtocolExtensions INTEGER ::= 65535 +maxProtocolIEs INTEGER ::= 65535 + +-- ************************************************************** +-- +-- Lists +-- +-- ************************************************************** + + maxnoofAllowedAreas INTEGER ::= 16 + maxnoofAllowedCAGsperPLMN INTEGER ::= 256 + maxnoofAllowedS-NSSAIs INTEGER ::= 8 + maxnoofBluetoothName INTEGER ::= 4 + maxnoofBPLMNs INTEGER ::= 12 + maxnoofCAGSperCell INTEGER ::= 64 + maxnoofCellIDforMDT INTEGER ::= 32 + maxnoofCellIDforWarning INTEGER ::= 65535 + maxnoofCellinAoI INTEGER ::= 256 + maxnoofCellinEAI INTEGER ::= 65535 + maxnoofCellinTAI INTEGER ::= 65535 + maxnoofCellsingNB INTEGER ::= 16384 + maxnoofCellsinngeNB INTEGER ::= 256 + maxnoofCellsinUEHistoryInfo INTEGER ::= 16 + maxnoofCellsUEMovingTrajectory INTEGER ::= 16 + maxnoofDRBs INTEGER ::= 32 + maxnoofEmergencyAreaID INTEGER ::= 65535 + maxnoofEAIforRestart INTEGER ::= 256 + maxnoofEPLMNs INTEGER ::= 15 + maxnoofEPLMNsPlusOne INTEGER ::= 16 + maxnoofE-RABs INTEGER ::= 256 + maxnoofErrors INTEGER ::= 256 + maxnoofExtSliceItems INTEGER ::= 65535 + maxnoofForbTACs INTEGER ::= 4096 + maxnoofFreqforMDT INTEGER ::= 8 + maxnoofMDTPLMNs INTEGER ::= 16 + maxnoofMultiConnectivity INTEGER ::= 4 + maxnoofMultiConnectivityMinusOne INTEGER ::= 3 + maxnoofNeighPCIforMDT INTEGER ::= 32 + maxnoofNGConnectionsToReset INTEGER ::= 65536 + maxnoofNRCellBands INTEGER ::= 32 + maxnoofPC5QoSFlows INTEGER ::= 2048 + maxnoofPDUSessions INTEGER ::= 256 + maxnoofPLMNs INTEGER ::= 12 + maxnoofQosFlows INTEGER ::= 64 + maxnoofQosParaSets INTEGER ::= 8 + maxnoofRANNodeinAoI INTEGER ::= 64 + maxnoofRecommendedCells INTEGER ::= 16 + maxnoofRecommendedRANNodes INTEGER ::= 16 + maxnoofAoI INTEGER ::= 64 + maxnoofSensorName INTEGER ::= 3 + maxnoofServedGUAMIs INTEGER ::= 256 + maxnoofSliceItems INTEGER ::= 1024 + maxnoofTACs INTEGER ::= 256 + maxnoofTAforMDT INTEGER ::= 8 + maxnoofTAIforInactive INTEGER ::= 16 + maxnoofTAIforPaging INTEGER ::= 16 + maxnoofTAIforRestart INTEGER ::= 2048 + maxnoofTAIforWarning INTEGER ::= 65535 + maxnoofTAIinAoI INTEGER ::= 16 + maxnoofTimePeriods INTEGER ::= 2 + maxnoofTNLAssociations INTEGER ::= 32 + maxnoofWLANName INTEGER ::= 4 + maxnoofXnExtTLAs INTEGER ::= 16 + maxnoofXnGTP-TLAs INTEGER ::= 16 + maxnoofXnTLAs INTEGER ::= 2 + maxnoofCandidateCells INTEGER ::= 32 + maxNRARFCN INTEGER ::= 3279165 + +-- ************************************************************** +-- +-- IEs +-- +-- ************************************************************** + + id-AllowedNSSAI ProtocolIE-ID ::= 0 + id-AMFName ProtocolIE-ID ::= 1 + id-AMFOverloadResponse ProtocolIE-ID ::= 2 + id-AMFSetID ProtocolIE-ID ::= 3 + id-AMF-TNLAssociationFailedToSetupList ProtocolIE-ID ::= 4 + id-AMF-TNLAssociationSetupList ProtocolIE-ID ::= 5 + id-AMF-TNLAssociationToAddList ProtocolIE-ID ::= 6 + id-AMF-TNLAssociationToRemoveList ProtocolIE-ID ::= 7 + id-AMF-TNLAssociationToUpdateList ProtocolIE-ID ::= 8 + id-AMFTrafficLoadReductionIndication ProtocolIE-ID ::= 9 + id-AMF-UE-NGAP-ID ProtocolIE-ID ::= 10 + id-AssistanceDataForPaging ProtocolIE-ID ::= 11 + id-BroadcastCancelledAreaList ProtocolIE-ID ::= 12 + id-BroadcastCompletedAreaList ProtocolIE-ID ::= 13 + id-CancelAllWarningMessages ProtocolIE-ID ::= 14 + id-Cause ProtocolIE-ID ::= 15 + id-CellIDListForRestart ProtocolIE-ID ::= 16 + id-ConcurrentWarningMessageInd ProtocolIE-ID ::= 17 + id-CoreNetworkAssistanceInformationForInactive ProtocolIE-ID ::= 18 + id-CriticalityDiagnostics ProtocolIE-ID ::= 19 + id-DataCodingScheme ProtocolIE-ID ::= 20 + id-DefaultPagingDRX ProtocolIE-ID ::= 21 + id-DirectForwardingPathAvailability ProtocolIE-ID ::= 22 + id-EmergencyAreaIDListForRestart ProtocolIE-ID ::= 23 + id-EmergencyFallbackIndicator ProtocolIE-ID ::= 24 + id-EUTRA-CGI ProtocolIE-ID ::= 25 + id-FiveG-S-TMSI ProtocolIE-ID ::= 26 + id-GlobalRANNodeID ProtocolIE-ID ::= 27 + id-GUAMI ProtocolIE-ID ::= 28 + id-HandoverType ProtocolIE-ID ::= 29 + id-IMSVoiceSupportIndicator ProtocolIE-ID ::= 30 + id-IndexToRFSP ProtocolIE-ID ::= 31 + id-InfoOnRecommendedCellsAndRANNodesForPaging ProtocolIE-ID ::= 32 + id-LocationReportingRequestType ProtocolIE-ID ::= 33 + id-MaskedIMEISV ProtocolIE-ID ::= 34 + id-MessageIdentifier ProtocolIE-ID ::= 35 + id-MobilityRestrictionList ProtocolIE-ID ::= 36 + id-NASC ProtocolIE-ID ::= 37 + id-NAS-PDU ProtocolIE-ID ::= 38 + id-NASSecurityParametersFromNGRAN ProtocolIE-ID ::= 39 + id-NewAMF-UE-NGAP-ID ProtocolIE-ID ::= 40 + id-NewSecurityContextInd ProtocolIE-ID ::= 41 + id-NGAP-Message ProtocolIE-ID ::= 42 + id-NGRAN-CGI ProtocolIE-ID ::= 43 + id-NGRANTraceID ProtocolIE-ID ::= 44 + id-NR-CGI ProtocolIE-ID ::= 45 + id-NRPPa-PDU ProtocolIE-ID ::= 46 + id-NumberOfBroadcastsRequested ProtocolIE-ID ::= 47 + id-OldAMF ProtocolIE-ID ::= 48 + id-OverloadStartNSSAIList ProtocolIE-ID ::= 49 + id-PagingDRX ProtocolIE-ID ::= 50 + id-PagingOrigin ProtocolIE-ID ::= 51 + id-PagingPriority ProtocolIE-ID ::= 52 + id-PDUSessionResourceAdmittedList ProtocolIE-ID ::= 53 + id-PDUSessionResourceFailedToModifyListModRes ProtocolIE-ID ::= 54 + id-PDUSessionResourceFailedToSetupListCxtRes ProtocolIE-ID ::= 55 + id-PDUSessionResourceFailedToSetupListHOAck ProtocolIE-ID ::= 56 + id-PDUSessionResourceFailedToSetupListPSReq ProtocolIE-ID ::= 57 + id-PDUSessionResourceFailedToSetupListSURes ProtocolIE-ID ::= 58 + id-PDUSessionResourceHandoverList ProtocolIE-ID ::= 59 + id-PDUSessionResourceListCxtRelCpl ProtocolIE-ID ::= 60 + id-PDUSessionResourceListHORqd ProtocolIE-ID ::= 61 + id-PDUSessionResourceModifyListModCfm ProtocolIE-ID ::= 62 + id-PDUSessionResourceModifyListModInd ProtocolIE-ID ::= 63 + id-PDUSessionResourceModifyListModReq ProtocolIE-ID ::= 64 + id-PDUSessionResourceModifyListModRes ProtocolIE-ID ::= 65 + id-PDUSessionResourceNotifyList ProtocolIE-ID ::= 66 + id-PDUSessionResourceReleasedListNot ProtocolIE-ID ::= 67 + id-PDUSessionResourceReleasedListPSAck ProtocolIE-ID ::= 68 + id-PDUSessionResourceReleasedListPSFail ProtocolIE-ID ::= 69 + id-PDUSessionResourceReleasedListRelRes ProtocolIE-ID ::= 70 + id-PDUSessionResourceSetupListCxtReq ProtocolIE-ID ::= 71 + id-PDUSessionResourceSetupListCxtRes ProtocolIE-ID ::= 72 + id-PDUSessionResourceSetupListHOReq ProtocolIE-ID ::= 73 + id-PDUSessionResourceSetupListSUReq ProtocolIE-ID ::= 74 + id-PDUSessionResourceSetupListSURes ProtocolIE-ID ::= 75 + id-PDUSessionResourceToBeSwitchedDLList ProtocolIE-ID ::= 76 + id-PDUSessionResourceSwitchedList ProtocolIE-ID ::= 77 + id-PDUSessionResourceToReleaseListHOCmd ProtocolIE-ID ::= 78 + id-PDUSessionResourceToReleaseListRelCmd ProtocolIE-ID ::= 79 + id-PLMNSupportList ProtocolIE-ID ::= 80 + id-PWSFailedCellIDList ProtocolIE-ID ::= 81 + id-RANNodeName ProtocolIE-ID ::= 82 + id-RANPagingPriority ProtocolIE-ID ::= 83 + id-RANStatusTransfer-TransparentContainer ProtocolIE-ID ::= 84 + id-RAN-UE-NGAP-ID ProtocolIE-ID ::= 85 + id-RelativeAMFCapacity ProtocolIE-ID ::= 86 + id-RepetitionPeriod ProtocolIE-ID ::= 87 + id-ResetType ProtocolIE-ID ::= 88 + id-RoutingID ProtocolIE-ID ::= 89 + id-RRCEstablishmentCause ProtocolIE-ID ::= 90 + id-RRCInactiveTransitionReportRequest ProtocolIE-ID ::= 91 + id-RRCState ProtocolIE-ID ::= 92 + id-SecurityContext ProtocolIE-ID ::= 93 + id-SecurityKey ProtocolIE-ID ::= 94 + id-SerialNumber ProtocolIE-ID ::= 95 + id-ServedGUAMIList ProtocolIE-ID ::= 96 + id-SliceSupportList ProtocolIE-ID ::= 97 + id-SONConfigurationTransferDL ProtocolIE-ID ::= 98 + id-SONConfigurationTransferUL ProtocolIE-ID ::= 99 + id-SourceAMF-UE-NGAP-ID ProtocolIE-ID ::= 100 + id-SourceToTarget-TransparentContainer ProtocolIE-ID ::= 101 + id-SupportedTAList ProtocolIE-ID ::= 102 + id-TAIListForPaging ProtocolIE-ID ::= 103 + id-TAIListForRestart ProtocolIE-ID ::= 104 + id-TargetID ProtocolIE-ID ::= 105 + id-TargetToSource-TransparentContainer ProtocolIE-ID ::= 106 + id-TimeToWait ProtocolIE-ID ::= 107 + id-TraceActivation ProtocolIE-ID ::= 108 + id-TraceCollectionEntityIPAddress ProtocolIE-ID ::= 109 + id-UEAggregateMaximumBitRate ProtocolIE-ID ::= 110 + id-UE-associatedLogicalNG-connectionList ProtocolIE-ID ::= 111 + id-UEContextRequest ProtocolIE-ID ::= 112 + id-UE-NGAP-IDs ProtocolIE-ID ::= 114 + id-UEPagingIdentity ProtocolIE-ID ::= 115 + id-UEPresenceInAreaOfInterestList ProtocolIE-ID ::= 116 + id-UERadioCapability ProtocolIE-ID ::= 117 + id-UERadioCapabilityForPaging ProtocolIE-ID ::= 118 + id-UESecurityCapabilities ProtocolIE-ID ::= 119 + id-UnavailableGUAMIList ProtocolIE-ID ::= 120 + id-UserLocationInformation ProtocolIE-ID ::= 121 + id-WarningAreaList ProtocolIE-ID ::= 122 + id-WarningMessageContents ProtocolIE-ID ::= 123 + id-WarningSecurityInfo ProtocolIE-ID ::= 124 + id-WarningType ProtocolIE-ID ::= 125 + id-AdditionalUL-NGU-UP-TNLInformation ProtocolIE-ID ::= 126 + id-DataForwardingNotPossible ProtocolIE-ID ::= 127 + id-DL-NGU-UP-TNLInformation ProtocolIE-ID ::= 128 + id-NetworkInstance ProtocolIE-ID ::= 129 + id-PDUSessionAggregateMaximumBitRate ProtocolIE-ID ::= 130 + id-PDUSessionResourceFailedToModifyListModCfm ProtocolIE-ID ::= 131 + id-PDUSessionResourceFailedToSetupListCxtFail ProtocolIE-ID ::= 132 + id-PDUSessionResourceListCxtRelReq ProtocolIE-ID ::= 133 + id-PDUSessionType ProtocolIE-ID ::= 134 + id-QosFlowAddOrModifyRequestList ProtocolIE-ID ::= 135 + id-QosFlowSetupRequestList ProtocolIE-ID ::= 136 + id-QosFlowToReleaseList ProtocolIE-ID ::= 137 + id-SecurityIndication ProtocolIE-ID ::= 138 + id-UL-NGU-UP-TNLInformation ProtocolIE-ID ::= 139 + id-UL-NGU-UP-TNLModifyList ProtocolIE-ID ::= 140 + id-WarningAreaCoordinates ProtocolIE-ID ::= 141 + id-PDUSessionResourceSecondaryRATUsageList ProtocolIE-ID ::= 142 + id-HandoverFlag ProtocolIE-ID ::= 143 + id-SecondaryRATUsageInformation ProtocolIE-ID ::= 144 + id-PDUSessionResourceReleaseResponseTransfer ProtocolIE-ID ::= 145 + id-RedirectionVoiceFallback ProtocolIE-ID ::= 146 + id-UERetentionInformation ProtocolIE-ID ::= 147 + id-S-NSSAI ProtocolIE-ID ::= 148 + id-PSCellInformation ProtocolIE-ID ::= 149 + id-LastEUTRAN-PLMNIdentity ProtocolIE-ID ::= 150 + id-MaximumIntegrityProtectedDataRate-DL ProtocolIE-ID ::= 151 + id-AdditionalDLForwardingUPTNLInformation ProtocolIE-ID ::= 152 + id-AdditionalDLUPTNLInformationForHOList ProtocolIE-ID ::= 153 + id-AdditionalNGU-UP-TNLInformation ProtocolIE-ID ::= 154 + id-AdditionalDLQosFlowPerTNLInformation ProtocolIE-ID ::= 155 + id-SecurityResult ProtocolIE-ID ::= 156 + id-ENDC-SONConfigurationTransferDL ProtocolIE-ID ::= 157 + id-ENDC-SONConfigurationTransferUL ProtocolIE-ID ::= 158 + id-OldAssociatedQosFlowList-ULendmarkerexpected ProtocolIE-ID ::= 159 + id-CNTypeRestrictionsForEquivalent ProtocolIE-ID ::= 160 + id-CNTypeRestrictionsForServing ProtocolIE-ID ::= 161 + id-NewGUAMI ProtocolIE-ID ::= 162 + id-ULForwarding ProtocolIE-ID ::= 163 + id-ULForwardingUP-TNLInformation ProtocolIE-ID ::= 164 + id-CNAssistedRANTuning ProtocolIE-ID ::= 165 + id-CommonNetworkInstance ProtocolIE-ID ::= 166 + id-NGRAN-TNLAssociationToRemoveList ProtocolIE-ID ::= 167 + id-TNLAssociationTransportLayerAddressNGRAN ProtocolIE-ID ::= 168 + id-EndpointIPAddressAndPort ProtocolIE-ID ::= 169 + id-LocationReportingAdditionalInfo ProtocolIE-ID ::= 170 + id-SourceToTarget-AMFInformationReroute ProtocolIE-ID ::= 171 + id-AdditionalULForwardingUPTNLInformation ProtocolIE-ID ::= 172 + id-SCTP-TLAs ProtocolIE-ID ::= 173 + id-SelectedPLMNIdentity ProtocolIE-ID ::= 174 + id-RIMInformationTransfer ProtocolIE-ID ::= 175 + id-GUAMIType ProtocolIE-ID ::= 176 + id-SRVCCOperationPossible ProtocolIE-ID ::= 177 + id-TargetRNC-ID ProtocolIE-ID ::= 178 + id-RAT-Information ProtocolIE-ID ::= 179 + id-ExtendedRATRestrictionInformation ProtocolIE-ID ::= 180 + id-QosMonitoringRequest ProtocolIE-ID ::= 181 + id-SgNB-UE-X2AP-ID ProtocolIE-ID ::= 182 + id-AdditionalRedundantDL-NGU-UP-TNLInformation ProtocolIE-ID ::= 183 + id-AdditionalRedundantDLQosFlowPerTNLInformation ProtocolIE-ID ::= 184 + id-AdditionalRedundantNGU-UP-TNLInformation ProtocolIE-ID ::= 185 + id-AdditionalRedundantUL-NGU-UP-TNLInformation ProtocolIE-ID ::= 186 + id-CNPacketDelayBudgetDL ProtocolIE-ID ::= 187 + id-CNPacketDelayBudgetUL ProtocolIE-ID ::= 188 + id-ExtendedPacketDelayBudget ProtocolIE-ID ::= 189 + id-RedundantCommonNetworkInstance ProtocolIE-ID ::= 190 + id-RedundantDL-NGU-TNLInformationReused ProtocolIE-ID ::= 191 + id-RedundantDL-NGU-UP-TNLInformation ProtocolIE-ID ::= 192 + id-RedundantDLQosFlowPerTNLInformation ProtocolIE-ID ::= 193 + id-RedundantQosFlowIndicator ProtocolIE-ID ::= 194 + id-RedundantUL-NGU-UP-TNLInformation ProtocolIE-ID ::= 195 + id-TSCTrafficCharacteristics ProtocolIE-ID ::= 196 + id-RedundantPDUSessionInformation ProtocolIE-ID ::= 197 + id-UsedRSNInformation ProtocolIE-ID ::= 198 + id-IAB-Authorized ProtocolIE-ID ::= 199 + id-IAB-Supported ProtocolIE-ID ::= 200 + id-IABNodeIndication ProtocolIE-ID ::= 201 + id-NB-IoT-PagingDRX ProtocolIE-ID ::= 202 + id-NB-IoT-Paging-eDRXInfo ProtocolIE-ID ::= 203 + id-NB-IoT-DefaultPagingDRX ProtocolIE-ID ::= 204 + id-Enhanced-CoverageRestriction ProtocolIE-ID ::= 205 + id-Extended-ConnectedTime ProtocolIE-ID ::= 206 + id-PagingAssisDataforCEcapabUE ProtocolIE-ID ::= 207 + id-WUS-Assistance-Information ProtocolIE-ID ::= 208 + id-UE-DifferentiationInfo ProtocolIE-ID ::= 209 + id-NB-IoT-UEPriority ProtocolIE-ID ::= 210 + id-UL-CP-SecurityInformation ProtocolIE-ID ::= 211 + id-DL-CP-SecurityInformation ProtocolIE-ID ::= 212 + id-TAI ProtocolIE-ID ::= 213 + id-UERadioCapabilityForPagingOfNB-IoT ProtocolIE-ID ::= 214 + id-LTEV2XServicesAuthorized ProtocolIE-ID ::= 215 + id-NRV2XServicesAuthorized ProtocolIE-ID ::= 216 + id-LTEUESidelinkAggregateMaximumBitrate ProtocolIE-ID ::= 217 + id-NRUESidelinkAggregateMaximumBitrate ProtocolIE-ID ::= 218 + id-PC5QoSParameters ProtocolIE-ID ::= 219 + id-AlternativeQoSParaSetList ProtocolIE-ID ::= 220 + id-CurrentQoSParaSetIndex ProtocolIE-ID ::= 221 + id-CEmodeBrestricted ProtocolIE-ID ::= 222 + id-PagingeDRXInformation ProtocolIE-ID ::= 223 + id-CEmodeBSupport-Indicator ProtocolIE-ID ::= 224 + id-LTEM-Indication ProtocolIE-ID ::= 225 + id-EndIndication ProtocolIE-ID ::= 226 + id-EDT-Session ProtocolIE-ID ::= 227 + id-UECapabilityInfoRequest ProtocolIE-ID ::= 228 + id-PDUSessionResourceFailedToResumeListRESReq ProtocolIE-ID ::= 229 + id-PDUSessionResourceFailedToResumeListRESRes ProtocolIE-ID ::= 230 + id-PDUSessionResourceSuspendListSUSReq ProtocolIE-ID ::= 231 + id-PDUSessionResourceResumeListRESReq ProtocolIE-ID ::= 232 + id-PDUSessionResourceResumeListRESRes ProtocolIE-ID ::= 233 + id-UE-UP-CIoT-Support ProtocolIE-ID ::= 234 + id-Suspend-Request-Indication ProtocolIE-ID ::= 235 + id-Suspend-Response-Indication ProtocolIE-ID ::= 236 + id-RRC-Resume-Cause ProtocolIE-ID ::= 237 + id-RGLevelWirelineAccessCharacteristics ProtocolIE-ID ::= 238 + id-W-AGFIdentityInformation ProtocolIE-ID ::= 239 + id-GlobalTNGF-ID ProtocolIE-ID ::= 240 + id-GlobalTWIF-ID ProtocolIE-ID ::= 241 + id-GlobalW-AGF-ID ProtocolIE-ID ::= 242 + id-UserLocationInformationW-AGF ProtocolIE-ID ::= 243 + id-UserLocationInformationTNGF ProtocolIE-ID ::= 244 + id-AuthenticatedIndication ProtocolIE-ID ::= 245 + id-TNGFIdentityInformation ProtocolIE-ID ::= 246 + id-TWIFIdentityInformation ProtocolIE-ID ::= 247 + id-UserLocationInformationTWIF ProtocolIE-ID ::= 248 + id-DataForwardingResponseERABList ProtocolIE-ID ::= 249 + id-IntersystemSONConfigurationTransferDL ProtocolIE-ID ::= 250 + id-IntersystemSONConfigurationTransferUL ProtocolIE-ID ::= 251 + id-SONInformationReport ProtocolIE-ID ::= 252 + id-UEHistoryInformationFromTheUE ProtocolIE-ID ::= 253 + id-ManagementBasedMDTPLMNList ProtocolIE-ID ::= 254 + id-MDTConfiguration ProtocolIE-ID ::= 255 + id-PrivacyIndicator ProtocolIE-ID ::= 256 + id-TraceCollectionEntityURI ProtocolIE-ID ::= 257 + id-NPN-Support ProtocolIE-ID ::= 258 + id-NPN-AccessInformation ProtocolIE-ID ::= 259 + id-NPN-PagingAssistanceInformation ProtocolIE-ID ::= 260 + id-NPN-MobilityInformation ProtocolIE-ID ::= 261 + id-TargettoSource-Failure-TransparentContainer ProtocolIE-ID ::= 262 + id-NID ProtocolIE-ID ::= 263 + id-UERadioCapabilityID ProtocolIE-ID ::= 264 + id-UERadioCapability-EUTRA-Format ProtocolIE-ID ::= 265 + id-DAPSRequestInfo ProtocolIE-ID ::= 266 + id-DAPSResponseInfoList ProtocolIE-ID ::= 267 + id-EarlyStatusTransfer-TransparentContainer ProtocolIE-ID ::= 268 + id-NotifySourceNGRANNode ProtocolIE-ID ::= 269 + id-ExtendedSliceSupportList ProtocolIE-ID ::= 270 + id-ExtendedTAISliceSupportList ProtocolIE-ID ::= 271 + id-ConfiguredTACIndication ProtocolIE-ID ::= 272 + id-Extended-RANNodeName ProtocolIE-ID ::= 273 + id-Extended-AMFName ProtocolIE-ID ::= 274 + id-GlobalCable-ID ProtocolIE-ID ::= 275 + id-QosMonitoringReportingFrequency ProtocolIE-ID ::= 276 + id-QosFlowParametersList ProtocolIE-ID ::= 277 + id-QosFlowFeedbackList ProtocolIE-ID ::= 278 + id-BurstArrivalTimeDownlink ProtocolIE-ID ::= 279 + id-ExtendedUEIdentityIndexValue ProtocolIE-ID ::= 280 + id-PduSessionExpectedUEActivityBehaviour ProtocolIE-ID ::= 281 + id-MicoAllPLMN ProtocolIE-ID ::= 282 + id-QosFlowFailedToSetupList ProtocolIE-ID ::= 283 + +END +-- ASN1STOP + +9.4.8 Container Definitions +-- ASN1START +-- ************************************************************** +-- +-- Container definitions +-- +-- ************************************************************** + +NGAP-Containers { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +ngran-Access (22) modules (3) ngap (1) version1 (1) ngap-Containers (5) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + Criticality, + Presence, + PrivateIE-ID, + ProtocolExtensionID, + ProtocolIE-ID +FROM NGAP-CommonDataTypes + + maxPrivateIEs, + maxProtocolExtensions, + maxProtocolIEs +FROM NGAP-Constants; + +-- ************************************************************** +-- +-- Class Definition for Protocol IEs +-- +-- ************************************************************** + +NGAP-PROTOCOL-IES ::= CLASS { + &id ProtocolIE-ID UNIQUE, + &criticality Criticality, + &Value, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + TYPE &Value + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Protocol IEs +-- +-- ************************************************************** + +NGAP-PROTOCOL-IES-PAIR ::= CLASS { + &id ProtocolIE-ID UNIQUE, + &firstCriticality Criticality, + &FirstValue, + &secondCriticality Criticality, + &SecondValue, + &presence Presence +} +WITH SYNTAX { + ID &id + FIRST CRITICALITY &firstCriticality + FIRST TYPE &FirstValue + SECOND CRITICALITY &secondCriticality + SECOND TYPE &SecondValue + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Protocol Extensions +-- +-- ************************************************************** + +NGAP-PROTOCOL-EXTENSION ::= CLASS { + &id ProtocolExtensionID UNIQUE, + &criticality Criticality, + &Extension, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + EXTENSION &Extension + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Private IEs +-- +-- ************************************************************** + +NGAP-PRIVATE-IES ::= CLASS { + &id PrivateIE-ID, + &criticality Criticality, + &Value, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + TYPE &Value + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Container for Protocol IEs +-- +-- ************************************************************** + +ProtocolIE-Container {NGAP-PROTOCOL-IES : IEsSetParam} ::= + SEQUENCE (SIZE (0..maxProtocolIEs)) OF + ProtocolIE-Field {{IEsSetParam}} + +ProtocolIE-SingleContainer {NGAP-PROTOCOL-IES : IEsSetParam} ::= + ProtocolIE-Field {{IEsSetParam}} + +ProtocolIE-Field {NGAP-PROTOCOL-IES : IEsSetParam} ::= SEQUENCE { + id NGAP-PROTOCOL-IES.&id ({IEsSetParam}), + criticality NGAP-PROTOCOL-IES.&criticality ({IEsSetParam}{@id}), + value NGAP-PROTOCOL-IES.&Value ({IEsSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container for Protocol IE Pairs +-- +-- ************************************************************** + +ProtocolIE-ContainerPair {NGAP-PROTOCOL-IES-PAIR : IEsSetParam} ::= + SEQUENCE (SIZE (0..maxProtocolIEs)) OF + ProtocolIE-FieldPair {{IEsSetParam}} + +ProtocolIE-FieldPair {NGAP-PROTOCOL-IES-PAIR : IEsSetParam} ::= SEQUENCE { + id NGAP-PROTOCOL-IES-PAIR.&id ({IEsSetParam}), + firstCriticality NGAP-PROTOCOL-IES-PAIR.&firstCriticality ({IEsSetParam}{@id}), + firstValue NGAP-PROTOCOL-IES-PAIR.&FirstValue ({IEsSetParam}{@id}), + secondCriticality NGAP-PROTOCOL-IES-PAIR.&secondCriticality ({IEsSetParam}{@id}), + secondValue NGAP-PROTOCOL-IES-PAIR.&SecondValue ({IEsSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container Lists for Protocol IE Containers +-- +-- ************************************************************** + +ProtocolIE-ContainerList {INTEGER : lowerBound, INTEGER : upperBound, NGAP-PROTOCOL-IES : IEsSetParam} ::= + SEQUENCE (SIZE (lowerBound..upperBound)) OF + ProtocolIE-SingleContainer {{IEsSetParam}} + +ProtocolIE-ContainerPairList {INTEGER : lowerBound, INTEGER : upperBound, NGAP-PROTOCOL-IES-PAIR : IEsSetParam} ::= + SEQUENCE (SIZE (lowerBound..upperBound)) OF + ProtocolIE-ContainerPair {{IEsSetParam}} + +-- ************************************************************** +-- +-- Container for Protocol Extensions +-- +-- ************************************************************** + +ProtocolExtensionContainer {NGAP-PROTOCOL-EXTENSION : ExtensionSetParam} ::= + SEQUENCE (SIZE (1..maxProtocolExtensions)) OF + ProtocolExtensionField {{ExtensionSetParam}} + +ProtocolExtensionField {NGAP-PROTOCOL-EXTENSION : ExtensionSetParam} ::= SEQUENCE { + id NGAP-PROTOCOL-EXTENSION.&id ({ExtensionSetParam}), + criticality NGAP-PROTOCOL-EXTENSION.&criticality ({ExtensionSetParam}{@id}), + extensionValue NGAP-PROTOCOL-EXTENSION.&Extension ({ExtensionSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container for Private IEs +-- +-- ************************************************************** + +PrivateIE-Container {NGAP-PRIVATE-IES : IEsSetParam } ::= + SEQUENCE (SIZE (1..maxPrivateIEs)) OF + PrivateIE-Field {{IEsSetParam}} + +PrivateIE-Field {NGAP-PRIVATE-IES : IEsSetParam} ::= SEQUENCE { + id NGAP-PRIVATE-IES.&id ({IEsSetParam}), + criticality NGAP-PRIVATE-IES.&criticality ({IEsSetParam}{@id}), + value NGAP-PRIVATE-IES.&Value ({IEsSetParam}{@id}) +} + +END +-- ASN1STOP + + diff --git a/lib/asn1c/support/s1ap-r16.7.0/36413-g70.asn b/lib/asn1c/support/s1ap-r16.7.0/36413-g70.asn new file mode 100644 index 000000000..5f59383a5 --- /dev/null +++ b/lib/asn1c/support/s1ap-r16.7.0/36413-g70.asn @@ -0,0 +1,7922 @@ +-- ************************************************************** +-- +-- Elementary Procedure definitions +-- +-- ************************************************************** + +S1AP-PDU-Descriptions { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-PDU-Descriptions (0)} + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + Criticality, + ProcedureCode +FROM S1AP-CommonDataTypes + + CellTrafficTrace, + DeactivateTrace, + DownlinkUEAssociatedLPPaTransport, + DownlinkNASTransport, + DownlinkNonUEAssociatedLPPaTransport, + DownlinkS1cdma2000tunnelling, + ENBDirectInformationTransfer, + ENBStatusTransfer, + ENBConfigurationUpdate, + ENBConfigurationUpdateAcknowledge, + ENBConfigurationUpdateFailure, + ErrorIndication, + HandoverCancel, + HandoverCancelAcknowledge, + HandoverCommand, + HandoverFailure, + HandoverNotify, + HandoverPreparationFailure, + HandoverRequest, + HandoverRequestAcknowledge, + HandoverRequired, + InitialContextSetupFailure, + InitialContextSetupRequest, + InitialContextSetupResponse, + InitialUEMessage, + KillRequest, + KillResponse, + LocationReportingControl, + LocationReportingFailureIndication, + LocationReport, + MMEConfigurationUpdate, + MMEConfigurationUpdateAcknowledge, + MMEConfigurationUpdateFailure, + MMEDirectInformationTransfer, + MMEStatusTransfer, + NASNonDeliveryIndication, + OverloadStart, + OverloadStop, + Paging, + PathSwitchRequest, + PathSwitchRequestAcknowledge, + PathSwitchRequestFailure, + PrivateMessage, + Reset, + ResetAcknowledge, + S1SetupFailure, + S1SetupRequest, + S1SetupResponse, + E-RABModifyRequest, + E-RABModifyResponse, + E-RABModificationIndication, + E-RABModificationConfirm, + E-RABReleaseCommand, + E-RABReleaseResponse, + E-RABReleaseIndication, + E-RABSetupRequest, + E-RABSetupResponse, + TraceFailureIndication, + TraceStart, + UECapabilityInfoIndication, + UEContextModificationFailure, + UEContextModificationRequest, + UEContextModificationResponse, + UEContextReleaseCommand, + UEContextReleaseComplete, + UEContextReleaseRequest, + UERadioCapabilityMatchRequest, + UERadioCapabilityMatchResponse, + UplinkUEAssociatedLPPaTransport, + UplinkNASTransport, + UplinkNonUEAssociatedLPPaTransport, + UplinkS1cdma2000tunnelling, + WriteReplaceWarningRequest, + WriteReplaceWarningResponse, + ENBConfigurationTransfer, + MMEConfigurationTransfer, + PWSRestartIndication, + UEContextModificationIndication, + UEContextModificationConfirm, + RerouteNASRequest, + PWSFailureIndication, + UEContextSuspendRequest, + UEContextSuspendResponse, + UEContextResumeRequest, + UEContextResumeResponse, + UEContextResumeFailure, + ConnectionEstablishmentIndication, + NASDeliveryIndication, + RetrieveUEInformation, + UEInformationTransfer, + ENBCPRelocationIndication, + MMECPRelocationIndication, + SecondaryRATDataUsageReport, + UERadioCapabilityIDMappingRequest, + UERadioCapabilityIDMappingResponse, + HandoverSuccess, + ENBEarlyStatusTransfer, + MMEEarlyStatusTransfer + + +FROM S1AP-PDU-Contents + + id-CellTrafficTrace, + id-DeactivateTrace, + id-downlinkUEAssociatedLPPaTransport, + id-downlinkNASTransport, + id-downlinkNonUEAssociatedLPPaTransport, + id-DownlinkS1cdma2000tunnelling, + id-eNBStatusTransfer, + id-ErrorIndication, + id-HandoverCancel, + id-HandoverNotification, + id-HandoverPreparation, + id-HandoverResourceAllocation, + id-InitialContextSetup, + id-initialUEMessage, + id-ENBConfigurationUpdate, + id-Kill, + id-LocationReportingControl, + id-LocationReportingFailureIndication, + id-LocationReport, + id-eNBDirectInformationTransfer, + id-MMEConfigurationUpdate, + id-MMEDirectInformationTransfer, + id-MMEStatusTransfer, + id-NASNonDeliveryIndication, + id-OverloadStart, + id-OverloadStop, + id-Paging, + id-PathSwitchRequest, + id-PrivateMessage, + id-Reset, + id-S1Setup, + id-E-RABModify, + id-E-RABModificationIndication, + id-E-RABRelease, + id-E-RABReleaseIndication, + id-E-RABSetup, + id-TraceFailureIndication, + id-TraceStart, + id-UECapabilityInfoIndication, + id-UEContextModification, + id-UEContextRelease, + id-UEContextReleaseRequest, + id-UERadioCapabilityMatch, + id-uplinkUEAssociatedLPPaTransport, + id-uplinkNASTransport, + id-uplinkNonUEAssociatedLPPaTransport, + id-UplinkS1cdma2000tunnelling, + id-WriteReplaceWarning, + id-eNBConfigurationTransfer, + id-MMEConfigurationTransfer, + id-PWSRestartIndication, + id-UEContextModificationIndication, + id-RerouteNASRequest, + id-PWSFailureIndication, + id-UEContextSuspend, + id-UEContextResume, + id-ConnectionEstablishmentIndication, + id-NASDeliveryIndication, + id-RetrieveUEInformation, + id-UEInformationTransfer, + id-eNBCPRelocationIndication, + id-MMECPRelocationIndication, + id-SecondaryRATDataUsageReport, + id-UERadioCapabilityIDMapping, + id-HandoverSuccess, + id-eNBEarlyStatusTransfer, + id-MMEEarlyStatusTransfer + + +FROM S1AP-Constants; + + +-- ************************************************************** +-- +-- Interface Elementary Procedure Class +-- +-- ************************************************************** + +S1AP-ELEMENTARY-PROCEDURE ::= CLASS { + &InitiatingMessage , + &SuccessfulOutcome OPTIONAL, + &UnsuccessfulOutcome OPTIONAL, + &procedureCode ProcedureCode UNIQUE, + &criticality Criticality DEFAULT ignore +} +WITH SYNTAX { + INITIATING MESSAGE &InitiatingMessage + [SUCCESSFUL OUTCOME &SuccessfulOutcome] + [UNSUCCESSFUL OUTCOME &UnsuccessfulOutcome] + PROCEDURE CODE &procedureCode + [CRITICALITY &criticality] +} + +-- ************************************************************** +-- +-- Interface PDU Definition +-- +-- ************************************************************** + +S1AP-PDU ::= CHOICE { + initiatingMessage InitiatingMessage, + successfulOutcome SuccessfulOutcome, + unsuccessfulOutcome UnsuccessfulOutcome, + ... +} + +InitiatingMessage ::= SEQUENCE { + procedureCode S1AP-ELEMENTARY-PROCEDURE.&procedureCode ({S1AP-ELEMENTARY-PROCEDURES}), + criticality S1AP-ELEMENTARY-PROCEDURE.&criticality ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value S1AP-ELEMENTARY-PROCEDURE.&InitiatingMessage ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +SuccessfulOutcome ::= SEQUENCE { + procedureCode S1AP-ELEMENTARY-PROCEDURE.&procedureCode ({S1AP-ELEMENTARY-PROCEDURES}), + criticality S1AP-ELEMENTARY-PROCEDURE.&criticality ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value S1AP-ELEMENTARY-PROCEDURE.&SuccessfulOutcome ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +UnsuccessfulOutcome ::= SEQUENCE { + procedureCode S1AP-ELEMENTARY-PROCEDURE.&procedureCode ({S1AP-ELEMENTARY-PROCEDURES}), + criticality S1AP-ELEMENTARY-PROCEDURE.&criticality ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value S1AP-ELEMENTARY-PROCEDURE.&UnsuccessfulOutcome ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +-- ************************************************************** +-- +-- Interface Elementary Procedure List +-- +-- ************************************************************** + +S1AP-ELEMENTARY-PROCEDURES S1AP-ELEMENTARY-PROCEDURE ::= { + S1AP-ELEMENTARY-PROCEDURES-CLASS-1 | + S1AP-ELEMENTARY-PROCEDURES-CLASS-2, + ... +} + + +S1AP-ELEMENTARY-PROCEDURES-CLASS-1 S1AP-ELEMENTARY-PROCEDURE ::= { + handoverPreparation | + handoverResourceAllocation | + pathSwitchRequest | + e-RABSetup | + e-RABModify | + e-RABRelease | + initialContextSetup | + handoverCancel | + kill | + reset | + s1Setup | + uEContextModification | + uEContextRelease | + eNBConfigurationUpdate | + mMEConfigurationUpdate | + writeReplaceWarning , + ..., + uERadioCapabilityMatch | + e-RABModificationIndication | + uEContextModificationIndication | + uEContextSuspend | + uEContextResume | + uERadioCapabilityIDMapping +} + +S1AP-ELEMENTARY-PROCEDURES-CLASS-2 S1AP-ELEMENTARY-PROCEDURE ::= { + handoverNotification | + e-RABReleaseIndication | + paging | + downlinkNASTransport | + initialUEMessage | + uplinkNASTransport | + errorIndication | + nASNonDeliveryIndication | + uEContextReleaseRequest | + downlinkS1cdma2000tunnelling | + uplinkS1cdma2000tunnelling | + uECapabilityInfoIndication | + eNBStatusTransfer | + mMEStatusTransfer | + deactivateTrace | + traceStart | + traceFailureIndication | + cellTrafficTrace | + locationReportingControl | + locationReportingFailureIndication | + locationReport | + overloadStart | + overloadStop | + eNBDirectInformationTransfer | + mMEDirectInformationTransfer | + eNBConfigurationTransfer | + mMEConfigurationTransfer | + privateMessage , + ..., + downlinkUEAssociatedLPPaTransport | + uplinkUEAssociatedLPPaTransport | + downlinkNonUEAssociatedLPPaTransport | + uplinkNonUEAssociatedLPPaTransport | + pWSRestartIndication | + rerouteNASRequest | + pWSFailureIndication | + connectionEstablishmentIndication | + nASDeliveryIndication | + retrieveUEInformation | + uEInformationTransfer | + eNBCPRelocationIndication | + mMECPRelocationIndication | + secondaryRATDataUsageReport | + handoverSuccess | + eNBEarlyStatusTransfer | + mMEEarlyStatusTransfer +} + +-- ************************************************************** +-- +-- Interface Elementary Procedures +-- +-- ************************************************************** + +handoverPreparation S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverRequired + SUCCESSFUL OUTCOME HandoverCommand + UNSUCCESSFUL OUTCOME HandoverPreparationFailure + PROCEDURE CODE id-HandoverPreparation + CRITICALITY reject +} + +handoverResourceAllocation S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverRequest + SUCCESSFUL OUTCOME HandoverRequestAcknowledge + UNSUCCESSFUL OUTCOME HandoverFailure + PROCEDURE CODE id-HandoverResourceAllocation + CRITICALITY reject +} + +handoverNotification S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverNotify + PROCEDURE CODE id-HandoverNotification + CRITICALITY ignore +} + +pathSwitchRequest S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PathSwitchRequest + SUCCESSFUL OUTCOME PathSwitchRequestAcknowledge + UNSUCCESSFUL OUTCOME PathSwitchRequestFailure + PROCEDURE CODE id-PathSwitchRequest + CRITICALITY reject +} + +e-RABSetup S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABSetupRequest + SUCCESSFUL OUTCOME E-RABSetupResponse + PROCEDURE CODE id-E-RABSetup + CRITICALITY reject +} + +e-RABModify S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABModifyRequest + SUCCESSFUL OUTCOME E-RABModifyResponse + PROCEDURE CODE id-E-RABModify + CRITICALITY reject +} + +e-RABRelease S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABReleaseCommand + SUCCESSFUL OUTCOME E-RABReleaseResponse + PROCEDURE CODE id-E-RABRelease + CRITICALITY reject +} + +e-RABReleaseIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABReleaseIndication + PROCEDURE CODE id-E-RABReleaseIndication + CRITICALITY ignore +} + +initialContextSetup S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE InitialContextSetupRequest + SUCCESSFUL OUTCOME InitialContextSetupResponse + UNSUCCESSFUL OUTCOME InitialContextSetupFailure + PROCEDURE CODE id-InitialContextSetup + CRITICALITY reject +} + +uEContextReleaseRequest S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextReleaseRequest + PROCEDURE CODE id-UEContextReleaseRequest + CRITICALITY ignore +} + +paging S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE Paging + PROCEDURE CODE id-Paging + CRITICALITY ignore +} + +downlinkNASTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkNASTransport + PROCEDURE CODE id-downlinkNASTransport + CRITICALITY ignore +} + +initialUEMessage S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE InitialUEMessage + PROCEDURE CODE id-initialUEMessage + CRITICALITY ignore +} + +uplinkNASTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkNASTransport + PROCEDURE CODE id-uplinkNASTransport + CRITICALITY ignore +} +nASNonDeliveryIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NASNonDeliveryIndication + PROCEDURE CODE id-NASNonDeliveryIndication + CRITICALITY ignore +} + +handoverCancel S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverCancel + SUCCESSFUL OUTCOME HandoverCancelAcknowledge + PROCEDURE CODE id-HandoverCancel + CRITICALITY reject +} + +reset S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE Reset + SUCCESSFUL OUTCOME ResetAcknowledge + PROCEDURE CODE id-Reset + CRITICALITY reject +} + +errorIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ErrorIndication + PROCEDURE CODE id-ErrorIndication + CRITICALITY ignore +} + +s1Setup S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE S1SetupRequest + SUCCESSFUL OUTCOME S1SetupResponse + UNSUCCESSFUL OUTCOME S1SetupFailure + PROCEDURE CODE id-S1Setup + CRITICALITY reject +} + +eNBConfigurationUpdate S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBConfigurationUpdate + SUCCESSFUL OUTCOME ENBConfigurationUpdateAcknowledge + UNSUCCESSFUL OUTCOME ENBConfigurationUpdateFailure + PROCEDURE CODE id-ENBConfigurationUpdate + CRITICALITY reject +} + +mMEConfigurationUpdate S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEConfigurationUpdate + SUCCESSFUL OUTCOME MMEConfigurationUpdateAcknowledge + UNSUCCESSFUL OUTCOME MMEConfigurationUpdateFailure + PROCEDURE CODE id-MMEConfigurationUpdate + CRITICALITY reject +} + +downlinkS1cdma2000tunnelling S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkS1cdma2000tunnelling + PROCEDURE CODE id-DownlinkS1cdma2000tunnelling + CRITICALITY ignore +} + +uplinkS1cdma2000tunnelling S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkS1cdma2000tunnelling + PROCEDURE CODE id-UplinkS1cdma2000tunnelling + CRITICALITY ignore +} + +uEContextModification S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextModificationRequest + SUCCESSFUL OUTCOME UEContextModificationResponse + UNSUCCESSFUL OUTCOME UEContextModificationFailure + PROCEDURE CODE id-UEContextModification + CRITICALITY reject +} + +uECapabilityInfoIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UECapabilityInfoIndication + PROCEDURE CODE id-UECapabilityInfoIndication + CRITICALITY ignore +} + +uEContextRelease S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextReleaseCommand + SUCCESSFUL OUTCOME UEContextReleaseComplete + PROCEDURE CODE id-UEContextRelease + CRITICALITY reject +} + +eNBStatusTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBStatusTransfer + PROCEDURE CODE id-eNBStatusTransfer + CRITICALITY ignore +} + +mMEStatusTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEStatusTransfer + PROCEDURE CODE id-MMEStatusTransfer + CRITICALITY ignore +} + +deactivateTrace S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DeactivateTrace + PROCEDURE CODE id-DeactivateTrace + CRITICALITY ignore +} + +traceStart S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE TraceStart + PROCEDURE CODE id-TraceStart + CRITICALITY ignore +} + +traceFailureIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE TraceFailureIndication + PROCEDURE CODE id-TraceFailureIndication + CRITICALITY ignore +} +cellTrafficTrace S1AP-ELEMENTARY-PROCEDURE ::={ +INITIATING MESSAGE CellTrafficTrace +PROCEDURE CODE id-CellTrafficTrace +CRITICALITY ignore +} + +locationReportingControl S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReportingControl + PROCEDURE CODE id-LocationReportingControl + CRITICALITY ignore +} + +locationReportingFailureIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReportingFailureIndication + PROCEDURE CODE id-LocationReportingFailureIndication + CRITICALITY ignore +} + +locationReport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReport + PROCEDURE CODE id-LocationReport + CRITICALITY ignore +} + +overloadStart S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE OverloadStart + PROCEDURE CODE id-OverloadStart + CRITICALITY ignore +} + +overloadStop S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE OverloadStop + PROCEDURE CODE id-OverloadStop + CRITICALITY reject +} + +writeReplaceWarning S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE WriteReplaceWarningRequest + SUCCESSFUL OUTCOME WriteReplaceWarningResponse + PROCEDURE CODE id-WriteReplaceWarning + CRITICALITY reject +} + +eNBDirectInformationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBDirectInformationTransfer + PROCEDURE CODE id-eNBDirectInformationTransfer + CRITICALITY ignore +} + +mMEDirectInformationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEDirectInformationTransfer + PROCEDURE CODE id-MMEDirectInformationTransfer + CRITICALITY ignore +} + +eNBConfigurationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBConfigurationTransfer + PROCEDURE CODE id-eNBConfigurationTransfer + CRITICALITY ignore +} + +mMEConfigurationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEConfigurationTransfer + PROCEDURE CODE id-MMEConfigurationTransfer + CRITICALITY ignore +} + + +privateMessage S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PrivateMessage + PROCEDURE CODE id-PrivateMessage + CRITICALITY ignore +} + +pWSRestartIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSRestartIndication + PROCEDURE CODE id-PWSRestartIndication + CRITICALITY ignore +} + +kill S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE KillRequest + SUCCESSFUL OUTCOME KillResponse + PROCEDURE CODE id-Kill + CRITICALITY reject +} + +downlinkUEAssociatedLPPaTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkUEAssociatedLPPaTransport + PROCEDURE CODE id-downlinkUEAssociatedLPPaTransport + CRITICALITY ignore +} + +uplinkUEAssociatedLPPaTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkUEAssociatedLPPaTransport + PROCEDURE CODE id-uplinkUEAssociatedLPPaTransport + CRITICALITY ignore +} +downlinkNonUEAssociatedLPPaTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkNonUEAssociatedLPPaTransport + PROCEDURE CODE id-downlinkNonUEAssociatedLPPaTransport + CRITICALITY ignore +} + +uplinkNonUEAssociatedLPPaTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkNonUEAssociatedLPPaTransport + PROCEDURE CODE id-uplinkNonUEAssociatedLPPaTransport + CRITICALITY ignore +} + +uERadioCapabilityMatch S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityMatchRequest + SUCCESSFUL OUTCOME UERadioCapabilityMatchResponse + PROCEDURE CODE id-UERadioCapabilityMatch + CRITICALITY reject +} + +e-RABModificationIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABModificationIndication + SUCCESSFUL OUTCOME E-RABModificationConfirm + PROCEDURE CODE id-E-RABModificationIndication + CRITICALITY reject +} + +uEContextModificationIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextModificationIndication + SUCCESSFUL OUTCOME UEContextModificationConfirm + PROCEDURE CODE id-UEContextModificationIndication + CRITICALITY reject +} + +rerouteNASRequest S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RerouteNASRequest + PROCEDURE CODE id-RerouteNASRequest + CRITICALITY reject +} + +pWSFailureIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSFailureIndication + PROCEDURE CODE id-PWSFailureIndication + CRITICALITY ignore +} + +uEContextSuspend S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextSuspendRequest + SUCCESSFUL OUTCOME UEContextSuspendResponse + PROCEDURE CODE id-UEContextSuspend + CRITICALITY reject +} + +uEContextResume S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextResumeRequest + SUCCESSFUL OUTCOME UEContextResumeResponse + UNSUCCESSFUL OUTCOME UEContextResumeFailure + PROCEDURE CODE id-UEContextResume + CRITICALITY reject +} + +connectionEstablishmentIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ConnectionEstablishmentIndication + PROCEDURE CODE id-ConnectionEstablishmentIndication + CRITICALITY reject +} + +nASDeliveryIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NASDeliveryIndication + PROCEDURE CODE id-NASDeliveryIndication + CRITICALITY ignore +} + +retrieveUEInformation S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RetrieveUEInformation + PROCEDURE CODE id-RetrieveUEInformation + CRITICALITY reject +} + +uEInformationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEInformationTransfer + PROCEDURE CODE id-UEInformationTransfer + CRITICALITY reject +} + +eNBCPRelocationIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBCPRelocationIndication + PROCEDURE CODE id-eNBCPRelocationIndication + CRITICALITY reject +} + +mMECPRelocationIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMECPRelocationIndication + PROCEDURE CODE id-MMECPRelocationIndication + CRITICALITY reject +} + +secondaryRATDataUsageReport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE SecondaryRATDataUsageReport + PROCEDURE CODE id-SecondaryRATDataUsageReport + CRITICALITY ignore +} + +uERadioCapabilityIDMapping S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityIDMappingRequest + SUCCESSFUL OUTCOME UERadioCapabilityIDMappingResponse + PROCEDURE CODE id-UERadioCapabilityIDMapping + CRITICALITY reject +} + +handoverSuccess S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverSuccess + PROCEDURE CODE id-HandoverSuccess + CRITICALITY ignore +} + +eNBEarlyStatusTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBEarlyStatusTransfer + PROCEDURE CODE id-eNBEarlyStatusTransfer + CRITICALITY reject +} + +mMEEarlyStatusTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEEarlyStatusTransfer + PROCEDURE CODE id-MMEEarlyStatusTransfer + CRITICALITY ignore +} + +END + +-- ************************************************************** +-- +-- PDU definitions for S1AP. +-- +-- ************************************************************** + +S1AP-PDU-Contents { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-PDU-Contents (1) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + UEAggregateMaximumBitrate, + BearerType, + Cause, + CellAccessMode, + Cdma2000HORequiredIndication, + Cdma2000HOStatus, + Cdma2000OneXSRVCCInfo, + Cdma2000OneXRAND, + Cdma2000PDU, + Cdma2000RATType, + Cdma2000SectorID, + EUTRANRoundTripDelayEstimationInfo, + CNDomain, + ConcurrentWarningMessageIndicator, + CriticalityDiagnostics, + CSFallbackIndicator, + CSG-Id, + CSG-IdList, + CSGMembershipStatus, + Data-Forwarding-Not-Possible, + Direct-Forwarding-Path-Availability, + Global-ENB-ID, + EUTRAN-CGI, + ENBname, + ENB-StatusTransfer-TransparentContainer, + ENB-UE-S1AP-ID, + ExtendedRepetitionPeriod, + GTP-TEID, + GUMMEI, + GUMMEIType, + HandoverRestrictionList, + HandoverType, + Masked-IMEISV, + LAI, + LPPa-PDU, + ManagementBasedMDTAllowed, + MDTPLMNList, + MMEname, + MMERelaySupportIndicator, + MME-UE-S1AP-ID, + MSClassmark2, + MSClassmark3, + NAS-PDU, + NASSecurityParametersfromE-UTRAN, + NASSecurityParameterstoE-UTRAN, + OverloadResponse, + PagingDRX, + PagingPriority, + PLMNidentity, + ProSeAuthorized, + RIMTransfer, + RelativeMMECapacity, + RequestType, + E-RAB-ID, + E-RABLevelQoSParameters, + E-RABList, + RelayNode-Indicator, + Routing-ID, + SecurityKey, + SecurityContext, + ServedGUMMEIs, + SONConfigurationTransfer, + Source-ToTarget-TransparentContainer, + SourceBSS-ToTargetBSS-TransparentContainer, + SourceeNB-ToTargeteNB-TransparentContainer, + SourceRNC-ToTargetRNC-TransparentContainer, + SubscriberProfileIDforRFP, + SRVCCOperationNotPossible, + SRVCCOperationPossible, + SRVCCHOIndication, + SupportedTAs, + TAI, + Target-ToSource-TransparentContainer, + TargetBSS-ToSourceBSS-TransparentContainer, + TargeteNB-ToSourceeNB-TransparentContainer, + TargetID, + TargetRNC-ToSourceRNC-TransparentContainer, + TimeToWait, + TraceActivation, + TrafficLoadReductionIndication, + E-UTRAN-Trace-ID, + TransportLayerAddress, + UEIdentityIndexValue, + UEPagingID, + UERadioCapability, + UERadioCapabilityForPaging, + UE-RetentionInformation, + UE-S1AP-IDs, + UE-associatedLogicalS1-ConnectionItem, + UESecurityCapabilities, + S-TMSI, + MessageIdentifier, + SerialNumber, + WarningAreaList, + RepetitionPeriod, + NumberofBroadcastRequest, + WarningType, + WarningSecurityInfo, + DataCodingScheme, + WarningMessageContents, + BroadcastCompletedAreaList, + RRC-Establishment-Cause, + BroadcastCancelledAreaList, + PS-ServiceNotAvailable, + GUMMEIList, + Correlation-ID, + GWContextReleaseIndication, + PrivacyIndicator, + VoiceSupportMatchIndicator, + TunnelInformation, + KillAllWarningMessages, + TransportInformation, + LHN-ID, + UserLocationInformation, + AdditionalCSFallbackIndicator, + ECGIListForRestart, + TAIListForRestart, + EmergencyAreaIDListForRestart, + ExpectedUEBehaviour, + Paging-eDRXInformation, + Extended-UEIdentityIndexValue, + MME-Group-ID, + Additional-GUTI, + PWSfailedECGIList, + CellIdentifierAndCELevelForCECapableUEs, + AssistanceDataForPaging, + InformationOnRecommendedCellsAndENBsForPaging, + UE-Usage-Type, + UEUserPlaneCIoTSupportIndicator, + NB-IoT-DefaultPagingDRX, + NB-IoT-Paging-eDRXInformation, + CE-mode-B-SupportIndicator, + NB-IoT-UEIdentityIndexValue, + V2XServicesAuthorized, + DCN-ID, + ServedDCNs, + UESidelinkAggregateMaximumBitrate, + DLNASPDUDeliveryAckRequest, + Coverage-Level, + EnhancedCoverageRestricted, + DL-CP-SecurityInformation, + UL-CP-SecurityInformation, + SecondaryRATDataUsageRequest, + SecondaryRATDataUsageReportList, + HandoverFlag, + NRUESecurityCapabilities, + UE-Application-Layer-Measurement-Capability, + CE-ModeBRestricted, + Packet-LossRate, + UECapabilityInfoRequest, + SourceNgRanNode-ToTargetNgRanNode-TransparentContainer, + TargetNgRanNode-ToSourceNgRanNode-TransparentContainer, + EndIndication, + EDT-Session, + LTE-M-Indication, + AerialUEsubscriptionInformation, + PendingDataIndication, + WarningAreaCoordinates, + Subscription-Based-UE-DifferentiationInfo, + PSCellInformation, + NR-CGI, + ConnectedengNBList, + EN-DCSONConfigurationTransfer, + TimeSinceSecondaryNodeRelease, + AdditionalRRMPriorityIndex, + IAB-Authorized, + IAB-Node-Indication, + IAB-Supported, + DataSize, + Ethernet-Type, + NRV2XServicesAuthorized, + NRUESidelinkAggregateMaximumBitrate, + PC5QoSParameters, + IntersystemSONConfigurationTransfer, + UERadioCapabilityID, + NotifySourceeNB, + ENB-EarlyStatusTransfer-TransparentContainer, + WUS-Assistance-Information, + NB-IoT-PagingDRX + + + + +FROM S1AP-IEs + + PrivateIE-Container{}, + ProtocolExtensionContainer{}, + ProtocolIE-Container{}, + ProtocolIE-ContainerList{}, + ProtocolIE-ContainerPair{}, + ProtocolIE-ContainerPairList{}, + ProtocolIE-SingleContainer{}, + S1AP-PRIVATE-IES, + S1AP-PROTOCOL-EXTENSION, + S1AP-PROTOCOL-IES, + S1AP-PROTOCOL-IES-PAIR +FROM S1AP-Containers + + + id-AssistanceDataForPaging, + id-AerialUEsubscriptionInformation, + id-uEaggregateMaximumBitrate, + id-BearerType, + id-Cause, + id-CellAccessMode, + id-CellIdentifierAndCELevelForCECapableUEs, + id-cdma2000HORequiredIndication, + id-cdma2000HOStatus, + id-cdma2000OneXSRVCCInfo, + id-cdma2000OneXRAND, + id-cdma2000PDU, + id-cdma2000RATType, + id-cdma2000SectorID, + id-EUTRANRoundTripDelayEstimationInfo, + id-CNDomain, + id-ConcurrentWarningMessageIndicator, + id-CriticalityDiagnostics, + id-CSFallbackIndicator, + id-CSG-Id, + id-CSG-IdList, + id-CSGMembershipStatus, + id-Data-Forwarding-Not-Possible, + id-DefaultPagingDRX, + id-Direct-Forwarding-Path-Availability, + id-Global-ENB-ID, + id-EUTRAN-CGI, + id-eNBname, + id-eNB-StatusTransfer-TransparentContainer, + id-eNB-UE-S1AP-ID, + id-GERANtoLTEHOInformationRes, + id-GUMMEI-ID, + id-GUMMEIType, + id-HandoverRestrictionList, + id-HandoverType, + id-Masked-IMEISV, + id-InformationOnRecommendedCellsAndENBsForPaging, + id-InitialContextSetup, + id-Inter-SystemInformationTransferTypeEDT, + id-Inter-SystemInformationTransferTypeMDT, + id-LPPa-PDU, + id-NAS-DownlinkCount, + id-ManagementBasedMDTAllowed, + id-ManagementBasedMDTPLMNList, + id-MMEname, + id-MME-UE-S1AP-ID, + id-MSClassmark2, + id-MSClassmark3, + id-NAS-PDU, + id-NASSecurityParametersfromE-UTRAN, + id-NASSecurityParameterstoE-UTRAN, + id-OverloadResponse, + id-pagingDRX, + id-PagingPriority, + id-RelativeMMECapacity, + id-RequestType, + id-Routing-ID, + id-E-RABAdmittedItem, + id-E-RABAdmittedList, + id-E-RABDataForwardingItem, + id-E-RABFailedToModifyList, + id-E-RABFailedToReleaseList, + id-E-RABFailedtoSetupItemHOReqAck, + id-E-RABFailedToSetupListBearerSURes, + id-E-RABFailedToSetupListCtxtSURes, + id-E-RABFailedToSetupListHOReqAck, + id-E-RABFailedToBeReleasedList, + id-E-RABFailedToResumeListResumeReq, + id-E-RABFailedToResumeItemResumeReq, + id-E-RABFailedToResumeListResumeRes, + id-E-RABFailedToResumeItemResumeRes, + id-E-RABModify, + id-E-RABModifyItemBearerModRes, + id-E-RABModifyListBearerModRes, + id-E-RABRelease, + id-E-RABReleaseItemBearerRelComp, + id-E-RABReleaseItemHOCmd, + id-E-RABReleaseListBearerRelComp, + id-E-RABReleaseIndication, + id-E-RABSetup, + id-E-RABSetupItemBearerSURes, + id-E-RABSetupItemCtxtSURes, + id-E-RABSetupListBearerSURes, + id-E-RABSetupListCtxtSURes, + id-E-RABSubjecttoDataForwardingList, + id-E-RABToBeModifiedItemBearerModReq, + id-E-RABToBeModifiedListBearerModReq, + id-E-RABToBeModifiedListBearerModInd, + id-E-RABToBeModifiedItemBearerModInd, + id-E-RABNotToBeModifiedListBearerModInd, + id-E-RABNotToBeModifiedItemBearerModInd, + id-E-RABModifyListBearerModConf, + id-E-RABModifyItemBearerModConf, + id-E-RABFailedToModifyListBearerModConf, + id-E-RABToBeReleasedListBearerModConf, + id-E-RABToBeReleasedList, + id-E-RABReleasedList, + id-E-RABToBeSetupItemBearerSUReq, + id-E-RABToBeSetupItemCtxtSUReq, + id-E-RABToBeSetupItemHOReq, + id-E-RABToBeSetupListBearerSUReq, + id-E-RABToBeSetupListCtxtSUReq, + id-E-RABToBeSetupListHOReq, + id-E-RABToBeSwitchedDLItem, + id-E-RABToBeSwitchedDLList, + id-E-RABToBeSwitchedULList, + id-E-RABToBeSwitchedULItem, + id-E-RABtoReleaseListHOCmd, + id-ProSeAuthorized, + id-SecurityKey, + id-SecurityContext, + id-ServedGUMMEIs, + id-SONConfigurationTransferECT, + id-SONConfigurationTransferMCT, + id-Source-ToTarget-TransparentContainer, + id-Source-ToTarget-TransparentContainer-Secondary, + id-SourceMME-UE-S1AP-ID, + id-SRVCCOperationNotPossible, + id-SRVCCOperationPossible, + id-SRVCCHOIndication, + id-SubscriberProfileIDforRFP, + id-SupportedTAs, + id-S-TMSI, + id-TAI, + id-TAIItem, + id-TAIList, + id-Target-ToSource-TransparentContainer, + id-Target-ToSource-TransparentContainer-Secondary, + id-TargetID, + id-TimeToWait, + id-TraceActivation, + id-TrafficLoadReductionIndication, + id-E-UTRAN-Trace-ID, + id-UEIdentityIndexValue, + id-UEPagingID, + id-UERadioCapability, + id-UERadioCapabilityForPaging, + id-UTRANtoLTEHOInformationRes, + id-UE-associatedLogicalS1-ConnectionListResAck, + id-UE-associatedLogicalS1-ConnectionItem, + id-UE-RetentionInformation, + id-UESecurityCapabilities, + id-UE-S1AP-IDs, + id-V2XServicesAuthorized, + id-ResetType, + id-MessageIdentifier, + id-SerialNumber, + id-WarningAreaList, + id-RepetitionPeriod, + id-NumberofBroadcastRequest, + id-WarningType, + id-WarningSecurityInfo, + id-DataCodingScheme, + id-WarningMessageContents, + id-BroadcastCompletedAreaList, + id-BroadcastCancelledAreaList, + id-RRC-Establishment-Cause, + id-TraceCollectionEntityIPAddress, + id-AdditionalRRMPriorityIndex, + id-MDTConfigurationNR, + maxnoofTAIs, + maxnoofErrors, + maxnoofE-RABs, + maxnoofIndividualS1ConnectionsToReset, + maxnoofEmergencyAreaID, + maxnoofCellID, + maxnoofTAIforWarning, + maxnoofCellinTAI, + maxnoofCellinEAI, + id-ExtendedRepetitionPeriod, + id-PS-ServiceNotAvailable, + id-RegisteredLAI, + id-GUMMEIList, + id-SourceMME-GUMMEI, + id-MME-UE-S1AP-ID-2, + id-GW-TransportLayerAddress, + id-RelayNode-Indicator, + id-Correlation-ID, + id-MMERelaySupportIndicator, + id-GWContextReleaseIndication, + id-PrivacyIndicator, + id-VoiceSupportMatchIndicator, + id-Tunnel-Information-for-BBF, + id-SIPTO-Correlation-ID, + id-SIPTO-L-GW-TransportLayerAddress, + id-KillAllWarningMessages, + id-TransportInformation, + id-LHN-ID, + id-UserLocationInformation, + id-AdditionalCSFallbackIndicator, + id-ECGIListForRestart, + id-TAIListForRestart, + id-EmergencyAreaIDListForRestart, + id-ExpectedUEBehaviour, + id-Paging-eDRXInformation, + id-extended-UEIdentityIndexValue, + id-CSGMembershipInfo, + id-MME-Group-ID, + id-Additional-GUTI, + id-S1-Message, + id-PWSfailedECGIList, + id-PWSFailureIndication, + id-UE-Usage-Type, + id-UEUserPlaneCIoTSupportIndicator, + id-NB-IoT-DefaultPagingDRX, + id-NB-IoT-Paging-eDRXInformation, + id-CE-mode-B-SupportIndicator, + id-NB-IoT-UEIdentityIndexValue, + id-RRC-Resume-Cause, + id-DCN-ID, + id-ServedDCNs, + id-UESidelinkAggregateMaximumBitrate, + id-DLNASPDUDeliveryAckRequest, + id-Coverage-Level, + id-EnhancedCoverageRestricted, + id-UE-Level-QoS-Parameters, + id-DL-CP-SecurityInformation, + id-UL-CP-SecurityInformation, + id-SecondaryRATDataUsageRequest, + id-SecondaryRATDataUsageReportList, + id-HandoverFlag, + id-NRUESecurityCapabilities, + id-UE-Application-Layer-Measurement-Capability, + id-CE-ModeBRestricted, + id-DownlinkPacketLossRate, + id-UplinkPacketLossRate, + id-UECapabilityInfoRequest, + id-EndIndication, + id-EDT-Session, + id-LTE-M-Indication, + id-PendingDataIndication, + id-WarningAreaCoordinates, + id-Subscription-Based-UE-DifferentiationInfo, + id-PSCellInformation, + id-ConnectedengNBList, + id-ConnectedengNBToAddList, + id-ConnectedengNBToRemoveList, + id-EN-DCSONConfigurationTransfer-ECT, + id-EN-DCSONConfigurationTransfer-MCT, + id-TimeSinceSecondaryNodeRelease, + id-IAB-Authorized, + id-IAB-Node-Indication, + id-IAB-Supported, + id-DataSize, + id-Ethernet-Type, + id-NRV2XServicesAuthorized, + id-NRUESidelinkAggregateMaximumBitrate, + id-PC5QoSParameters, + id-IntersystemSONConfigurationTransferMCT, + id-IntersystemSONConfigurationTransferECT, + id-UERadioCapabilityID, + id-UERadioCapability-NR-Format, + id-NotifySourceeNB, + id-eNB-EarlyStatusTransfer-TransparentContainer, + id-WUS-Assistance-Information, + id-NB-IoT-PagingDRX + + + +FROM S1AP-Constants; + +-- ************************************************************** +-- +-- Common Container Lists +-- +-- ************************************************************** + +E-RAB-IE-ContainerList { S1AP-PROTOCOL-IES : IEsSetParam } ::= ProtocolIE-ContainerList { 1, maxnoofE-RABs, {IEsSetParam} } +E-RAB-IE-ContainerPairList { S1AP-PROTOCOL-IES-PAIR : IEsSetParam } ::= ProtocolIE-ContainerPairList { 1, maxnoofE-RABs, {IEsSetParam} } +ProtocolError-IE-ContainerList { S1AP-PROTOCOL-IES : IEsSetParam } ::= ProtocolIE-ContainerList { 1, maxnoofE-RABs, {IEsSetParam} } + +-- ************************************************************** +-- +-- HANDOVER PREPARATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Required +-- +-- ************************************************************** + +HandoverRequired ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverRequiredIEs} }, + ... +} + +HandoverRequiredIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory}| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory}| + { ID id-TargetID CRITICALITY reject TYPE TargetID PRESENCE mandatory}| + { ID id-Direct-Forwarding-Path-Availability CRITICALITY ignore TYPE Direct-Forwarding-Path-Availability PRESENCE optional}| + { ID id-SRVCCHOIndication CRITICALITY reject TYPE SRVCCHOIndication PRESENCE optional}| + { ID id-Source-ToTarget-TransparentContainer CRITICALITY reject TYPE Source-ToTarget-TransparentContainer PRESENCE mandatory}| + { ID id-Source-ToTarget-TransparentContainer-Secondary CRITICALITY reject TYPE Source-ToTarget-TransparentContainer PRESENCE optional}| + { ID id-MSClassmark2 CRITICALITY reject TYPE MSClassmark2 PRESENCE conditional}| + { ID id-MSClassmark3 CRITICALITY ignore TYPE MSClassmark3 PRESENCE conditional}| + { ID id-CSG-Id CRITICALITY reject TYPE CSG-Id PRESENCE optional}| + { ID id-CellAccessMode CRITICALITY reject TYPE CellAccessMode PRESENCE optional}| + { ID id-PS-ServiceNotAvailable CRITICALITY ignore TYPE PS-ServiceNotAvailable PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- Handover Command +-- +-- ************************************************************** + +HandoverCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCommandIEs} }, + ... +} + +HandoverCommandIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory}| + { ID id-NASSecurityParametersfromE-UTRAN CRITICALITY reject TYPE NASSecurityParametersfromE-UTRAN PRESENCE conditional + -- This IE shall be present if HandoverType IE is set to value "LTEtoUTRAN" or "LTEtoGERAN" --}| + { ID id-E-RABSubjecttoDataForwardingList CRITICALITY ignore TYPE E-RABSubjecttoDataForwardingList PRESENCE optional}| + { ID id-E-RABtoReleaseListHOCmd CRITICALITY ignore TYPE E-RABList PRESENCE optional}| + { ID id-Target-ToSource-TransparentContainer CRITICALITY reject TYPE Target-ToSource-TransparentContainer PRESENCE mandatory}| + { ID id-Target-ToSource-TransparentContainer-Secondary CRITICALITY reject TYPE Target-ToSource-TransparentContainer PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}, + ... +} + +E-RABSubjecttoDataForwardingList ::= E-RAB-IE-ContainerList { {E-RABDataForwardingItemIEs} } + +E-RABDataForwardingItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABDataForwardingItem CRITICALITY ignore TYPE E-RABDataForwardingItem PRESENCE mandatory }, + ... +} + +E-RABDataForwardingItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dL-transportLayerAddress TransportLayerAddress OPTIONAL, + dL-gTP-TEID GTP-TEID OPTIONAL, + uL-TransportLayerAddress TransportLayerAddress OPTIONAL, + uL-GTP-TEID GTP-TEID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { E-RABDataForwardingItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABDataForwardingItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + + +-- ************************************************************** +-- +-- Handover Preparation Failure +-- +-- ************************************************************** + +HandoverPreparationFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverPreparationFailureIEs} }, + ... +} + +HandoverPreparationFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER RESOURCE ALLOCATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Request +-- +-- ************************************************************** + +HandoverRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequestIEs} }, + ... +} + +HandoverRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory}| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory}| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE mandatory}| + { ID id-E-RABToBeSetupListHOReq CRITICALITY reject TYPE E-RABToBeSetupListHOReq PRESENCE mandatory}| + { ID id-Source-ToTarget-TransparentContainer CRITICALITY reject TYPE Source-ToTarget-TransparentContainer PRESENCE mandatory}| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE mandatory}| + { ID id-HandoverRestrictionList CRITICALITY ignore TYPE HandoverRestrictionList PRESENCE optional}| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE optional}| + { ID id-RequestType CRITICALITY ignore TYPE RequestType PRESENCE optional}| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional}| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE mandatory}| + { ID id-NASSecurityParameterstoE-UTRAN CRITICALITY reject TYPE NASSecurityParameterstoE-UTRAN PRESENCE conditional + -- This IE shall be present if the Handover Type IE is set to the value "UTRANtoLTE" or "GERANtoLTE" -- }| + { ID id-CSG-Id CRITICALITY reject TYPE CSG-Id PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-GUMMEI-ID CRITICALITY ignore TYPE GUMMEI PRESENCE optional}| + { ID id-MME-UE-S1AP-ID-2 CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional}| + { ID id-ManagementBasedMDTAllowed CRITICALITY ignore TYPE ManagementBasedMDTAllowed PRESENCE optional}| + { ID id-ManagementBasedMDTPLMNList CRITICALITY ignore TYPE MDTPLMNList PRESENCE optional}| + { ID id-Masked-IMEISV CRITICALITY ignore TYPE Masked-IMEISV PRESENCE optional}| + { ID id-ExpectedUEBehaviour CRITICALITY ignore TYPE ExpectedUEBehaviour PRESENCE optional}| + { ID id-ProSeAuthorized CRITICALITY ignore TYPE ProSeAuthorized PRESENCE optional}| + { ID id-UEUserPlaneCIoTSupportIndicator CRITICALITY ignore TYPE UEUserPlaneCIoTSupportIndicator PRESENCE optional}| + { ID id-V2XServicesAuthorized CRITICALITY ignore TYPE V2XServicesAuthorized PRESENCE optional}| + { ID id-UESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE UESidelinkAggregateMaximumBitrate PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-AerialUEsubscriptionInformation CRITICALITY ignore TYPE AerialUEsubscriptionInformation PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY reject TYPE IAB-Authorized PRESENCE optional}| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, ... +} + +E-RABToBeSetupListHOReq ::= E-RAB-IE-ContainerList { {E-RABToBeSetupItemHOReqIEs} } + +E-RABToBeSetupItemHOReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSetupItemHOReq CRITICALITY reject TYPE E-RABToBeSetupItemHOReq PRESENCE mandatory }, + ... +} + +E-RABToBeSetupItemHOReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + e-RABlevelQosParameters E-RABLevelQoSParameters, + iE-Extensions ProtocolExtensionContainer { {E-RABToBeSetupItemHOReq-ExtIEs} } OPTIONAL, + ... +} + +E-RABToBeSetupItemHOReq-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-Data-Forwarding-Not-Possible CRITICALITY ignore EXTENSION Data-Forwarding-Not-Possible PRESENCE optional}| + { ID id-BearerType CRITICALITY reject EXTENSION BearerType PRESENCE optional}| + { ID id-Ethernet-Type CRITICALITY ignore EXTENSION Ethernet-Type PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- Handover Request Acknowledge +-- +-- ************************************************************** + +HandoverRequestAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequestAcknowledgeIEs} }, + ... +} + +HandoverRequestAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABAdmittedList CRITICALITY ignore TYPE E-RABAdmittedList PRESENCE mandatory}| + { ID id-E-RABFailedToSetupListHOReqAck CRITICALITY ignore TYPE E-RABFailedtoSetupListHOReqAck PRESENCE optional}| + { ID id-Target-ToSource-TransparentContainer CRITICALITY reject TYPE Target-ToSource-TransparentContainer PRESENCE mandatory}| + { ID id-CSG-Id CRITICALITY ignore TYPE CSG-Id PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-CellAccessMode CRITICALITY ignore TYPE CellAccessMode PRESENCE optional}| + { ID id-CE-mode-B-SupportIndicator CRITICALITY ignore TYPE CE-mode-B-SupportIndicator PRESENCE optional}, + ... +} + +E-RABAdmittedList ::= E-RAB-IE-ContainerList { {E-RABAdmittedItemIEs} } + +E-RABAdmittedItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABAdmittedItem CRITICALITY ignore TYPE E-RABAdmittedItem PRESENCE mandatory }, + ... +} + +E-RABAdmittedItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + dL-transportLayerAddress TransportLayerAddress OPTIONAL, + dL-gTP-TEID GTP-TEID OPTIONAL, + uL-TransportLayerAddress TransportLayerAddress OPTIONAL, + uL-GTP-TEID GTP-TEID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABAdmittedItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABAdmittedItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +E-RABFailedtoSetupListHOReqAck ::= E-RAB-IE-ContainerList { {E-RABFailedtoSetupItemHOReqAckIEs} } + +E-RABFailedtoSetupItemHOReqAckIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABFailedtoSetupItemHOReqAck CRITICALITY ignore TYPE E-RABFailedToSetupItemHOReqAck PRESENCE mandatory }, + ... +} + +E-RABFailedToSetupItemHOReqAck ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { { E-RABFailedToSetupItemHOReqAckExtIEs} } OPTIONAL, + ... +} + +E-RABFailedToSetupItemHOReqAckExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- ************************************************************** +-- +-- Handover Failure +-- +-- ************************************************************** + +HandoverFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverFailureIEs} }, + ... +} + +HandoverFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER NOTIFICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Notify +-- +-- ************************************************************** + +HandoverNotify ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverNotifyIEs} }, + ... +} + +HandoverNotifyIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory}| +-- Extension for Release 11 to support BBAI -- + { ID id-Tunnel-Information-for-BBF CRITICALITY ignore TYPE TunnelInformation PRESENCE optional}| + { ID id-LHN-ID CRITICALITY ignore TYPE LHN-ID PRESENCE optional}| + { ID id-PSCellInformation CRITICALITY ignore TYPE PSCellInformation PRESENCE optional }| + { ID id-NotifySourceeNB CRITICALITY ignore TYPE NotifySourceeNB PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- PATH SWITCH REQUEST ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Path Switch Request +-- +-- ************************************************************** + +PathSwitchRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestIEs} }, + ... +} + +PathSwitchRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABToBeSwitchedDLList CRITICALITY reject TYPE E-RABToBeSwitchedDLList PRESENCE mandatory}| + { ID id-SourceMME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory}| + { ID id-UESecurityCapabilities CRITICALITY ignore TYPE UESecurityCapabilities PRESENCE mandatory}| + { ID id-CSG-Id CRITICALITY ignore TYPE CSG-Id PRESENCE optional}| + { ID id-CellAccessMode CRITICALITY ignore TYPE CellAccessMode PRESENCE optional}| + { ID id-SourceMME-GUMMEI CRITICALITY ignore TYPE GUMMEI PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| +-- Extension for Release 11 to support BBAI -- + { ID id-Tunnel-Information-for-BBF CRITICALITY ignore TYPE TunnelInformation PRESENCE optional}| + { ID id-LHN-ID CRITICALITY ignore TYPE LHN-ID PRESENCE optional}| + { ID id-RRC-Resume-Cause CRITICALITY ignore TYPE RRC-Establishment-Cause PRESENCE optional }| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-PSCellInformation CRITICALITY ignore TYPE PSCellInformation PRESENCE optional }, + ... +} + +E-RABToBeSwitchedDLList ::= E-RAB-IE-ContainerList { {E-RABToBeSwitchedDLItemIEs} } + +E-RABToBeSwitchedDLItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSwitchedDLItem CRITICALITY reject TYPE E-RABToBeSwitchedDLItem PRESENCE mandatory }, + ... +} + +E-RABToBeSwitchedDLItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { { E-RABToBeSwitchedDLItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABToBeSwitchedDLItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- Path Switch Request Acknowledge +-- +-- ************************************************************** + +PathSwitchRequestAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestAcknowledgeIEs} }, + ... +} + +PathSwitchRequestAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-uEaggregateMaximumBitrate CRITICALITY ignore TYPE UEAggregateMaximumBitrate PRESENCE optional}| + { ID id-E-RABToBeSwitchedULList CRITICALITY ignore TYPE E-RABToBeSwitchedULList PRESENCE optional}| + { ID id-E-RABToBeReleasedList CRITICALITY ignore TYPE E-RABList PRESENCE optional}| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE mandatory}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-MME-UE-S1AP-ID-2 CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-ProSeAuthorized CRITICALITY ignore TYPE ProSeAuthorized PRESENCE optional}| + { ID id-UEUserPlaneCIoTSupportIndicator CRITICALITY ignore TYPE UEUserPlaneCIoTSupportIndicator PRESENCE optional}| + { ID id-V2XServicesAuthorized CRITICALITY ignore TYPE V2XServicesAuthorized PRESENCE optional}| + { ID id-UESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE UESidelinkAggregateMaximumBitrate PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-AerialUEsubscriptionInformation CRITICALITY ignore TYPE AerialUEsubscriptionInformation PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-HandoverRestrictionList CRITICALITY ignore TYPE HandoverRestrictionList PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional }| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, + ... +} + +E-RABToBeSwitchedULList ::= E-RAB-IE-ContainerList { {E-RABToBeSwitchedULItemIEs} } + +E-RABToBeSwitchedULItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSwitchedULItem CRITICALITY ignore TYPE E-RABToBeSwitchedULItem PRESENCE mandatory }, + ... +} + +E-RABToBeSwitchedULItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { { E-RABToBeSwitchedULItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABToBeSwitchedULItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- ************************************************************** +-- +-- Path Switch Request Failure +-- +-- ************************************************************** + +PathSwitchRequestFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestFailureIEs} }, + ... +} + +PathSwitchRequestFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER CANCEL ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Cancel +-- +-- ************************************************************** + +HandoverCancel ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCancelIEs} }, + ... +} + +HandoverCancelIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Handover Cancel Request Acknowledge +-- +-- ************************************************************** + +HandoverCancelAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCancelAcknowledgeIEs} }, + ... +} + +HandoverCancelAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER SUCCESS ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Success +-- +-- ************************************************************** + +HandoverSuccess ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverSuccessIEs} }, + ... +} + +HandoverSuccessIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- eNB EARLY STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Early Status Transfer +-- +-- ************************************************************** + +ENBEarlyStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBEarlyStatusTransferIEs} }, + ... +} + +ENBEarlyStatusTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-EarlyStatusTransfer-TransparentContainer CRITICALITY reject TYPE ENB-EarlyStatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- MME EARLY STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Early Status Transfer +-- +-- ************************************************************** + +MMEEarlyStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEEarlyStatusTransferIEs} }, + ... +} + +MMEEarlyStatusTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-EarlyStatusTransfer-TransparentContainer CRITICALITY reject TYPE ENB-EarlyStatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- E-RAB SETUP ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Setup Request +-- +-- ************************************************************** + +E-RABSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABSetupRequestIEs} }, + ... +} + +E-RABSetupRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE optional }| + { ID id-E-RABToBeSetupListBearerSUReq CRITICALITY reject TYPE E-RABToBeSetupListBearerSUReq PRESENCE mandatory }, + ... +} + +E-RABToBeSetupListBearerSUReq ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABToBeSetupItemBearerSUReqIEs} } + +E-RABToBeSetupItemBearerSUReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSetupItemBearerSUReq CRITICALITY reject TYPE E-RABToBeSetupItemBearerSUReq PRESENCE mandatory }, + ... +} + +E-RABToBeSetupItemBearerSUReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + e-RABlevelQoSParameters E-RABLevelQoSParameters, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + nAS-PDU NAS-PDU, + iE-Extensions ProtocolExtensionContainer { {E-RABToBeSetupItemBearerSUReqExtIEs} } OPTIONAL, + ... +} + + +E-RABToBeSetupItemBearerSUReqExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-Correlation-ID CRITICALITY ignore EXTENSION Correlation-ID PRESENCE optional}| + { ID id-SIPTO-Correlation-ID CRITICALITY ignore EXTENSION Correlation-ID PRESENCE optional}| + { ID id-BearerType CRITICALITY reject EXTENSION BearerType PRESENCE optional}| + { ID id-Ethernet-Type CRITICALITY ignore EXTENSION Ethernet-Type PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- E-RAB Setup Response +-- +-- ************************************************************** + +E-RABSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABSetupResponseIEs} }, + ... +} + +E-RABSetupResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABSetupListBearerSURes CRITICALITY ignore TYPE E-RABSetupListBearerSURes PRESENCE optional }| + { ID id-E-RABFailedToSetupListBearerSURes CRITICALITY ignore TYPE E-RABList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +E-RABSetupListBearerSURes ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABSetupItemBearerSUResIEs} } + +E-RABSetupItemBearerSUResIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABSetupItemBearerSURes CRITICALITY ignore TYPE E-RABSetupItemBearerSURes PRESENCE mandatory }, + ... +} + +E-RABSetupItemBearerSURes ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { {E-RABSetupItemBearerSUResExtIEs} } OPTIONAL, + ... +} + + +E-RABSetupItemBearerSUResExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + + +-- ************************************************************** +-- +-- E-RAB MODIFY ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Modify Request +-- +-- ************************************************************** + +E-RABModifyRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABModifyRequestIEs} }, + ... +} + +E-RABModifyRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE optional }| + { ID id-E-RABToBeModifiedListBearerModReq CRITICALITY reject TYPE E-RABToBeModifiedListBearerModReq PRESENCE mandatory }| + { ID id-SecondaryRATDataUsageRequest CRITICALITY ignore TYPE SecondaryRATDataUsageRequest PRESENCE optional }, + ... +} + +E-RABToBeModifiedListBearerModReq ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABToBeModifiedItemBearerModReqIEs} } + +E-RABToBeModifiedItemBearerModReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeModifiedItemBearerModReq CRITICALITY reject TYPE E-RABToBeModifiedItemBearerModReq PRESENCE mandatory }, + ... +} + +E-RABToBeModifiedItemBearerModReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + e-RABLevelQoSParameters E-RABLevelQoSParameters, + nAS-PDU NAS-PDU, + iE-Extensions ProtocolExtensionContainer { {E-RABToBeModifyItemBearerModReqExtIEs} } OPTIONAL, + ... +} + + +E-RABToBeModifyItemBearerModReqExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-TransportInformation CRITICALITY reject EXTENSION TransportInformation PRESENCE optional}, + ... +} + + + +-- ************************************************************** +-- +-- E-RAB Modify Response +-- +-- ************************************************************** + +E-RABModifyResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABModifyResponseIEs} }, + ... +} + +E-RABModifyResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABModifyListBearerModRes CRITICALITY ignore TYPE E-RABModifyListBearerModRes PRESENCE optional }| + { ID id-E-RABFailedToModifyList CRITICALITY ignore TYPE E-RABList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }, + ... +} + + +E-RABModifyListBearerModRes ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABModifyItemBearerModResIEs} } + +E-RABModifyItemBearerModResIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABModifyItemBearerModRes CRITICALITY ignore TYPE E-RABModifyItemBearerModRes PRESENCE mandatory}, + ... +} + +E-RABModifyItemBearerModRes ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + iE-Extensions ProtocolExtensionContainer { {E-RABModifyItemBearerModResExtIEs} } OPTIONAL, + ... +} + + +E-RABModifyItemBearerModResExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + + + +-- ************************************************************** +-- +-- E-RAB RELEASE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Release Command +-- +-- ************************************************************** + +E-RABReleaseCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABReleaseCommandIEs} }, + ... +} + +E-RABReleaseCommandIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE optional }| + { ID id-E-RABToBeReleasedList CRITICALITY ignore TYPE E-RABList PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- E-RAB Release Response +-- +-- ************************************************************** + +E-RABReleaseResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { E-RABReleaseResponseIEs } }, + ... +} + +E-RABReleaseResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABReleaseListBearerRelComp CRITICALITY ignore TYPE E-RABReleaseListBearerRelComp PRESENCE optional }| + { ID id-E-RABFailedToReleaseList CRITICALITY ignore TYPE E-RABList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| +-- Extension for Release 12 to support User Location Information -- + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }, + ... +} + + +E-RABReleaseListBearerRelComp ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABReleaseItemBearerRelCompIEs} } + +E-RABReleaseItemBearerRelCompIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABReleaseItemBearerRelComp CRITICALITY ignore TYPE E-RABReleaseItemBearerRelComp PRESENCE mandatory }, + ... +} + +E-RABReleaseItemBearerRelComp ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + iE-Extensions ProtocolExtensionContainer { {E-RABReleaseItemBearerRelCompExtIEs} } OPTIONAL, + ... +} + + +E-RABReleaseItemBearerRelCompExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + + +-- ************************************************************** +-- +-- E-RAB RELEASE INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Release Indication +-- +-- ************************************************************** + +E-RABReleaseIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABReleaseIndicationIEs} }, + ... +} + +E-RABReleaseIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABReleasedList CRITICALITY ignore TYPE E-RABList PRESENCE mandatory }| +-- Extension for Release 12 to support User Location Information -- + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- INITIAL CONTEXT SETUP ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Initial Context Setup Request +-- +-- ************************************************************** + +InitialContextSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupRequestIEs} }, + ... +} + +InitialContextSetupRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE mandatory}| + { ID id-E-RABToBeSetupListCtxtSUReq CRITICALITY reject TYPE E-RABToBeSetupListCtxtSUReq PRESENCE mandatory}| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE mandatory}| + { ID id-SecurityKey CRITICALITY reject TYPE SecurityKey PRESENCE mandatory}| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE optional}| + { ID id-HandoverRestrictionList CRITICALITY ignore TYPE HandoverRestrictionList PRESENCE optional}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional}| + { ID id-SubscriberProfileIDforRFP CRITICALITY ignore TYPE SubscriberProfileIDforRFP PRESENCE optional}| + { ID id-CSFallbackIndicator CRITICALITY reject TYPE CSFallbackIndicator PRESENCE optional}| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-RegisteredLAI CRITICALITY ignore TYPE LAI PRESENCE optional}| + { ID id-GUMMEI-ID CRITICALITY ignore TYPE GUMMEI PRESENCE optional}| + { ID id-MME-UE-S1AP-ID-2 CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional}| + { ID id-ManagementBasedMDTAllowed CRITICALITY ignore TYPE ManagementBasedMDTAllowed PRESENCE optional}| + { ID id-ManagementBasedMDTPLMNList CRITICALITY ignore TYPE MDTPLMNList PRESENCE optional}| + { ID id-AdditionalCSFallbackIndicator CRITICALITY ignore TYPE AdditionalCSFallbackIndicator PRESENCE conditional}| + { ID id-Masked-IMEISV CRITICALITY ignore TYPE Masked-IMEISV PRESENCE optional}| + { ID id-ExpectedUEBehaviour CRITICALITY ignore TYPE ExpectedUEBehaviour PRESENCE optional}| + { ID id-ProSeAuthorized CRITICALITY ignore TYPE ProSeAuthorized PRESENCE optional}| + { ID id-UEUserPlaneCIoTSupportIndicator CRITICALITY ignore TYPE UEUserPlaneCIoTSupportIndicator PRESENCE optional}| + { ID id-V2XServicesAuthorized CRITICALITY ignore TYPE V2XServicesAuthorized PRESENCE optional}| + { ID id-UESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE UESidelinkAggregateMaximumBitrate PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-AerialUEsubscriptionInformation CRITICALITY ignore TYPE AerialUEsubscriptionInformation PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY ignore TYPE IAB-Authorized PRESENCE optional}| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, + ... +} + + + + +E-RABToBeSetupListCtxtSUReq ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABToBeSetupItemCtxtSUReqIEs} } + +E-RABToBeSetupItemCtxtSUReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSetupItemCtxtSUReq CRITICALITY reject TYPE E-RABToBeSetupItemCtxtSUReq PRESENCE mandatory }, + ... +} + +E-RABToBeSetupItemCtxtSUReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + e-RABlevelQoSParameters E-RABLevelQoSParameters, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + nAS-PDU NAS-PDU OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABToBeSetupItemCtxtSUReqExtIEs} } OPTIONAL, + ... +} + + +E-RABToBeSetupItemCtxtSUReqExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-Correlation-ID CRITICALITY ignore EXTENSION Correlation-ID PRESENCE optional}| + { ID id-SIPTO-Correlation-ID CRITICALITY ignore EXTENSION Correlation-ID PRESENCE optional}| + { ID id-BearerType CRITICALITY reject EXTENSION BearerType PRESENCE optional}| + { ID id-Ethernet-Type CRITICALITY ignore EXTENSION Ethernet-Type PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- Initial Context Setup Response +-- +-- ************************************************************** + +InitialContextSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupResponseIEs} }, + ... +} + +InitialContextSetupResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABSetupListCtxtSURes CRITICALITY ignore TYPE E-RABSetupListCtxtSURes PRESENCE mandatory }| + { ID id-E-RABFailedToSetupListCtxtSURes CRITICALITY ignore TYPE E-RABList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +E-RABSetupListCtxtSURes ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABSetupItemCtxtSUResIEs} } + +E-RABSetupItemCtxtSUResIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABSetupItemCtxtSURes CRITICALITY ignore TYPE E-RABSetupItemCtxtSURes PRESENCE mandatory }, + ... +} + +E-RABSetupItemCtxtSURes ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { {E-RABSetupItemCtxtSUResExtIEs} } OPTIONAL, + ... +} + + +E-RABSetupItemCtxtSUResExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- ************************************************************** +-- +-- Initial Context Setup Failure +-- +-- ************************************************************** + +InitialContextSetupFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupFailureIEs} }, + ... +} + +InitialContextSetupFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PAGING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + + +-- ************************************************************** +-- +-- Paging +-- +-- ************************************************************** + +Paging ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{PagingIEs}}, + ... +} + +PagingIEs S1AP-PROTOCOL-IES ::= { + { ID id-UEIdentityIndexValue CRITICALITY ignore TYPE UEIdentityIndexValue PRESENCE mandatory}| + { ID id-UEPagingID CRITICALITY ignore TYPE UEPagingID PRESENCE mandatory}| + { ID id-pagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE optional}| + { ID id-CNDomain CRITICALITY ignore TYPE CNDomain PRESENCE mandatory}| + { ID id-TAIList CRITICALITY ignore TYPE TAIList PRESENCE mandatory}| + { ID id-CSG-IdList CRITICALITY ignore TYPE CSG-IdList PRESENCE optional}| + { ID id-PagingPriority CRITICALITY ignore TYPE PagingPriority PRESENCE optional}| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional}| +-- Extension for Release 13 to support Paging Optimisation and Coverage Enhancement paging - + { ID id-AssistanceDataForPaging CRITICALITY ignore TYPE AssistanceDataForPaging PRESENCE optional}| + { ID id-Paging-eDRXInformation CRITICALITY ignore TYPE Paging-eDRXInformation PRESENCE optional}| + { ID id-extended-UEIdentityIndexValue CRITICALITY ignore TYPE Extended-UEIdentityIndexValue PRESENCE optional}| + { ID id-NB-IoT-Paging-eDRXInformation CRITICALITY ignore TYPE NB-IoT-Paging-eDRXInformation PRESENCE optional}| + { ID id-NB-IoT-UEIdentityIndexValue CRITICALITY ignore TYPE NB-IoT-UEIdentityIndexValue PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-DataSize CRITICALITY ignore TYPE DataSize PRESENCE optional}| + { ID id-WUS-Assistance-Information CRITICALITY ignore TYPE WUS-Assistance-Information PRESENCE optional}| + { ID id-NB-IoT-PagingDRX CRITICALITY ignore TYPE NB-IoT-PagingDRX PRESENCE optional}, + ... +} + +TAIList::= SEQUENCE (SIZE(1.. maxnoofTAIs)) OF ProtocolIE-SingleContainer {{TAIItemIEs}} + +TAIItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-TAIItem CRITICALITY ignore TYPE TAIItem PRESENCE mandatory }, + ... +} + +TAIItem ::= SEQUENCE { + tAI TAI, + iE-Extensions ProtocolExtensionContainer { {TAIItemExtIEs} } OPTIONAL, + ... +} + + +TAIItemExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RELEASE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Release Request +-- +-- ************************************************************** + +UEContextReleaseRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UEContextReleaseRequest-IEs}}, + ... +} + +UEContextReleaseRequest-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-GWContextReleaseIndication CRITICALITY reject TYPE GWContextReleaseIndication PRESENCE optional }| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Release Command +-- +-- ************************************************************** + +UEContextReleaseCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UEContextReleaseCommand-IEs}}, + ... +} + +UEContextReleaseCommand-IEs S1AP-PROTOCOL-IES ::= { + { ID id-UE-S1AP-IDs CRITICALITY reject TYPE UE-S1AP-IDs PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE Context Release Complete +-- +-- ************************************************************** + +UEContextReleaseComplete ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UEContextReleaseComplete-IEs}}, + ... +} + +UEContextReleaseComplete-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| +-- Extension for Release 12 to support User Location Information -- + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional}| +-- Extension for Release 13 to support Paging Optimisation + { ID id-InformationOnRecommendedCellsAndENBsForPaging CRITICALITY ignore TYPE InformationOnRecommendedCellsAndENBsForPaging PRESENCE optional}| +-- Extension for Release 13 to support coverage enhancement paging + { ID id-CellIdentifierAndCELevelForCECapableUEs CRITICALITY ignore TYPE CellIdentifierAndCELevelForCECapableUEs PRESENCE optional}| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }| + { ID id-TimeSinceSecondaryNodeRelease CRITICALITY ignore TYPE TimeSinceSecondaryNodeRelease PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Modification Request +-- +-- ************************************************************** + +UEContextModificationRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextModificationRequestIEs} }, + ... +} + +UEContextModificationRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-SecurityKey CRITICALITY reject TYPE SecurityKey PRESENCE optional}| + { ID id-SubscriberProfileIDforRFP CRITICALITY ignore TYPE SubscriberProfileIDforRFP PRESENCE optional}| + { ID id-uEaggregateMaximumBitrate CRITICALITY ignore TYPE UEAggregateMaximumBitrate PRESENCE optional}| + { ID id-CSFallbackIndicator CRITICALITY reject TYPE CSFallbackIndicator PRESENCE optional}| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-RegisteredLAI CRITICALITY ignore TYPE LAI PRESENCE optional}| + { ID id-AdditionalCSFallbackIndicator CRITICALITY ignore TYPE AdditionalCSFallbackIndicator PRESENCE conditional}| + { ID id-ProSeAuthorized CRITICALITY ignore TYPE ProSeAuthorized PRESENCE optional}| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional}| + { ID id-SRVCCOperationNotPossible CRITICALITY ignore TYPE SRVCCOperationNotPossible PRESENCE optional}| + { ID id-V2XServicesAuthorized CRITICALITY ignore TYPE V2XServicesAuthorized PRESENCE optional}| + { ID id-UESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE UESidelinkAggregateMaximumBitrate PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-AerialUEsubscriptionInformation CRITICALITY ignore TYPE AerialUEsubscriptionInformation PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional}| + { ID id-IAB-Authorized CRITICALITY ignore TYPE IAB-Authorized PRESENCE optional}| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, + ... +} +-- ************************************************************** +-- +-- UE Context Modification Response +-- +-- ************************************************************** + +UEContextModificationResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextModificationResponseIEs} }, + ... +} + +UEContextModificationResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- UE Context Modification Failure +-- +-- ************************************************************** + +UEContextModificationFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextModificationFailureIEs} }, + ... +} + +UEContextModificationFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY MATCH ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Radio Capability Match Request +-- +-- ************************************************************** + +UERadioCapabilityMatchRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UERadioCapabilityMatchRequestIEs} }, + ... +} + +UERadioCapabilityMatchRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Radio Capability Match Response +-- +-- ************************************************************** + +UERadioCapabilityMatchResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UERadioCapabilityMatchResponseIEs} }, + ... +} + +UERadioCapabilityMatchResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-VoiceSupportMatchIndicator CRITICALITY reject TYPE VoiceSupportMatchIndicator PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NAS TRANSPORT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- DOWNLINK NAS TRANSPORT +-- +-- ************************************************************** + +DownlinkNASTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{DownlinkNASTransport-IEs}}, + ... +} + +DownlinkNASTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory}| + { ID id-HandoverRestrictionList CRITICALITY ignore TYPE HandoverRestrictionList PRESENCE optional}| + { ID id-SubscriberProfileIDforRFP CRITICALITY ignore TYPE SubscriberProfileIDforRFP PRESENCE optional}| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional}| + { ID id-DLNASPDUDeliveryAckRequest CRITICALITY ignore TYPE DLNASPDUDeliveryAckRequest PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-UECapabilityInfoRequest CRITICALITY ignore TYPE UECapabilityInfoRequest PRESENCE optional}| + { ID id-EndIndication CRITICALITY ignore TYPE EndIndication PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional}| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- INITIAL UE MESSAGE +-- +-- ************************************************************** + +InitialUEMessage ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{InitialUEMessage-IEs}}, + ... +} + +InitialUEMessage-IEs S1AP-PROTOCOL-IES ::= { + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory}| + { ID id-TAI CRITICALITY reject TYPE TAI PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-RRC-Establishment-Cause CRITICALITY ignore TYPE RRC-Establishment-Cause PRESENCE mandatory}| + { ID id-S-TMSI CRITICALITY reject TYPE S-TMSI PRESENCE optional}| + { ID id-CSG-Id CRITICALITY reject TYPE CSG-Id PRESENCE optional}| + { ID id-GUMMEI-ID CRITICALITY reject TYPE GUMMEI PRESENCE optional}| + { ID id-CellAccessMode CRITICALITY reject TYPE CellAccessMode PRESENCE optional}| + { ID id-GW-TransportLayerAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE optional}| + { ID id-RelayNode-Indicator CRITICALITY reject TYPE RelayNode-Indicator PRESENCE optional}| + { ID id-GUMMEIType CRITICALITY ignore TYPE GUMMEIType PRESENCE optional}| +-- Extension for Release 11 to support BBAI -- + { ID id-Tunnel-Information-for-BBF CRITICALITY ignore TYPE TunnelInformation PRESENCE optional}| + { ID id-SIPTO-L-GW-TransportLayerAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE optional}| + { ID id-LHN-ID CRITICALITY ignore TYPE LHN-ID PRESENCE optional}| + { ID id-MME-Group-ID CRITICALITY ignore TYPE MME-Group-ID PRESENCE optional}| + { ID id-UE-Usage-Type CRITICALITY ignore TYPE UE-Usage-Type PRESENCE optional}| + { ID id-CE-mode-B-SupportIndicator CRITICALITY ignore TYPE CE-mode-B-SupportIndicator PRESENCE optional}| + { ID id-DCN-ID CRITICALITY ignore TYPE DCN-ID PRESENCE optional}| + { ID id-Coverage-Level CRITICALITY ignore TYPE Coverage-Level PRESENCE optional}| + { ID id-UE-Application-Layer-Measurement-Capability CRITICALITY ignore TYPE UE-Application-Layer-Measurement-Capability PRESENCE optional}| + { ID id-EDT-Session CRITICALITY ignore TYPE EDT-Session PRESENCE optional}| + { ID id-IAB-Node-Indication CRITICALITY reject TYPE IAB-Node-Indication PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- UPLINK NAS TRANSPORT +-- +-- ************************************************************** + +UplinkNASTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UplinkNASTransport-IEs}}, + ... +} + +UplinkNASTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory}| + { ID id-GW-TransportLayerAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE optional}| + { ID id-SIPTO-L-GW-TransportLayerAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE optional}| + { ID id-LHN-ID CRITICALITY ignore TYPE LHN-ID PRESENCE optional}| + { ID id-PSCellInformation CRITICALITY ignore TYPE PSCellInformation PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- NAS NON DELIVERY INDICATION +-- +-- ************************************************************** + +NASNonDeliveryIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{NASNonDeliveryIndication-IEs}}, + ... +} + +NASNonDeliveryIndication-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- REROUTE NAS REQUEST +-- +-- ************************************************************** + +RerouteNASRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{RerouteNASRequest-IEs}}, + ... +} + +RerouteNASRequest-IEs S1AP-PROTOCOL-IES ::= { + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional}| + { ID id-S1-Message CRITICALITY reject TYPE OCTET STRING PRESENCE mandatory}| + { ID id-MME-Group-ID CRITICALITY reject TYPE MME-Group-ID PRESENCE mandatory}| + { ID id-Additional-GUTI CRITICALITY ignore TYPE Additional-GUTI PRESENCE optional}| + { ID id-UE-Usage-Type CRITICALITY ignore TYPE UE-Usage-Type PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- NAS DELIVERY INDICATION +-- +-- ************************************************************** + +NASDeliveryIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { NASDeliveryIndicationIEs} }, + ... +} + +NASDeliveryIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- RESET ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Reset +-- +-- ************************************************************** + +Reset ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ResetIEs} }, + ... +} + +ResetIEs S1AP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-ResetType CRITICALITY reject TYPE ResetType PRESENCE mandatory }, + ... +} + +ResetType ::= CHOICE { + s1-Interface ResetAll, + partOfS1-Interface UE-associatedLogicalS1-ConnectionListRes, + ... +} + + + +ResetAll ::= ENUMERATED { + reset-all, + ... +} + +UE-associatedLogicalS1-ConnectionListRes ::= SEQUENCE (SIZE(1.. maxnoofIndividualS1ConnectionsToReset)) OF ProtocolIE-SingleContainer { { UE-associatedLogicalS1-ConnectionItemRes } } + +UE-associatedLogicalS1-ConnectionItemRes S1AP-PROTOCOL-IES ::= { + { ID id-UE-associatedLogicalS1-ConnectionItem CRITICALITY reject TYPE UE-associatedLogicalS1-ConnectionItem PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- Reset Acknowledge +-- +-- ************************************************************** + +ResetAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ResetAcknowledgeIEs} }, + ... +} + +ResetAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-UE-associatedLogicalS1-ConnectionListResAck CRITICALITY ignore TYPE UE-associatedLogicalS1-ConnectionListResAck PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +UE-associatedLogicalS1-ConnectionListResAck ::= SEQUENCE (SIZE(1.. maxnoofIndividualS1ConnectionsToReset)) OF ProtocolIE-SingleContainer { { UE-associatedLogicalS1-ConnectionItemResAck } } + +UE-associatedLogicalS1-ConnectionItemResAck S1AP-PROTOCOL-IES ::= { + { ID id-UE-associatedLogicalS1-ConnectionItem CRITICALITY ignore TYPE UE-associatedLogicalS1-ConnectionItem PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- ERROR INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Error Indication +-- +-- ************************************************************** + +ErrorIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ErrorIndicationIEs}}, + ... +} + +ErrorIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE optional }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-S-TMSI CRITICALITY ignore TYPE S-TMSI PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- S1 SETUP ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- S1 Setup Request +-- +-- ************************************************************** + +S1SetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {S1SetupRequestIEs} }, + ... +} + +S1SetupRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-Global-ENB-ID CRITICALITY reject TYPE Global-ENB-ID PRESENCE mandatory}| + { ID id-eNBname CRITICALITY ignore TYPE ENBname PRESENCE optional}| + { ID id-SupportedTAs CRITICALITY reject TYPE SupportedTAs PRESENCE mandatory}| + { ID id-DefaultPagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE mandatory}| + { ID id-CSG-IdList CRITICALITY reject TYPE CSG-IdList PRESENCE optional}| + { ID id-UE-RetentionInformation CRITICALITY ignore TYPE UE-RetentionInformation PRESENCE optional}| + { ID id-NB-IoT-DefaultPagingDRX CRITICALITY ignore TYPE NB-IoT-DefaultPagingDRX PRESENCE optional}| + { ID id-ConnectedengNBList CRITICALITY ignore TYPE ConnectedengNBList PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- S1 Setup Response +-- +-- ************************************************************** + +S1SetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {S1SetupResponseIEs} }, + ... +} + + +S1SetupResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MMEname CRITICALITY ignore TYPE MMEname PRESENCE optional}| + { ID id-ServedGUMMEIs CRITICALITY reject TYPE ServedGUMMEIs PRESENCE mandatory}| + { ID id-RelativeMMECapacity CRITICALITY ignore TYPE RelativeMMECapacity PRESENCE mandatory}| + { ID id-MMERelaySupportIndicator CRITICALITY ignore TYPE MMERelaySupportIndicator PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-UE-RetentionInformation CRITICALITY ignore TYPE UE-RetentionInformation PRESENCE optional}| + { ID id-ServedDCNs CRITICALITY ignore TYPE ServedDCNs PRESENCE optional}| + { ID id-IAB-Supported CRITICALITY ignore TYPE IAB-Supported PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- S1 Setup Failure +-- +-- ************************************************************** + +S1SetupFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {S1SetupFailureIEs} }, + ... +} + +S1SetupFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- ENB CONFIGURATION UPDATE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Configuration Update +-- +-- ************************************************************** + +ENBConfigurationUpdate ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBConfigurationUpdateIEs} }, + ... +} + +ENBConfigurationUpdateIEs S1AP-PROTOCOL-IES ::= { + { ID id-eNBname CRITICALITY ignore TYPE ENBname PRESENCE optional}| + { ID id-SupportedTAs CRITICALITY reject TYPE SupportedTAs PRESENCE optional}| + { ID id-CSG-IdList CRITICALITY reject TYPE CSG-IdList PRESENCE optional}| + { ID id-DefaultPagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE optional}| + { ID id-NB-IoT-DefaultPagingDRX CRITICALITY ignore TYPE NB-IoT-DefaultPagingDRX PRESENCE optional}| + { ID id-ConnectedengNBToAddList CRITICALITY ignore TYPE ConnectedengNBList PRESENCE optional}| + { ID id-ConnectedengNBToRemoveList CRITICALITY ignore TYPE ConnectedengNBList PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- eNB Configuration Update Acknowledge +-- +-- ************************************************************** + +ENBConfigurationUpdateAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBConfigurationUpdateAcknowledgeIEs} }, + ... +} + + +ENBConfigurationUpdateAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- eNB Configuration Update Failure +-- +-- ************************************************************** + +ENBConfigurationUpdateFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBConfigurationUpdateFailureIEs} }, + ... +} + +ENBConfigurationUpdateFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, +... +} + + +-- ************************************************************** +-- +-- MME CONFIGURATION UPDATE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Configuration Update +-- +-- ************************************************************** + +MMEConfigurationUpdate ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEConfigurationUpdateIEs} }, + ... +} + +MMEConfigurationUpdateIEs S1AP-PROTOCOL-IES ::= { + { ID id-MMEname CRITICALITY ignore TYPE MMEname PRESENCE optional }| + { ID id-ServedGUMMEIs CRITICALITY reject TYPE ServedGUMMEIs PRESENCE optional }| + { ID id-RelativeMMECapacity CRITICALITY reject TYPE RelativeMMECapacity PRESENCE optional }| + { ID id-ServedDCNs CRITICALITY ignore TYPE ServedDCNs PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- MME Configuration Update Acknowledge +-- +-- ************************************************************** + +MMEConfigurationUpdateAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEConfigurationUpdateAcknowledgeIEs} }, + ... +} + + +MMEConfigurationUpdateAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- MME Configuration Update Failure +-- +-- ************************************************************** + +MMEConfigurationUpdateFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEConfigurationUpdateFailureIEs} }, + ... +} + +MMEConfigurationUpdateFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK S1 CDMA2000 TUNNELLING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Downlink S1 CDMA2000 Tunnelling +-- +-- ************************************************************** + +DownlinkS1cdma2000tunnelling ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkS1cdma2000tunnellingIEs} }, + ... +} + +DownlinkS1cdma2000tunnellingIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABSubjecttoDataForwardingList CRITICALITY ignore TYPE E-RABSubjecttoDataForwardingList PRESENCE optional }| + { ID id-cdma2000HOStatus CRITICALITY ignore TYPE Cdma2000HOStatus PRESENCE optional }| + { ID id-cdma2000RATType CRITICALITY reject TYPE Cdma2000RATType PRESENCE mandatory }| + { ID id-cdma2000PDU CRITICALITY reject TYPE Cdma2000PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK S1 CDMA2000 TUNNELLING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Uplink S1 CDMA2000 Tunnelling +-- +-- ************************************************************** + +UplinkS1cdma2000tunnelling ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkS1cdma2000tunnellingIEs} }, + ... +} + +UplinkS1cdma2000tunnellingIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-cdma2000RATType CRITICALITY reject TYPE Cdma2000RATType PRESENCE mandatory }| + { ID id-cdma2000SectorID CRITICALITY reject TYPE Cdma2000SectorID PRESENCE mandatory }| + { ID id-cdma2000HORequiredIndication CRITICALITY ignore TYPE Cdma2000HORequiredIndication PRESENCE optional }| + { ID id-cdma2000OneXSRVCCInfo CRITICALITY reject TYPE Cdma2000OneXSRVCCInfo PRESENCE optional }| + { ID id-cdma2000OneXRAND CRITICALITY reject TYPE Cdma2000OneXRAND PRESENCE optional }| + { ID id-cdma2000PDU CRITICALITY reject TYPE Cdma2000PDU PRESENCE mandatory }| + { ID id-EUTRANRoundTripDelayEstimationInfo CRITICALITY ignore TYPE EUTRANRoundTripDelayEstimationInfo PRESENCE optional }, + -- Extension for Release 9 to assist target HRPD access with the acquisition of the UE -- + ... +} + + +-- ************************************************************** +-- +-- UE CAPABILITY INFO INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Capability Info Indication +-- +-- ************************************************************** + +UECapabilityInfoIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UECapabilityInfoIndicationIEs} }, + ... +} + +UECapabilityInfoIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE mandatory}| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional}| + { ID id-UE-Application-Layer-Measurement-Capability CRITICALITY ignore TYPE UE-Application-Layer-Measurement-Capability PRESENCE optional}| + { ID id-LTE-M-Indication CRITICALITY ignore TYPE LTE-M-Indication PRESENCE optional}| + { ID id-UERadioCapability-NR-Format CRITICALITY ignore TYPE UERadioCapability PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- eNB STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Status Transfer +-- +-- ************************************************************** + +ENBStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBStatusTransferIEs} }, + ... +} + +ENBStatusTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-StatusTransfer-TransparentContainer CRITICALITY reject TYPE ENB-StatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- MME STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Status Transfer +-- +-- ************************************************************** + +MMEStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEStatusTransferIEs} }, + ... +} + +MMEStatusTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-StatusTransfer-TransparentContainer CRITICALITY reject TYPE ENB-StatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- TRACE ELEMENTARY PROCEDURES +-- +-- ************************************************************** +-- ************************************************************** +-- +-- Trace Start +-- +-- ************************************************************** + +TraceStart ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {TraceStartIEs} }, + ... +} + +TraceStartIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Trace Failure Indication +-- +-- ************************************************************** + +TraceFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {TraceFailureIndicationIEs} }, + ... +} + +TraceFailureIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-UTRAN-Trace-ID CRITICALITY ignore TYPE E-UTRAN-Trace-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- DEACTIVATE TRACE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Deactivate Trace +-- +-- ************************************************************** + +DeactivateTrace ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { DeactivateTraceIEs} }, + ... +} + +DeactivateTraceIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-UTRAN-Trace-ID CRITICALITY ignore TYPE E-UTRAN-Trace-ID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- CELL TRAFFIC TRACE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Cell Traffic Trace +-- +-- ************************************************************** + +CellTrafficTrace ::= SEQUENCE { +protocolIEs ProtocolIE-Container { { CellTrafficTraceIEs } }, +... +} + +CellTrafficTraceIEs S1AP-PROTOCOL-IES ::= { + {ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + {ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + {ID id-E-UTRAN-Trace-ID CRITICALITY ignore TYPE E-UTRAN-Trace-ID PRESENCE mandatory }| + {ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory }| + {ID id-TraceCollectionEntityIPAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE mandatory }| + {ID id-PrivacyIndicator CRITICALITY ignore TYPE PrivacyIndicator PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- LOCATION ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Location Reporting Control +-- +-- ************************************************************** + +LocationReportingControl ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { LocationReportingControlIEs} }, + ... +} + +LocationReportingControlIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-RequestType CRITICALITY ignore TYPE RequestType PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Location Report Failure Indication +-- +-- ************************************************************** + +LocationReportingFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { LocationReportingFailureIndicationIEs} }, + ... +} + +LocationReportingFailureIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Location Report +-- +-- ************************************************************** + +LocationReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { LocationReportIEs} }, + ... +} + +LocationReportIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory }| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory }| + { ID id-RequestType CRITICALITY ignore TYPE RequestType PRESENCE mandatory }| + { ID id-PSCellInformation CRITICALITY ignore TYPE PSCellInformation PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- OVERLOAD ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Overload Start +-- +-- ************************************************************** + +OverloadStart ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {OverloadStartIEs} }, + ... +} + +OverloadStartIEs S1AP-PROTOCOL-IES ::= { + { ID id-OverloadResponse CRITICALITY reject TYPE OverloadResponse PRESENCE mandatory }| + { ID id-GUMMEIList CRITICALITY ignore TYPE GUMMEIList PRESENCE optional }| + { ID id-TrafficLoadReductionIndication CRITICALITY ignore TYPE TrafficLoadReductionIndication PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- Overload Stop +-- +-- ************************************************************** + +OverloadStop ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {OverloadStopIEs} }, + ... +} + +OverloadStopIEs S1AP-PROTOCOL-IES ::= { +{ ID id-GUMMEIList CRITICALITY ignore TYPE GUMMEIList PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- WRITE-REPLACE WARNING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Write-Replace Warning Request +-- +-- ************************************************************** + + +WriteReplaceWarningRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {WriteReplaceWarningRequestIEs} }, + ... +} + +WriteReplaceWarningRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-WarningAreaList CRITICALITY ignore TYPE WarningAreaList PRESENCE optional }| + { ID id-RepetitionPeriod CRITICALITY reject TYPE RepetitionPeriod PRESENCE mandatory }| + { ID id-ExtendedRepetitionPeriod CRITICALITY reject TYPE ExtendedRepetitionPeriod PRESENCE optional }| + { ID id-NumberofBroadcastRequest CRITICALITY reject TYPE NumberofBroadcastRequest PRESENCE mandatory }| + { ID id-WarningType CRITICALITY ignore TYPE WarningType PRESENCE optional }| + { ID id-WarningSecurityInfo CRITICALITY ignore TYPE WarningSecurityInfo PRESENCE optional }| + { ID id-DataCodingScheme CRITICALITY ignore TYPE DataCodingScheme PRESENCE optional }| + { ID id-WarningMessageContents CRITICALITY ignore TYPE WarningMessageContents PRESENCE optional }| + { ID id-ConcurrentWarningMessageIndicator CRITICALITY reject TYPE ConcurrentWarningMessageIndicator PRESENCE optional }| + { ID id-WarningAreaCoordinates CRITICALITY ignore TYPE WarningAreaCoordinates PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- Write-Replace Warning Response +-- +-- ************************************************************** + +WriteReplaceWarningResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {WriteReplaceWarningResponseIEs} }, + ... +} + +WriteReplaceWarningResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-BroadcastCompletedAreaList CRITICALITY ignore TYPE BroadcastCompletedAreaList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- eNB DIRECT INFORMATION TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Direct Information Transfer +-- +-- ************************************************************** + +ENBDirectInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ ENBDirectInformationTransferIEs}}, + ... +} + +ENBDirectInformationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-Inter-SystemInformationTransferTypeEDT CRITICALITY reject TYPE Inter-SystemInformationTransferType PRESENCE mandatory }, + ... +} + +Inter-SystemInformationTransferType ::= CHOICE { + rIMTransfer RIMTransfer, + ... +} + +-- ************************************************************** +-- +-- MME DIRECT INFORMATION TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Direct Information Transfer +-- +-- ************************************************************** + +MMEDirectInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ MMEDirectInformationTransferIEs}}, + ... +} + +MMEDirectInformationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-Inter-SystemInformationTransferTypeMDT CRITICALITY reject TYPE Inter-SystemInformationTransferType PRESENCE mandatory }, + ... +} +-- ************************************************************** +-- +-- eNB CONFIGURATION TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Configuration Transfer +-- +-- ************************************************************** + +ENBConfigurationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ ENBConfigurationTransferIEs}}, + ... +} + +ENBConfigurationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-SONConfigurationTransferECT CRITICALITY ignore TYPE SONConfigurationTransfer PRESENCE optional }| + { ID id-EN-DCSONConfigurationTransfer-ECT CRITICALITY ignore TYPE EN-DCSONConfigurationTransfer PRESENCE optional }| + { ID id-IntersystemSONConfigurationTransferECT CRITICALITY ignore TYPE IntersystemSONConfigurationTransfer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- MME CONFIGURATION TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Configuration Transfer +-- +-- ************************************************************** + +MMEConfigurationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ MMEConfigurationTransferIEs}}, + ... +} + +MMEConfigurationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-SONConfigurationTransferMCT CRITICALITY ignore TYPE SONConfigurationTransfer PRESENCE optional }| + { ID id-EN-DCSONConfigurationTransfer-MCT CRITICALITY ignore TYPE EN-DCSONConfigurationTransfer PRESENCE optional }| + { ID id-IntersystemSONConfigurationTransferMCT CRITICALITY ignore TYPE IntersystemSONConfigurationTransfer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PRIVATE MESSAGE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Private Message +-- +-- ************************************************************** + +PrivateMessage ::= SEQUENCE { + privateIEs PrivateIE-Container {{PrivateMessageIEs}}, + ... +} + +PrivateMessageIEs S1AP-PRIVATE-IES ::= { + ... +} + +-- ************************************************************** +-- +-- KILL PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Kill Request +-- +-- ************************************************************** + + +KillRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {KillRequestIEs} }, + ... +} + +KillRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory}| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory}| + { ID id-WarningAreaList CRITICALITY ignore TYPE WarningAreaList PRESENCE optional}| + { ID id-KillAllWarningMessages CRITICALITY reject TYPE KillAllWarningMessages PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- Kill Response +-- +-- ************************************************************** + +KillResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {KillResponseIEs} }, + ... +} + +KillResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-BroadcastCancelledAreaList CRITICALITY ignore TYPE BroadcastCancelledAreaList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS RESTART INDICATION PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PWS Restart Indication +-- +-- ************************************************************** + +PWSRestartIndication::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ PWSRestartIndicationIEs}}, + ... +} + +PWSRestartIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-ECGIListForRestart CRITICALITY reject TYPE ECGIListForRestart PRESENCE mandatory}| + { ID id-Global-ENB-ID CRITICALITY reject TYPE Global-ENB-ID PRESENCE mandatory}| + { ID id-TAIListForRestart CRITICALITY reject TYPE TAIListForRestart PRESENCE mandatory}| + { ID id-EmergencyAreaIDListForRestart CRITICALITY reject TYPE EmergencyAreaIDListForRestart PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- PWS Failure Indication +-- +-- ************************************************************** + +PWSFailureIndication::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ PWSFailureIndicationIEs}}, + ... +} + +PWSFailureIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-PWSfailedECGIList CRITICALITY reject TYPE PWSfailedECGIList PRESENCE mandatory}| + { ID id-Global-ENB-ID CRITICALITY reject TYPE Global-ENB-ID PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- LPPA TRANSPORT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- DOWNLINK UE ASSOCIATED LPPA TRANSPORT +-- +-- ************************************************************** + +DownlinkUEAssociatedLPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{DownlinkUEAssociatedLPPaTransport-IEs}}, + ... +} + +DownlinkUEAssociatedLPPaTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Routing-ID CRITICALITY reject TYPE Routing-ID PRESENCE mandatory }| + { ID id-LPPa-PDU CRITICALITY reject TYPE LPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK UE ASSOCIATED LPPA TRANSPORT +-- +-- ************************************************************** + +UplinkUEAssociatedLPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UplinkUEAssociatedLPPaTransport-IEs}}, + ... +} + +UplinkUEAssociatedLPPaTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Routing-ID CRITICALITY reject TYPE Routing-ID PRESENCE mandatory }| + { ID id-LPPa-PDU CRITICALITY reject TYPE LPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK NON UE ASSOCIATED LPPA TRANSPORT +-- +-- ************************************************************** + +DownlinkNonUEAssociatedLPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{DownlinkNonUEAssociatedLPPaTransport-IEs}}, + ... +} + +DownlinkNonUEAssociatedLPPaTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-Routing-ID CRITICALITY reject TYPE Routing-ID PRESENCE mandatory }| + { ID id-LPPa-PDU CRITICALITY reject TYPE LPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK NON UE ASSOCIATED LPPA TRANSPORT +-- +-- ************************************************************** + +UplinkNonUEAssociatedLPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UplinkNonUEAssociatedLPPaTransport-IEs}}, + ... +} + +UplinkNonUEAssociatedLPPaTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-Routing-ID CRITICALITY reject TYPE Routing-ID PRESENCE mandatory }| + { ID id-LPPa-PDU CRITICALITY reject TYPE LPPa-PDU PRESENCE mandatory }, + ... +} + + +-- ************************************************************** +-- +-- E-RAB MODIFICATION INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Modification Indication +-- +-- ************************************************************** + +E-RABModificationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { E-RABModificationIndicationIEs} }, + ... +} + +E-RABModificationIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABToBeModifiedListBearerModInd CRITICALITY reject TYPE E-RABToBeModifiedListBearerModInd PRESENCE mandatory}| + { ID id-E-RABNotToBeModifiedListBearerModInd CRITICALITY reject TYPE E-RABNotToBeModifiedListBearerModInd PRESENCE optional}| + { ID id-CSGMembershipInfo CRITICALITY reject TYPE CSGMembershipInfo PRESENCE optional}| +-- Extension for Release 11 to support BBAI -- + { ID id-Tunnel-Information-for-BBF CRITICALITY ignore TYPE TunnelInformation PRESENCE optional}| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }| +{ ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }, + ... +} + +E-RABToBeModifiedListBearerModInd ::= E-RAB-IE-ContainerList { {E-RABToBeModifiedItemBearerModIndIEs} } + +E-RABToBeModifiedItemBearerModIndIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeModifiedItemBearerModInd CRITICALITY reject TYPE E-RABToBeModifiedItemBearerModInd PRESENCE mandatory}, + ... +} + +E-RABToBeModifiedItemBearerModInd ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + dL-GTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { { E-RABToBeModifiedItemBearerModInd-ExtIEs} } OPTIONAL, + ... +} + +E-RABToBeModifiedItemBearerModInd-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +E-RABNotToBeModifiedListBearerModInd ::= E-RAB-IE-ContainerList { {E-RABNotToBeModifiedItemBearerModIndIEs} } + +E-RABNotToBeModifiedItemBearerModIndIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABNotToBeModifiedItemBearerModInd CRITICALITY reject TYPE E-RABNotToBeModifiedItemBearerModInd PRESENCE mandatory}, + ... +} + +E-RABNotToBeModifiedItemBearerModInd ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + dL-GTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { { E-RABNotToBeModifiedItemBearerModInd-ExtIEs} } OPTIONAL, + ... +} + +E-RABNotToBeModifiedItemBearerModInd-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CSGMembershipInfo ::= SEQUENCE { + cSGMembershipStatus CSGMembershipStatus, + cSG-Id CSG-Id, + cellAccessMode CellAccessMode OPTIONAL, + pLMNidentity PLMNidentity OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { CSGMembershipInfo-ExtIEs} } OPTIONAL, + ... +} + +CSGMembershipInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- E-RAB Modification Confirm +-- +-- ************************************************************** + +E-RABModificationConfirm ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABModificationConfirmIEs} }, + ... +} + +E-RABModificationConfirmIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABModifyListBearerModConf CRITICALITY ignore TYPE E-RABModifyListBearerModConf PRESENCE optional}| + { ID id-E-RABFailedToModifyListBearerModConf CRITICALITY ignore TYPE E-RABList PRESENCE optional}| + { ID id-E-RABToBeReleasedListBearerModConf CRITICALITY ignore TYPE E-RABList PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}, + ... +} + +E-RABModifyListBearerModConf ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABModifyItemBearerModConfIEs} } + +E-RABModifyItemBearerModConfIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABModifyItemBearerModConf CRITICALITY ignore TYPE E-RABModifyItemBearerModConf PRESENCE mandatory}, + ... +} + +E-RABModifyItemBearerModConf ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + iE-Extensions ProtocolExtensionContainer { {E-RABModifyItemBearerModConfExtIEs} } OPTIONAL, + ... +} + + +E-RABModifyItemBearerModConfExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Modification Indication +-- +-- ************************************************************** + +UEContextModificationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextModificationIndicationIEs} }, + ... +} + +UEContextModificationIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-CSGMembershipInfo CRITICALITY reject TYPE CSGMembershipInfo PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- UE Context Modification Confirm +-- +-- ************************************************************** + +UEContextModificationConfirm ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextModificationConfirmIEs} }, + ... +} + +UEContextModificationConfirmIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT SUSPEND ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Suspend Request +-- +-- ************************************************************** + +UEContextSuspendRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextSuspendRequestIEs} }, + ... +} + +UEContextSuspendRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-InformationOnRecommendedCellsAndENBsForPaging CRITICALITY ignore TYPE InformationOnRecommendedCellsAndENBsForPaging PRESENCE optional}| + { ID id-CellIdentifierAndCELevelForCECapableUEs CRITICALITY ignore TYPE CellIdentifierAndCELevelForCECapableUEs PRESENCE optional}| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-TimeSinceSecondaryNodeRelease CRITICALITY ignore TYPE TimeSinceSecondaryNodeRelease PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Suspend Response +-- +-- ************************************************************** + +UEContextSuspendResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextSuspendResponseIEs} }, + ... +} + +UEContextSuspendResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RESUME ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Resume Request +-- +-- ************************************************************** + +UEContextResumeRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextResumeRequestIEs} }, + ... +} + +UEContextResumeRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABFailedToResumeListResumeReq CRITICALITY reject TYPE E-RABFailedToResumeListResumeReq PRESENCE optional}| + { ID id-RRC-Resume-Cause CRITICALITY ignore TYPE RRC-Establishment-Cause PRESENCE optional}, + ... +} + +E-RABFailedToResumeListResumeReq ::= E-RAB-IE-ContainerList { {E-RABFailedToResumeItemResumeReqIEs} } + +E-RABFailedToResumeItemResumeReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABFailedToResumeItemResumeReq CRITICALITY reject TYPE E-RABFailedToResumeItemResumeReq PRESENCE mandatory}, + ... +} + +E-RABFailedToResumeItemResumeReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { { E-RABFailedToResumeItemResumeReq-ExtIEs} } OPTIONAL, + ... +} + +E-RABFailedToResumeItemResumeReq-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- UE Context Resume Response +-- +-- ************************************************************** + +UEContextResumeResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextResumeResponseIEs} }, + ... +} + +UEContextResumeResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABFailedToResumeListResumeRes CRITICALITY reject TYPE E-RABFailedToResumeListResumeRes PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}, + ... +} + +E-RABFailedToResumeListResumeRes ::= E-RAB-IE-ContainerList { {E-RABFailedToResumeItemResumeResIEs} } + +E-RABFailedToResumeItemResumeResIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABFailedToResumeItemResumeRes CRITICALITY reject TYPE E-RABFailedToResumeItemResumeRes PRESENCE mandatory}, + ... +} + +E-RABFailedToResumeItemResumeRes ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { { E-RABFailedToResumeItemResumeRes-ExtIEs} } OPTIONAL, + ... +} + +E-RABFailedToResumeItemResumeRes-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- UE Context Resume Failure +-- +-- ************************************************************** + +UEContextResumeFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextResumeFailureIEs} }, + ... +} + +UEContextResumeFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- Connection Establishment Indication +-- +-- ************************************************************** + +ConnectionEstablishmentIndication::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ConnectionEstablishmentIndicationIEs} }, + ... +} + +ConnectionEstablishmentIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional }| + { ID id-DL-CP-SecurityInformation CRITICALITY ignore TYPE DL-CP-SecurityInformation PRESENCE optional }| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-EndIndication CRITICALITY ignore TYPE EndIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-UE-Level-QoS-Parameters CRITICALITY ignore TYPE E-RABLevelQoSParameters PRESENCE optional}| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional} +, + ... +} + +-- ************************************************************** +-- +-- Retrieve UE Information +-- +-- ************************************************************** + +RetrieveUEInformation ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { RetrieveUEInformationIEs} }, + ... +} + +RetrieveUEInformationIEs S1AP-PROTOCOL-IES ::= { + { ID id-S-TMSI CRITICALITY reject TYPE S-TMSI PRESENCE mandatory}, +... + +} + + +-- ************************************************************** + +-- UE Information Transfer +-- +-- ************************************************************** +UEInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEInformationTransferIEs} }, + ... +} + +UEInformationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-S-TMSI CRITICALITY reject TYPE S-TMSI PRESENCE mandatory}| + { ID id-UE-Level-QoS-Parameters CRITICALITY ignore TYPE E-RABLevelQoSParameters PRESENCE optional}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- eNB CP Relocation Indication +-- +-- ************************************************************** + +ENBCPRelocationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { ENBCPRelocationIndicationIEs} }, + ... +} + +ENBCPRelocationIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-S-TMSI CRITICALITY reject TYPE S-TMSI PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory}| + { ID id-UL-CP-SecurityInformation CRITICALITY reject TYPE UL-CP-SecurityInformation PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- MME CP Relocation Indication +-- +-- ************************************************************** + +MMECPRelocationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { MMECPRelocationIndicationIEs} }, + ... +} + +MMECPRelocationIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- Secondary RAT Data Usage Report +-- +-- ************************************************************** + +SecondaryRATDataUsageReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { SecondaryRATDataUsageReportIEs} }, + ... +} + +SecondaryRATDataUsageReportIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE mandatory}| + { ID id-HandoverFlag CRITICALITY ignore TYPE HandoverFlag PRESENCE optional}| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional}| + { ID id-TimeSinceSecondaryNodeRelease CRITICALITY ignore TYPE TimeSinceSecondaryNodeRelease PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY ID MAPPING PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Radio Capability ID Mapping Request +-- +-- ************************************************************** + +UERadioCapabilityIDMappingRequest::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UERadioCapabilityIDMappingRequestIEs} }, + ... +} + +UERadioCapabilityIDMappingRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE Radio Capability ID Mapping Response +-- +-- ************************************************************** + +UERadioCapabilityIDMappingResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UERadioCapabilityIDMappingResponseIEs} }, + ... +} + +UERadioCapabilityIDMappingResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +END +-- ************************************************************** +-- +-- Information Element Definitions +-- +-- ************************************************************** + +S1AP-IEs { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-IEs (2) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +IMPORTS + id-E-RABInformationListItem, + id-E-RABItem, + id-GUMMEIType, + id-Bearers-SubjectToStatusTransfer-Item, + id-Time-Synchronisation-Info, + id-x2TNLConfigurationInfo, + id-eNBX2ExtendedTransportLayerAddresses, + id-MDTConfiguration, + id-Time-UE-StayedInCell-EnhancedGranularity, + id-HO-Cause, + id-M3Configuration, + id-M4Configuration, + id-M5Configuration, + id-MDT-Location-Info, + id-SignallingBasedMDTPLMNList, + id-MobilityInformation, + id-ULCOUNTValueExtended, + id-DLCOUNTValueExtended, + id-ReceiveStatusOfULPDCPSDUsExtended, + id-eNBIndirectX2TransportLayerAddresses, + id-Muting-Availability-Indication, + id-Muting-Pattern-Information, + id-NRrestrictioninEPSasSecondaryRAT, + id-NRrestrictionin5GS, + id-Synchronisation-Information, + id-uE-HistoryInformationFromTheUE, + id-LoggedMBSFNMDT, + id-SON-Information-Report, + id-RecommendedCellItem, + id-RecommendedENBItem, + id-ProSeUEtoNetworkRelaying, + id-ULCOUNTValuePDCP-SNlength18, + id-DLCOUNTValuePDCP-SNlength18, + id-ReceiveStatusOfULPDCPSDUsPDCP-SNlength18, + id-M6Configuration, + id-M7Configuration, + id-RAT-Type, + id-extended-e-RAB-MaximumBitrateDL, + id-extended-e-RAB-MaximumBitrateUL, + id-extended-e-RAB-GuaranteedBitrateDL, + id-extended-e-RAB-GuaranteedBitrateUL, + id-extended-uEaggregateMaximumBitRateDL, + id-extended-uEaggregateMaximumBitRateUL, + id-SecondaryRATDataUsageReportItem, + id-E-RABUsageReportItem, + id-UEAppLayerMeasConfig, + id-serviceType, + id-UnlicensedSpectrumRestriction, + id-CNTypeRestrictions, + id-DownlinkPacketLossRate, + id-UplinkPacketLossRate, + id-BluetoothMeasurementConfiguration, + id-WLANMeasurementConfiguration, + id-LastNG-RANPLMNIdentity, + id-PSCellInformation, + id-IMSvoiceEPSfallbackfrom5G, + id-RequestTypeAdditionalInfo, + id-AdditionalRRMPriorityIndex, + id-ContextatSource, + id-IntersystemMeasurementConfiguration, + id-SourceNodeID, + id-NB-IoT-RLF-Report-Container, + id-MDTConfigurationNR, + id-DAPSRequestInfo, + id-DAPSResponseInfoList, + id-DAPSResponseInfoItem, + id-Bearers-SubjectToEarlyStatusTransfer-Item, + id-TraceCollectionEntityURI, + id-EmergencyIndicator, + maxnoofCSGs, + maxnoofE-RABs, + maxnoofErrors, + maxnoofBPLMNs, + maxnoofPLMNsPerMME, + maxnoofTACs, + maxnoofEPLMNs, + maxnoofEPLMNsPlusOne, + maxnoofForbLACs, + maxnoofForbTACs, + maxnoofCellsinUEHistoryInfo, + maxnoofCellID, + maxnoofDCNs, + maxnoofEmergencyAreaID, + maxnoofTAIforWarning, + maxnoofCellinTAI, + maxnoofCellinEAI, + maxnoofeNBX2TLAs, + maxnoofeNBX2ExtTLAs, + maxnoofeNBX2GTPTLAs, + maxnoofRATs, + maxnoofGroupIDs, + maxnoofMMECs, + maxnoofTAforMDT, + maxnoofCellIDforMDT, + maxnoofMDTPLMNs, + maxnoofCellsforRestart, + maxnoofRestartTAIs, + maxnoofRestartEmergencyAreaIDs, + maxnoofMBSFNAreaMDT, + maxEARFCN, + maxnoofCellsineNB, + maxnoofRecommendedCells, + maxnoofRecommendedENBs, + maxnooftimeperiods, + maxnoofCellIDforQMC, + maxnoofTAforQMC, + maxnoofPLMNforQMC, + maxnoofBluetoothName, + maxnoofWLANName, + maxnoofConnectedengNBs, + maxnoofPC5QoSFlows, + maxnooffrequencies, + maxNARFCN, + maxRS-IndexCellQual + + + + +FROM S1AP-Constants + + Criticality, + ProcedureCode, + ProtocolIE-ID, + TriggeringMessage +FROM S1AP-CommonDataTypes + + ProtocolExtensionContainer{}, + S1AP-PROTOCOL-EXTENSION, + ProtocolIE-SingleContainer{}, + S1AP-PROTOCOL-IES + +FROM S1AP-Containers; + +-- A + +Additional-GUTI::= SEQUENCE { + gUMMEI GUMMEI, + m-TMSI M-TMSI, + iE-Extensions ProtocolExtensionContainer { {Additional-GUTI-ExtIEs} } OPTIONAL, + ... +} + +Additional-GUTI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +AdditionalRRMPriorityIndex ::= BIT STRING (SIZE(32)) + +AerialUEsubscriptionInformation ::= ENUMERATED { + allowed, + not-allowed, + ... +} + +AreaScopeOfMDT ::= CHOICE { + cellBased CellBasedMDT, + tABased TABasedMDT, + pLMNWide NULL, + ..., + tAIBased TAIBasedMDT +} + + +AreaScopeOfQMC ::= CHOICE { + cellBased CellBasedQMC, + tABased TABasedQMC, + tAIBased TAIBasedQMC, + pLMNAreaBased PLMNAreaBasedQMC, + ... +} + +AllocationAndRetentionPriority ::= SEQUENCE { + priorityLevel PriorityLevel, + pre-emptionCapability Pre-emptionCapability, + pre-emptionVulnerability Pre-emptionVulnerability, + iE-Extensions ProtocolExtensionContainer { {AllocationAndRetentionPriority-ExtIEs} } OPTIONAL, + ... +} + +AllocationAndRetentionPriority-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +AssistanceDataForCECapableUEs ::= SEQUENCE { + cellIdentifierAndCELevelForCECapableUEs CellIdentifierAndCELevelForCECapableUEs, + iE-Extensions ProtocolExtensionContainer { { InformationForCECapableUEs-ExtIEs} } OPTIONAL, + ... +} + +InformationForCECapableUEs-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +AssistanceDataForPaging ::= SEQUENCE { + assistanceDataForRecommendedCells AssistanceDataForRecommendedCells OPTIONAL, + assistanceDataForCECapableUEs AssistanceDataForCECapableUEs OPTIONAL, + pagingAttemptInformation PagingAttemptInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { AssistanceDataForPaging-ExtIEs} } OPTIONAL, + ... +} + +AssistanceDataForPaging-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +AssistanceDataForRecommendedCells ::= SEQUENCE { + recommendedCellsForPaging RecommendedCellsForPaging, + iE-Extensions ProtocolExtensionContainer { { AssistanceDataForRecommendedCells-ExtIEs} } OPTIONAL, + ... +} + +AssistanceDataForRecommendedCells-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- B + +Bearers-SubjectToStatusTransferList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { { Bearers-SubjectToStatusTransfer-ItemIEs } } + +Bearers-SubjectToStatusTransfer-ItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-Bearers-SubjectToStatusTransfer-Item CRITICALITY ignore TYPE Bearers-SubjectToStatusTransfer-Item PRESENCE mandatory }, + ... +} + +Bearers-SubjectToStatusTransfer-Item ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + uL-COUNTvalue COUNTvalue, + dL-COUNTvalue COUNTvalue, + receiveStatusofULPDCPSDUs ReceiveStatusofULPDCPSDUs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {Bearers-SubjectToStatusTransfer-ItemExtIEs} } OPTIONAL, + ... +} + +Bearers-SubjectToStatusTransfer-ItemExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-ULCOUNTValueExtended CRITICALITY ignore EXTENSION COUNTValueExtended PRESENCE optional}| + { ID id-DLCOUNTValueExtended CRITICALITY ignore EXTENSION COUNTValueExtended PRESENCE optional}| + { ID id-ReceiveStatusOfULPDCPSDUsExtended CRITICALITY ignore EXTENSION ReceiveStatusOfULPDCPSDUsExtended PRESENCE optional}| + { ID id-ULCOUNTValuePDCP-SNlength18 CRITICALITY ignore EXTENSION COUNTvaluePDCP-SNlength18 PRESENCE optional}| + { ID id-DLCOUNTValuePDCP-SNlength18 CRITICALITY ignore EXTENSION COUNTvaluePDCP-SNlength18 PRESENCE optional}| + { ID id-ReceiveStatusOfULPDCPSDUsPDCP-SNlength18 CRITICALITY ignore EXTENSION ReceiveStatusOfULPDCPSDUsPDCP-SNlength18 PRESENCE optional}, + ... +} + +Bearers-SubjectToEarlyStatusTransferList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { { Bearers-SubjectToEarlyStatusTransfer-ItemIEs } } + +Bearers-SubjectToEarlyStatusTransfer-ItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-Bearers-SubjectToEarlyStatusTransfer-Item CRITICALITY ignore TYPE Bearers-SubjectToEarlyStatusTransfer-Item PRESENCE mandatory}, + ... +} + +Bearers-SubjectToEarlyStatusTransfer-Item ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dLCOUNT-PDCP-SNlength DLCOUNT-PDCP-SNlength, + iE-Extensions ProtocolExtensionContainer { {Bearers-SubjectToEarlyStatusTransfer-ItemExtIEs} } OPTIONAL, + ... +} + +Bearers-SubjectToEarlyStatusTransfer-ItemExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +BearerType ::= ENUMERATED { + non-IP, + ... +} + +BitRate ::= INTEGER (0..10000000000) + +BluetoothMeasurementConfiguration ::= SEQUENCE { + bluetoothMeasConfig BluetoothMeasConfig, + bluetoothMeasConfigNameList BluetoothMeasConfigNameList OPTIONAL, + bt-rssi ENUMERATED {true, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { BluetoothMeasurementConfiguration-ExtIEs } } OPTIONAL, + ... +} + +BluetoothMeasurementConfiguration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +BluetoothMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofBluetoothName)) OF BluetoothName + +BluetoothMeasConfig::= ENUMERATED {setup,...} + +BluetoothName ::= OCTET STRING (SIZE (1..248)) + +BPLMNs ::= SEQUENCE (SIZE(1.. maxnoofBPLMNs)) OF PLMNidentity + +BroadcastCancelledAreaList ::= CHOICE { + cellID-Cancelled CellID-Cancelled, + tAI-Cancelled TAI-Cancelled, + emergencyAreaID-Cancelled EmergencyAreaID-Cancelled, + ... +} + +BroadcastCompletedAreaList ::= CHOICE { + cellID-Broadcast CellID-Broadcast, + tAI-Broadcast TAI-Broadcast, + emergencyAreaID-Broadcast EmergencyAreaID-Broadcast, + ... +} + + +-- C + +CancelledCellinEAI ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CancelledCellinEAI-Item + +CancelledCellinEAI-Item ::= SEQUENCE { + eCGI EUTRAN-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellinEAI-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellinEAI-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CancelledCellinTAI ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CancelledCellinTAI-Item + +CancelledCellinTAI-Item ::= SEQUENCE{ + eCGI EUTRAN-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellinTAI-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellinTAI-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Cause ::= CHOICE { + radioNetwork CauseRadioNetwork, + transport CauseTransport, + nas CauseNas, + protocol CauseProtocol, + misc CauseMisc, + ... +} + +CauseMisc ::= ENUMERATED { + control-processing-overload, + not-enough-user-plane-processing-resources, + hardware-failure, + om-intervention, + unspecified, + unknown-PLMN, +... +} + +CauseProtocol ::= ENUMERATED { + transfer-syntax-error, + abstract-syntax-error-reject, + abstract-syntax-error-ignore-and-notify, + message-not-compatible-with-receiver-state, + semantic-error, + abstract-syntax-error-falsely-constructed-message, + unspecified, + ... +} + +CauseRadioNetwork ::= ENUMERATED { + unspecified, + tx2relocoverall-expiry, + successful-handover, + release-due-to-eutran-generated-reason, + handover-cancelled, + partial-handover, + ho-failure-in-target-EPC-eNB-or-target-system, + ho-target-not-allowed, + tS1relocoverall-expiry, + tS1relocprep-expiry, + cell-not-available, + unknown-targetID, + no-radio-resources-available-in-target-cell, + unknown-mme-ue-s1ap-id, + unknown-enb-ue-s1ap-id, + unknown-pair-ue-s1ap-id, + handover-desirable-for-radio-reason, + time-critical-handover, + resource-optimisation-handover, + reduce-load-in-serving-cell, + user-inactivity, + radio-connection-with-ue-lost, + load-balancing-tau-required, + cs-fallback-triggered, + ue-not-available-for-ps-service, + radio-resources-not-available, + failure-in-radio-interface-procedure, + invalid-qos-combination, + interrat-redirection, + interaction-with-other-procedure, + unknown-E-RAB-ID, + multiple-E-RAB-ID-instances, + encryption-and-or-integrity-protection-algorithms-not-supported, + s1-intra-system-handover-triggered, + s1-inter-system-handover-triggered, + x2-handover-triggered, + ..., + redirection-towards-1xRTT, + not-supported-QCI-value, + invalid-CSG-Id, + release-due-to-pre-emption, + n26-interface-not-available, + insufficient-ue-capabilities + +} + +CauseTransport ::= ENUMERATED { + transport-resource-unavailable, + unspecified, + ... +} + +CauseNas ::= ENUMERATED { + normal-release, + authentication-failure, + detach, + unspecified, + ..., + csg-subscription-expiry +} + +CellAccessMode ::= ENUMERATED { + hybrid, + ... +} + +CellIdentifierAndCELevelForCECapableUEs ::= SEQUENCE { + global-Cell-ID EUTRAN-CGI, + cELevel CELevel, + iE-Extensions ProtocolExtensionContainer { { CellIdentifierAndCELevelForCECapableUEs-ExtIEs} } OPTIONAL, + ... +} + +CellIdentifierAndCELevelForCECapableUEs-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- Coverage Enhancement level encoded according to TS 36.331 [16] -- +CELevel ::= OCTET STRING + +CE-mode-B-SupportIndicator ::= ENUMERATED { + supported, + ... +} + +CellIdentity ::= BIT STRING (SIZE (28)) + +CellID-Broadcast ::= SEQUENCE (SIZE(1..maxnoofCellID)) OF CellID-Broadcast-Item + +CellID-Broadcast-Item ::= SEQUENCE { + eCGI EUTRAN-CGI, + iE-Extensions ProtocolExtensionContainer { {CellID-Broadcast-Item-ExtIEs} } OPTIONAL, + ... +} + +CellID-Broadcast-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CellID-Cancelled::= SEQUENCE (SIZE(1..maxnoofCellID)) OF CellID-Cancelled-Item + +CellID-Cancelled-Item ::= SEQUENCE { + eCGI EUTRAN-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CellID-Cancelled-Item-ExtIEs} } OPTIONAL, + ... +} + +CellID-Cancelled-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CellBasedMDT::= SEQUENCE { + cellIdListforMDT CellIdListforMDT, + iE-Extensions ProtocolExtensionContainer { {CellBasedMDT-ExtIEs} } OPTIONAL, + ... +} + +CellBasedMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIdListforMDT ::= SEQUENCE (SIZE(1..maxnoofCellIDforMDT)) OF EUTRAN-CGI + +CellBasedQMC::= SEQUENCE { + cellIdListforQMC CellIdListforQMC, + iE-Extensions ProtocolExtensionContainer { {CellBasedQMC-ExtIEs} } OPTIONAL, + ... +} + +CellBasedQMC-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIdListforQMC ::= SEQUENCE (SIZE(1..maxnoofCellIDforQMC)) OF EUTRAN-CGI + +Cdma2000PDU ::= OCTET STRING + +Cdma2000RATType ::= ENUMERATED { + hRPD, + onexRTT, + ... +} + +Cdma2000SectorID ::= OCTET STRING + +Cdma2000HOStatus ::= ENUMERATED { + hOSuccess, + hOFailure, + ... +} + +Cdma2000HORequiredIndication ::= ENUMERATED { + true, + ... +} + +Cdma2000OneXSRVCCInfo ::= SEQUENCE { + cdma2000OneXMEID Cdma2000OneXMEID, + cdma2000OneXMSI Cdma2000OneXMSI, + cdma2000OneXPilot Cdma2000OneXPilot, + iE-Extensions ProtocolExtensionContainer { {Cdma2000OneXSRVCCInfo-ExtIEs} } OPTIONAL, + ... +} + +Cdma2000OneXSRVCCInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Cdma2000OneXMEID ::= OCTET STRING + +Cdma2000OneXMSI ::= OCTET STRING + +Cdma2000OneXPilot ::= OCTET STRING + +Cdma2000OneXRAND ::= OCTET STRING + + +Cell-Size ::= ENUMERATED {verysmall, small, medium, large, ...} + +CellType ::= SEQUENCE { + cell-Size Cell-Size, + iE-Extensions ProtocolExtensionContainer { { CellType-ExtIEs}} OPTIONAL, + ... +} + +CellType-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CGI ::= SEQUENCE { + pLMNidentity PLMNidentity, + lAC LAC, + cI CI, + rAC RAC OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {CGI-ExtIEs} } OPTIONAL, + ... + } + +CGI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CI ::= OCTET STRING (SIZE (2)) + +CNDomain ::= ENUMERATED { + ps, + cs +} + +CNTypeRestrictions::= SEQUENCE (SIZE(1.. maxnoofEPLMNsPlusOne)) OF CNTypeRestrictions-Item + +CNTypeRestrictions-Item ::= SEQUENCE { + pLMN-Identity PLMNidentity, + cNType CNType, + iE-Extensions ProtocolExtensionContainer { { CNTypeRestrictions-Item-ExtIEs} } OPTIONAL, + ... +} + +CNTypeRestrictions-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CNType ::= ENUMERATED { + fiveGCForbidden, + ..., + epc-Forbiddden +} + +ConcurrentWarningMessageIndicator ::= ENUMERATED { + true +} + +ConnectedengNBList ::= SEQUENCE (SIZE(1..maxnoofConnectedengNBs)) OF ConnectedengNBItem + +ConnectedengNBItem ::= SEQUENCE { + en-gNB-ID En-gNB-ID, + supportedTAs SupportedTAs, + iE-Extensions ProtocolExtensionContainer { {ConnectedengNBItem-ExtIEs} } OPTIONAL, + ... +} + +ConnectedengNBItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ContextatSource ::= SEQUENCE { + sourceNG-RAN-node-ID Global-RAN-NODE-ID, + rAN-UE-NGAP-ID RAN-UE-NGAP-ID, + iE-Extensions ProtocolExtensionContainer { {ContextatSource-ExtIEs} } OPTIONAL, + ... +} + +ContextatSource-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Correlation-ID ::= OCTET STRING (SIZE (4)) + +CSFallbackIndicator ::= ENUMERATED { + cs-fallback-required, + ..., + cs-fallback-high-priority +} + +AdditionalCSFallbackIndicator ::= ENUMERATED { + no-restriction, + restriction, + ... +} + +CSG-Id ::= BIT STRING (SIZE (27)) + + +CSG-IdList ::= SEQUENCE (SIZE (1.. maxnoofCSGs)) OF CSG-IdList-Item + +CSG-IdList-Item ::= SEQUENCE { + cSG-Id CSG-Id, + iE-Extensions ProtocolExtensionContainer { {CSG-IdList-Item-ExtIEs} } OPTIONAL, + ... +} + +CSG-IdList-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CSGMembershipStatus ::= ENUMERATED { + member, + not-member +} + + +COUNTvalue ::= SEQUENCE { + pDCP-SN PDCP-SN, + hFN HFN, + iE-Extensions ProtocolExtensionContainer { {COUNTvalue-ExtIEs} } OPTIONAL, + ... +} +COUNTvalue-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +COUNTValueExtended ::= SEQUENCE { + pDCP-SNExtended PDCP-SNExtended, + hFNModified HFNModified, + iE-Extensions ProtocolExtensionContainer { {COUNTValueExtended-ExtIEs} } OPTIONAL, + ... +} + +COUNTValueExtended-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +COUNTvaluePDCP-SNlength18 ::= SEQUENCE { + pDCP-SNlength18 PDCP-SNlength18, + hFNforPDCP-SNlength18 HFNforPDCP-SNlength18, + iE-Extensions ProtocolExtensionContainer { {COUNTvaluePDCP-SNlength18-ExtIEs} } OPTIONAL, + ... +} + +COUNTvaluePDCP-SNlength18-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Coverage-Level ::= ENUMERATED { + extendedcoverage, + ... +} + +CriticalityDiagnostics ::= SEQUENCE { + procedureCode ProcedureCode OPTIONAL, + triggeringMessage TriggeringMessage OPTIONAL, + procedureCriticality Criticality OPTIONAL, + iEsCriticalityDiagnostics CriticalityDiagnostics-IE-List OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{CriticalityDiagnostics-ExtIEs}} OPTIONAL, + ... +} + +CriticalityDiagnostics-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CriticalityDiagnostics-IE-List ::= SEQUENCE (SIZE (1.. maxnoofErrors)) OF CriticalityDiagnostics-IE-Item + +CriticalityDiagnostics-IE-Item ::= SEQUENCE { + iECriticality Criticality, + iE-ID ProtocolIE-ID, + typeOfError TypeOfError, + iE-Extensions ProtocolExtensionContainer {{CriticalityDiagnostics-IE-Item-ExtIEs}} OPTIONAL, + ... +} + +CriticalityDiagnostics-IE-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- D + +DAPSRequestInfo ::= SEQUENCE { + dAPSIndicator ENUMERATED {dAPS-HO-required, ...}, + iE-Extensions ProtocolExtensionContainer { {DAPSRequestInfo-ExtIEs} } OPTIONAL, + ... +} + +DAPSRequestInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +DAPSResponseInfoList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { { DAPSResponseInfoListIEs } } + +DAPSResponseInfoListIEs S1AP-PROTOCOL-IES ::= { + { ID id-DAPSResponseInfoItem CRITICALITY ignore TYPE DAPSResponseInfoItem PRESENCE mandatory}, + ... +} + +DAPSResponseInfoItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dAPSResponseInfo DAPSResponseInfo, + iE-Extensions ProtocolExtensionContainer { {DAPSResponseInfoItem-ExtIEs} } OPTIONAL, + ... +} + +DAPSResponseInfoItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +DAPSResponseInfo ::= SEQUENCE { + dapsresponseindicator ENUMERATED {dAPS-HO-accepted,dAPS-HO-not-accepted,...}, + iE-Extensions ProtocolExtensionContainer { { DAPSResponseInfo-ExtIEs} } OPTIONAL, + ... +} + +DAPSResponseInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +DataCodingScheme ::= BIT STRING (SIZE (8)) + +DataSize ::= INTEGER(1..4095, ...) + +DCN-ID ::= INTEGER (0..65535) + +ServedDCNs ::= SEQUENCE (SIZE(0..maxnoofDCNs)) OF ServedDCNsItem + +ServedDCNsItem ::= SEQUENCE { + dCN-ID DCN-ID, + relativeDCNCapacity RelativeMMECapacity, + iE-Extensions ProtocolExtensionContainer { {ServedDCNsItem-ExtIEs} } OPTIONAL, + ... +} + +ServedDCNsItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +DL-CP-SecurityInformation ::= SEQUENCE { + dl-NAS-MAC DL-NAS-MAC, + iE-Extensions ProtocolExtensionContainer { { DL-CP-SecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +DL-CP-SecurityInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +DL-Forwarding ::= ENUMERATED { + dL-Forwarding-proposed, + ... +} + +DL-NAS-MAC ::= BIT STRING (SIZE (16)) + +DLCOUNT-PDCP-SNlength ::= CHOICE { + dLCOUNTValuePDCP-SNlength12 COUNTvalue, + dLCOUNTValuePDCP-SNlength15 COUNTValueExtended, + dLCOUNTValuePDCP-SNlength18 COUNTvaluePDCP-SNlength18, + ... +} + +Direct-Forwarding-Path-Availability ::= ENUMERATED { + directPathAvailable, + ... +} + +Data-Forwarding-Not-Possible ::= ENUMERATED { + data-Forwarding-not-Possible, + ... +} + +DLNASPDUDeliveryAckRequest ::= ENUMERATED { + requested, + ... +} + +-- E + +EARFCN ::= INTEGER(0..maxEARFCN, ...) + +ECGIList ::= SEQUENCE (SIZE(1..maxnoofCellID)) OF EUTRAN-CGI + +PWSfailedECGIList ::= SEQUENCE (SIZE(1..maxnoofCellsineNB)) OF EUTRAN-CGI + +EDT-Session ::= ENUMERATED { + true, + ... +} + +EmergencyAreaIDList ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaID + +EmergencyAreaID ::= OCTET STRING (SIZE (3)) + +EmergencyAreaID-Broadcast ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaID-Broadcast-Item + +EmergencyAreaID-Broadcast-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + completedCellinEAI CompletedCellinEAI, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaID-Broadcast-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaID-Broadcast-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaID-Cancelled ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaID-Cancelled-Item + +EmergencyAreaID-Cancelled-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + cancelledCellinEAI CancelledCellinEAI, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaID-Cancelled-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaID-Cancelled-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CompletedCellinEAI ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CompletedCellinEAI-Item + +CompletedCellinEAI-Item ::= SEQUENCE { + eCGI EUTRAN-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellinEAI-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellinEAI-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ECGI-List ::= SEQUENCE (SIZE(1..maxnoofCellsineNB)) OF EUTRAN-CGI + +EmergencyAreaIDListForRestart ::= SEQUENCE (SIZE(1..maxnoofRestartEmergencyAreaIDs)) OF EmergencyAreaID + +EmergencyIndicator ::= ENUMERATED { + true, + ... +} + +ENB-EarlyStatusTransfer-TransparentContainer ::= SEQUENCE { + bearers-SubjectToEarlyStatusTransferList Bearers-SubjectToEarlyStatusTransferList, + iE-Extensions ProtocolExtensionContainer { {ENB-EarlyStatusTransfer-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +ENB-EarlyStatusTransfer-TransparentContainer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ENB-ID ::= CHOICE { + macroENB-ID BIT STRING (SIZE(20)), + homeENB-ID BIT STRING (SIZE(28)), + ... , + short-macroENB-ID BIT STRING (SIZE(18)), + long-macroENB-ID BIT STRING (SIZE(21)) +} + +En-gNB-ID ::= BIT STRING (SIZE(22..32, ...)) + +GERAN-Cell-ID ::= SEQUENCE { + lAI LAI, + rAC RAC, + cI CI, + iE-Extensions ProtocolExtensionContainer { { GERAN-Cell-ID-ExtIEs} } OPTIONAL, + ... +} + +GERAN-Cell-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Global-ENB-ID ::= SEQUENCE { + pLMNidentity PLMNidentity, + eNB-ID ENB-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalENB-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalENB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Global-en-gNB-ID ::= SEQUENCE { + pLMNidentity PLMNidentity, + en-gNB-ID En-gNB-ID, + iE-Extensions ProtocolExtensionContainer { {Global-en-gNB-ID-ExtIEs} } OPTIONAL, + ... +} + +Global-en-gNB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +GUMMEIList::= SEQUENCE (SIZE (1.. maxnoofMMECs)) OF GUMMEI + +ENB-StatusTransfer-TransparentContainer ::= SEQUENCE { + bearers-SubjectToStatusTransferList Bearers-SubjectToStatusTransferList, + iE-Extensions ProtocolExtensionContainer { {ENB-StatusTransfer-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +ENB-StatusTransfer-TransparentContainer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ENB-UE-S1AP-ID ::= INTEGER (0..16777215) + +ENBname ::= PrintableString (SIZE (1..150,...)) + +ENBX2TLAs ::= SEQUENCE (SIZE(1.. maxnoofeNBX2TLAs)) OF TransportLayerAddress + +EncryptionAlgorithms ::= BIT STRING (SIZE (16,...)) + +EN-DCSONConfigurationTransfer ::= SEQUENCE { + transfertype EN-DCSONTransferType, + sONInformation SONInformation, + x2TNLConfigInfo X2TNLConfigurationInfo OPTIONAL, + -- This IE shall be present if the SON Information IE contains the SON Information Request IE and the SON Information Request IE is set to X2TNL Configuration Info -- + iE-Extensions ProtocolExtensionContainer { {EN-DCSONConfigurationTransfer-ExtIEs} } OPTIONAL, +... +} + +EN-DCSONConfigurationTransfer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EN-DCSONTransferType ::= CHOICE { + request EN-DCTransferTypeRequest, + reply EN-DCTransferTypeReply, + ... +} + +EN-DCTransferTypeRequest ::= SEQUENCE { + sourceeNB EN-DCSONeNBIdentification, + targetengNB EN-DCSONengNBIdentification, + targeteNB EN-DCSONeNBIdentification OPTIONAL, + associatedTAI TAI OPTIONAL, + broadcast5GSTAI FiveGSTAI OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {EN-DCTransferTypeRequest-ExtIEs} } OPTIONAL, +... +} + +EN-DCTransferTypeRequest-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EN-DCTransferTypeReply ::= SEQUENCE { + sourceengNB EN-DCSONengNBIdentification, + targeteNB EN-DCSONeNBIdentification, + iE-Extensions ProtocolExtensionContainer { {EN-DCTransferTypeReply-ExtIEs} } OPTIONAL, +... +} + +EN-DCTransferTypeReply-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EN-DCSONeNBIdentification ::= SEQUENCE { + globaleNBID Global-ENB-ID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { {EN-DCSONeNBIdentification-ExtIEs} } OPTIONAL, +... +} + +EN-DCSONeNBIdentification-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EN-DCSONengNBIdentification ::= SEQUENCE { + globalengNBID Global-en-gNB-ID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { {EN-DCSONengNBIdentification-ExtIEs} } OPTIONAL, +... +} + +EN-DCSONengNBIdentification-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EndIndication ::= ENUMERATED { + no-further-data, + further-data-exists, + ... +} + +EnhancedCoverageRestricted ::= ENUMERATED { + restricted, + ... +} + +CE-ModeBRestricted ::= ENUMERATED { + restricted, + not-restricted, + ... +} + +EPLMNs ::= SEQUENCE (SIZE(1..maxnoofEPLMNs)) OF PLMNidentity +EventType ::= ENUMERATED { + direct, + change-of-serve-cell, + stop-change-of-serve-cell, + ... +} + +E-RAB-ID ::= INTEGER (0..15, ...) + +E-RABInformationList ::= SEQUENCE (SIZE (1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { { E-RABInformationListIEs } } + +E-RABInformationListIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABInformationListItem CRITICALITY ignore TYPE E-RABInformationListItem PRESENCE mandatory }, + ... +} + +E-RABInformationListItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dL-Forwarding DL-Forwarding OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABInformationListItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABInformationListItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-DAPSRequestInfo CRITICALITY ignore EXTENSION DAPSRequestInfo PRESENCE optional }, + ... +} + +E-RABList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABItemIEs} } + +E-RABItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABItem CRITICALITY ignore TYPE E-RABItem PRESENCE mandatory }, + ... +} + +E-RABItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {E-RABItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +E-RABLevelQoSParameters ::= SEQUENCE { + qCI QCI, + allocationRetentionPriority AllocationAndRetentionPriority, + gbrQosInformation GBR-QosInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABQoSParameters-ExtIEs} } OPTIONAL, + ... +} + +E-RABUsageReportList ::= SEQUENCE (SIZE(1..maxnooftimeperiods)) OF ProtocolIE-SingleContainer { {E-RABUsageReportItemIEs} } + +E-RABUsageReportItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABUsageReportItem CRITICALITY ignore TYPE E-RABUsageReportItem PRESENCE mandatory }, + ... +} + +E-RABUsageReportItem ::= SEQUENCE { + startTimestamp OCTET STRING (SIZE(4)), + endTimestamp OCTET STRING (SIZE(4)), + usageCountUL INTEGER (0..18446744073709551615), + usageCountDL INTEGER (0..18446744073709551615), + iE-Extensions ProtocolExtensionContainer { { E-RABUsageReportItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABUsageReportItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +E-RABQoSParameters-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extended for introduction of downlink and uplink packet loss rate for enhanced Voice performance - + { ID id-DownlinkPacketLossRate CRITICALITY ignore EXTENSION Packet-LossRate PRESENCE optional}| + { ID id-UplinkPacketLossRate CRITICALITY ignore EXTENSION Packet-LossRate PRESENCE optional}, + ... +} + +Ethernet-Type ::= ENUMERATED { + true, + ... +} + +EUTRAN-CGI ::= SEQUENCE { + pLMNidentity PLMNidentity, + cell-ID CellIdentity, + iE-Extensions ProtocolExtensionContainer { {EUTRAN-CGI-ExtIEs} } OPTIONAL, + ... +} + +EUTRAN-CGI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EUTRANRoundTripDelayEstimationInfo ::= INTEGER (0..2047) + +ExpectedUEBehaviour ::= SEQUENCE { + expectedActivity ExpectedUEActivityBehaviour OPTIONAL, + expectedHOInterval ExpectedHOInterval OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ExpectedUEBehaviour-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEBehaviour-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ExpectedUEActivityBehaviour ::= SEQUENCE { + expectedActivityPeriod ExpectedActivityPeriod OPTIONAL, + expectedIdlePeriod ExpectedIdlePeriod OPTIONAL, + sourceofUEActivityBehaviourInformation SourceOfUEActivityBehaviourInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ExpectedUEActivityBehaviour-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEActivityBehaviour-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ExpectedActivityPeriod ::= INTEGER (1..30|40|50|60|80|100|120|150|180|181,...) + +ExpectedIdlePeriod ::= INTEGER (1..30|40|50|60|80|100|120|150|180|181,...) + +SourceOfUEActivityBehaviourInformation ::= ENUMERATED { + subscription-information, + statistics, + ... +} + +ExpectedHOInterval ::= ENUMERATED { + sec15, sec30, sec60, sec90, sec120, sec180, long-time, + ... +} + +ExtendedBitRate ::= INTEGER (10000000001..4000000000000, ...) + +ExtendedRNC-ID ::= INTEGER (4096..65535) + +ExtendedRepetitionPeriod ::= INTEGER (4096..131071) + +Extended-UEIdentityIndexValue ::= BIT STRING (SIZE (14)) + +-- F + +FiveGSTAC ::= OCTET STRING (SIZE (3)) + +FiveGSTAI ::= SEQUENCE { + pLMNidentity PLMNidentity, + fiveGSTAC FiveGSTAC, + iE-Extensions ProtocolExtensionContainer { {FiveGSTAI-ExtIEs} } OPTIONAL, + ... +} + +FiveGSTAI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +FiveQI ::= INTEGER (0..255, ...) + +ForbiddenInterRATs ::= ENUMERATED { + all, + geran, + utran, + cdma2000, + ..., + geranandutran, + cdma2000andutran + +} + +ForbiddenTAs ::= SEQUENCE (SIZE(1.. maxnoofEPLMNsPlusOne)) OF ForbiddenTAs-Item + +ForbiddenTAs-Item ::= SEQUENCE { + pLMN-Identity PLMNidentity, + forbiddenTACs ForbiddenTACs, + iE-Extensions ProtocolExtensionContainer { {ForbiddenTAs-Item-ExtIEs} } OPTIONAL, + ... +} + +ForbiddenTAs-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ForbiddenTACs ::= SEQUENCE (SIZE(1..maxnoofForbTACs)) OF TAC + +ForbiddenLAs ::= SEQUENCE (SIZE(1..maxnoofEPLMNsPlusOne)) OF ForbiddenLAs-Item + +ForbiddenLAs-Item ::= SEQUENCE { + pLMN-Identity PLMNidentity, + forbiddenLACs ForbiddenLACs, + iE-Extensions ProtocolExtensionContainer { {ForbiddenLAs-Item-ExtIEs} } OPTIONAL, + ... +} + +ForbiddenLAs-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ForbiddenLACs ::= SEQUENCE (SIZE(1..maxnoofForbLACs)) OF LAC + +-- G + +GBR-QosInformation ::= SEQUENCE { + e-RAB-MaximumBitrateDL BitRate, + e-RAB-MaximumBitrateUL BitRate, + e-RAB-GuaranteedBitrateDL BitRate, + e-RAB-GuaranteedBitrateUL BitRate, + iE-Extensions ProtocolExtensionContainer { { GBR-QosInformation-ExtIEs} } OPTIONAL, + ... +} + +GBR-QosInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for maximum bitrate > 10G bps -- + { ID id-extended-e-RAB-MaximumBitrateDL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}| + { ID id-extended-e-RAB-MaximumBitrateUL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}| + { ID id-extended-e-RAB-GuaranteedBitrateDL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}| + { ID id-extended-e-RAB-GuaranteedBitrateUL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}, + ...} + + +GTP-TEID ::= OCTET STRING (SIZE (4)) + +GUMMEI ::= SEQUENCE { + pLMN-Identity PLMNidentity, + mME-Group-ID MME-Group-ID, + mME-Code MME-Code, + iE-Extensions ProtocolExtensionContainer { {GUMMEI-ExtIEs} } OPTIONAL, + ... +} + +GUMMEI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +GUMMEIType ::= ENUMERATED { + native, + mapped, + ..., + mappedFrom5G +} + +GWContextReleaseIndication ::= ENUMERATED { + true, + ... +} + +-- H + +HandoverFlag ::= ENUMERATED { + handoverPreparation, + ... +} + + +HandoverRestrictionList ::= SEQUENCE { + servingPLMN PLMNidentity, + equivalentPLMNs EPLMNs OPTIONAL, + forbiddenTAs ForbiddenTAs OPTIONAL, + forbiddenLAs ForbiddenLAs OPTIONAL, + forbiddenInterRATs ForbiddenInterRATs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverRestrictionList-ExtIEs} } OPTIONAL, + ... +} + +HandoverRestrictionList-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-NRrestrictioninEPSasSecondaryRAT CRITICALITY ignore EXTENSION NRrestrictioninEPSasSecondaryRAT PRESENCE optional}| + { ID id-UnlicensedSpectrumRestriction CRITICALITY ignore EXTENSION UnlicensedSpectrumRestriction PRESENCE optional}| + { ID id-CNTypeRestrictions CRITICALITY ignore EXTENSION CNTypeRestrictions PRESENCE optional}| + { ID id-NRrestrictionin5GS CRITICALITY ignore EXTENSION NRrestrictionin5GS PRESENCE optional}| + { ID id-LastNG-RANPLMNIdentity CRITICALITY ignore EXTENSION PLMNidentity PRESENCE optional}, + ... +} + +HandoverType ::= ENUMERATED { + intralte, + ltetoutran, + ltetogeran, + utrantolte, + gerantolte, + ..., + eps-to-5gs, + fivegs-to-eps +} + +HFN ::= INTEGER (0..1048575) + +HFNModified ::= INTEGER (0..131071) + +HFNforPDCP-SNlength18 ::= INTEGER (0..16383) + +-- I + +Masked-IMEISV ::= BIT STRING (SIZE (64)) + +ImmediateMDT ::= SEQUENCE { + measurementsToActivate MeasurementsToActivate, + m1reportingTrigger M1ReportingTrigger, + m1thresholdeventA2 M1ThresholdEventA2 OPTIONAL, +-- Included in case of event-triggered, or event-triggered periodic reporting for measurement M1 + m1periodicReporting M1PeriodicReporting OPTIONAL, +-- Included in case of periodic or event-triggered periodic reporting + iE-Extensions ProtocolExtensionContainer { { ImmediateMDT-ExtIEs} } OPTIONAL, + ... +} + +ImmediateMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-M3Configuration CRITICALITY ignore EXTENSION M3Configuration PRESENCE conditional}| + { ID id-M4Configuration CRITICALITY ignore EXTENSION M4Configuration PRESENCE conditional}| + { ID id-M5Configuration CRITICALITY ignore EXTENSION M5Configuration PRESENCE conditional}| + { ID id-MDT-Location-Info CRITICALITY ignore EXTENSION MDT-Location-Info PRESENCE optional}| + { ID id-M6Configuration CRITICALITY ignore EXTENSION M6Configuration PRESENCE conditional}| + { ID id-M7Configuration CRITICALITY ignore EXTENSION M7Configuration PRESENCE conditional}| + { ID id-BluetoothMeasurementConfiguration CRITICALITY ignore EXTENSION BluetoothMeasurementConfiguration PRESENCE optional}| + { ID id-WLANMeasurementConfiguration CRITICALITY ignore EXTENSION WLANMeasurementConfiguration PRESENCE optional}, + ... +} + +IMSI ::= OCTET STRING (SIZE (3..8)) + +InformationOnRecommendedCellsAndENBsForPaging ::= SEQUENCE { + recommendedCellsForPaging RecommendedCellsForPaging, + recommendENBsForPaging RecommendedENBsForPaging, + iE-Extensions ProtocolExtensionContainer { { InformationOnRecommendedCellsAndENBsForPaging-ExtIEs} } OPTIONAL, + ... +} + +InformationOnRecommendedCellsAndENBsForPaging-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +IntegrityProtectionAlgorithms ::= BIT STRING (SIZE (16,...)) + +IntendedNumberOfPagingAttempts ::= INTEGER (1..16, ...) + +InterfacesToTrace ::= BIT STRING (SIZE (8)) + +IntersystemMeasurementConfiguration ::= SEQUENCE { + rSRP INTEGER (0.. 127) OPTIONAL, + rSRQ INTEGER (0.. 127) OPTIONAL, + sINR INTEGER (0.. 127) OPTIONAL, + interSystemMeasurementParameters InterSystemMeasurementParameters, + iE-Extensions ProtocolExtensionContainer { { IntersystemMeasurementConfiguration-ExtIEs} } OPTIONAL, + ... +} +IntersystemMeasurementConfiguration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +InterSystemMeasurementParameters ::= SEQUENCE { + measurementDuration INTEGER (1..100), + interSystemMeasurementList InterSystemMeasurementList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { InterSystemMeasurementParameters-ExtIEs} } OPTIONAL, + ... +} +InterSystemMeasurementParameters-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +InterSystemMeasurementList ::= SEQUENCE (SIZE(1.. maxnooffrequencies)) OF InterSystemMeasurementItem + +InterSystemMeasurementItem ::= SEQUENCE { + freqBandIndicatorNR INTEGER (1..1024), + sSBfrequencies INTEGER (0..maxNARFCN), + subcarrierSpacingSSB ENUMERATED {kHz15, kHz30, kHz60, kHz120, kHz240, ...}, + maxRSIndexCellQual INTEGER (1..maxRS-IndexCellQual) OPTIONAL, + sMTC OCTET STRING OPTIONAL, + threshRS-Index-r15 OCTET STRING OPTIONAL, + sSBToMeasure OCTET STRING OPTIONAL, + sSRSSIMeasurement OCTET STRING OPTIONAL, + quantityConfigNR-R15 OCTET STRING OPTIONAL, + blackCellsToAddModList OCTET STRING OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { InterSystemMeasurementItem-ExtIEs} } OPTIONAL +} + +InterSystemMeasurementItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONConfigurationTransfer ::= OCTET STRING + +IMSvoiceEPSfallbackfrom5G ::= ENUMERATED { + true, + ... +} + +IAB-Authorized ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +IAB-Node-Indication ::= ENUMERATED { + true, + ... +} + +IAB-Supported ::= ENUMERATED { + true, + ... +} + +-- J +-- K + +KillAllWarningMessages ::= ENUMERATED {true} + +-- L + + +LAC ::= OCTET STRING (SIZE (2)) + +LAI ::= SEQUENCE { + pLMNidentity PLMNidentity, + lAC LAC, + iE-Extensions ProtocolExtensionContainer { {LAI-ExtIEs} } OPTIONAL, + ... +} + +LAI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +LastVisitedCell-Item ::= CHOICE { + e-UTRAN-Cell LastVisitedEUTRANCellInformation, + uTRAN-Cell LastVisitedUTRANCellInformation, + gERAN-Cell LastVisitedGERANCellInformation, + ..., + nG-RAN-Cell LastVisitedNGRANCellInformation +} +LastVisitedEUTRANCellInformation ::= SEQUENCE { + global-Cell-ID EUTRAN-CGI, + cellType CellType, + time-UE-StayedInCell Time-UE-StayedInCell, + iE-Extensions ProtocolExtensionContainer { { LastVisitedEUTRANCellInformation-ExtIEs} } OPTIONAL, + ... +} +LastVisitedEUTRANCellInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Rel-11 to support enhanced granularity for time UE stayed in cell -- + { ID id-Time-UE-StayedInCell-EnhancedGranularity CRITICALITY ignore EXTENSION Time-UE-StayedInCell-EnhancedGranularity PRESENCE optional}| + { ID id-HO-Cause CRITICALITY ignore EXTENSION Cause PRESENCE optional}, + ... +} + +LastVisitedNGRANCellInformation ::= OCTET STRING + +LastVisitedUTRANCellInformation ::= OCTET STRING + +LastVisitedGERANCellInformation ::= CHOICE { + undefined NULL, + ... +} + +L3-Information ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +LPPa-PDU ::= OCTET STRING + +LHN-ID ::= OCTET STRING(SIZE (32..256)) + +Links-to-log ::= ENUMERATED {uplink, downlink, both-uplink-and-downlink, ...} + +ListeningSubframePattern ::= SEQUENCE { + pattern-period ENUMERATED {ms1280, ms2560, ms5120, ms10240, ...}, + pattern-offset INTEGER (0..10239, ...), + iE-Extensions ProtocolExtensionContainer { { ListeningSubframePattern-ExtIEs} } OPTIONAL, + ... +} + +ListeningSubframePattern-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +... +} + +LoggedMDT ::= SEQUENCE { + loggingInterval LoggingInterval, + loggingDuration LoggingDuration, + iE-Extensions ProtocolExtensionContainer { {LoggedMDT-ExtIEs} } OPTIONAL, + ... +} + +LoggedMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-BluetoothMeasurementConfiguration CRITICALITY ignore EXTENSION BluetoothMeasurementConfiguration PRESENCE optional}| + { ID id-WLANMeasurementConfiguration CRITICALITY ignore EXTENSION WLANMeasurementConfiguration PRESENCE optional}, +... +} + +LoggingInterval ::= ENUMERATED {ms128, ms256, ms512, ms1024, ms2048, ms3072, ms4096, ms6144} + +LoggingDuration ::= ENUMERATED {m10, m20, m40, m60, m90, m120} + +LoggedMBSFNMDT ::= SEQUENCE { + loggingInterval LoggingInterval, + loggingDuration LoggingDuration, + mBSFN-ResultToLog MBSFN-ResultToLog OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { LoggedMBSFNMDT-ExtIEs } } OPTIONAL, + ... +} + +LoggedMBSFNMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +LTE-M-Indication ::= ENUMERATED {lte-m, ... } + +-- M + +M3Configuration ::= SEQUENCE { + m3period M3period, + iE-Extensions ProtocolExtensionContainer { { M3Configuration-ExtIEs} } OPTIONAL, + ... +} + +M3Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M3period ::= ENUMERATED {ms100, ms1000, ms10000, ...,ms1024, ms1280, ms2048, ms2560, ms5120, ms10240, min1 } + +M4Configuration ::= SEQUENCE { + m4period M4period, + m4-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M4Configuration-ExtIEs} } OPTIONAL, + ... +} + +M4Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M4period ::= ENUMERATED {ms1024, ms2048, ms5120, ms10240, min1, ... } + +M5Configuration ::= SEQUENCE { + m5period M5period, + m5-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M5Configuration-ExtIEs} } OPTIONAL, + ... +} + +M5Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M5period ::= ENUMERATED {ms1024, ms2048, ms5120, ms10240, min1, ... } + +M6Configuration ::= SEQUENCE { + m6report-Interval M6report-Interval, + m6delay-threshold M6delay-threshold OPTIONAL, +-- This IE shall be present if the M6 Links to log IE is set to uplink or to both-uplink-and-downlink -- + m6-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M6Configuration-ExtIEs} } OPTIONAL, + ... +} + +M6Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M6report-Interval ::= ENUMERATED { ms1024, ms2048, ms5120, ms10240, ... } + +M6delay-threshold ::= ENUMERATED { ms30, ms40, ms50, ms60, ms70, ms80, ms90, ms100, ms150, ms300, ms500, ms750, ... } + +M7Configuration ::= SEQUENCE { + m7period M7period, + m7-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M7Configuration-ExtIEs} } OPTIONAL, + ... +} + +M7Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M7period ::= INTEGER(1..60, ...) + +MDT-Activation ::= ENUMERATED { + immediate-MDT-only, + immediate-MDT-and-Trace, + logged-MDT-only, + ..., + logged-MBSFN-MDT +} + +MDT-Location-Info ::= BIT STRING (SIZE (8)) + +MDT-Configuration ::= SEQUENCE { + mdt-Activation MDT-Activation, + areaScopeOfMDT AreaScopeOfMDT, + mDTMode MDTMode, + iE-Extensions ProtocolExtensionContainer { { MDT-Configuration-ExtIEs} } OPTIONAL, + ... +} +MDT-Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-SignallingBasedMDTPLMNList CRITICALITY ignore EXTENSION MDTPLMNList PRESENCE optional }, + ... +} + +ManagementBasedMDTAllowed ::= ENUMERATED {allowed, ...} + +MBSFN-ResultToLog ::= SEQUENCE (SIZE(1..maxnoofMBSFNAreaMDT)) OF MBSFN-ResultToLogInfo + +MBSFN-ResultToLogInfo ::= SEQUENCE { + mBSFN-AreaId INTEGER (0..255) OPTIONAL, + carrierFreq EARFCN, + iE-Extensions ProtocolExtensionContainer { { MBSFN-ResultToLogInfo-ExtIEs} } OPTIONAL, + ... +} + +MBSFN-ResultToLogInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +MDTPLMNList ::= SEQUENCE (SIZE(1..maxnoofMDTPLMNs)) OF PLMNidentity + +PrivacyIndicator ::= ENUMERATED { + immediate-MDT, + logged-MDT, + ... +} + +MDTMode ::= CHOICE { + immediateMDT ImmediateMDT, + loggedMDT LoggedMDT, + ..., + mDTMode-Extension MDTMode-Extension +} + +MDTMode-Extension ::= ProtocolIE-SingleContainer {{ MDTMode-ExtensionIE }} + +MDTMode-ExtensionIE S1AP-PROTOCOL-IES ::= { + { ID id-LoggedMBSFNMDT CRITICALITY ignore TYPE LoggedMBSFNMDT PRESENCE mandatory} +} + +MeasurementsToActivate ::= BIT STRING (SIZE (8)) + +MeasurementThresholdA2 ::= CHOICE { + threshold-RSRP Threshold-RSRP, + threshold-RSRQ Threshold-RSRQ, + ... +} + +MessageIdentifier ::= BIT STRING (SIZE (16)) + +MobilityInformation ::= BIT STRING (SIZE(32)) + +MMEname ::= PrintableString (SIZE (1..150,...)) + +MMEPagingTarget ::= CHOICE { + global-ENB-ID Global-ENB-ID, + tAI TAI, + ... +} + +MMERelaySupportIndicator ::= ENUMERATED {true, ...} + +MME-Group-ID ::= OCTET STRING (SIZE (2)) + +MME-Code ::= OCTET STRING (SIZE (1)) + +MME-UE-S1AP-ID ::= INTEGER (0..4294967295) +M-TMSI ::= OCTET STRING (SIZE (4)) + +MSClassmark2 ::= OCTET STRING +MSClassmark3 ::= OCTET STRING + +MutingAvailabilityIndication ::= ENUMERATED { + available, + unavailable, + ... +} + + +MutingPatternInformation ::= SEQUENCE { + muting-pattern-period ENUMERATED {ms0, ms1280, ms2560, ms5120, ms10240, ...}, + muting-pattern-offset INTEGER (0..10239, ...) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {MutingPatternInformation-ExtIEs} } OPTIONAL, + ... +} + +MutingPatternInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-ConfigurationNR ::= OCTET STRING + +-- N + +NAS-PDU ::= OCTET STRING + +NASSecurityParametersfromE-UTRAN ::= OCTET STRING + +NASSecurityParameterstoE-UTRAN ::= OCTET STRING + +NB-IoT-DefaultPagingDRX ::= ENUMERATED { + v128, + v256, + v512, + v1024, + ... + } + +NB-IoT-PagingDRX ::= ENUMERATED { v32, v64, v128, v256, v512, v1024,...} + +NB-IoT-Paging-eDRXInformation ::= SEQUENCE { + nB-IoT-paging-eDRX-Cycle NB-IoT-Paging-eDRX-Cycle, + nB-IoT-pagingTimeWindow NB-IoT-PagingTimeWindow OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { NB-IoT-Paging-eDRXInformation-ExtIEs} } OPTIONAL, + ... +} + +NB-IoT-Paging-eDRXInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +NB-IoT-Paging-eDRX-Cycle ::= ENUMERATED{hf2, hf4, hf6, hf8, hf10, hf12, hf14, hf16, hf32, hf64, hf128, hf256, hf512, hf1024, ...} + +NB-IoT-PagingTimeWindow ::= ENUMERATED{s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15, s16, ...} + +NB-IoT-RLF-Report-Container ::= OCTET STRING + +NB-IoT-UEIdentityIndexValue ::= BIT STRING (SIZE (12)) + +NextPagingAreaScope ::= ENUMERATED { + same, + changed, + ... +} + +NotifySourceeNB ::= ENUMERATED { + notifySource, + ... +} + +NRCellIdentity ::= BIT STRING (SIZE(36)) + +NR-CGI ::= SEQUENCE { + pLMNIdentity PLMNidentity, + nRCellIdentity NRCellIdentity, + iE-Extensions ProtocolExtensionContainer { {NR-CGI-ExtIEs} } OPTIONAL, + ... +} + +NR-CGI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +NRencryptionAlgorithms ::= BIT STRING (SIZE (16,...)) +NRintegrityProtectionAlgorithms ::= BIT STRING (SIZE (16,...)) + +NRrestrictioninEPSasSecondaryRAT ::= ENUMERATED { + nRrestrictedinEPSasSecondaryRAT, + ... +} + +NRrestrictionin5GS ::= ENUMERATED { + nRrestrictedin5GS, + ... +} + +NRUESecurityCapabilities ::= SEQUENCE { + nRencryptionAlgorithms NRencryptionAlgorithms, + nRintegrityProtectionAlgorithms NRintegrityProtectionAlgorithms, + iE-Extensions ProtocolExtensionContainer { { NRUESecurityCapabilities-ExtIEs} } OPTIONAL, +... +} + +NRUESecurityCapabilities-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +NumberofBroadcastRequest ::= INTEGER (0..65535) + +NumberOfBroadcasts ::= INTEGER (0..65535) + +NRV2XServicesAuthorized ::= SEQUENCE { + vehicleUE VehicleUE OPTIONAL, + pedestrianUE PedestrianUE OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {NRV2XServicesAuthorized-ExtIEs} } OPTIONAL, + ... +} + +NRV2XServicesAuthorized-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +NRUESidelinkAggregateMaximumBitrate ::= SEQUENCE { + uEaggregateMaximumBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { {NRUESidelinkAggregateMaximumBitrate-ExtIEs} } OPTIONAL, + ... +} + +NRUESidelinkAggregateMaximumBitrate-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- O +OldBSS-ToNewBSS-Information ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +OverloadAction ::= ENUMERATED { + reject-non-emergency-mo-dt, + reject-rrc-cr-signalling, + permit-emergency-sessions-and-mobile-terminated-services-only, + ..., + permit-high-priority-sessions-and-mobile-terminated-services-only, + reject-delay-tolerant-access, + permit-high-priority-sessions-and-exception-reporting-and-mobile-terminated-services-only, + not-accept-mo-data-or-delay-tolerant-access-from-CP-CIoT + +} + +OverloadResponse ::= CHOICE { + overloadAction OverloadAction, + ... +} + + +-- P + +Packet-LossRate ::= INTEGER(0..1000) + +PagingAttemptInformation ::= SEQUENCE { + pagingAttemptCount PagingAttemptCount, + intendedNumberOfPagingAttempts IntendedNumberOfPagingAttempts, + nextPagingAreaScope NextPagingAreaScope OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PagingAttemptInformation-ExtIEs} } OPTIONAL, + ... +} + +PagingAttemptInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +PagingAttemptCount ::= INTEGER (1..16, ...) + +Paging-eDRXInformation ::= SEQUENCE { + paging-eDRX-Cycle Paging-eDRX-Cycle, + pagingTimeWindow PagingTimeWindow OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { Paging-eDRXInformation-ExtIEs} } OPTIONAL, + ... +} + +Paging-eDRXInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Paging-eDRX-Cycle ::= ENUMERATED{hfhalf, hf1, hf2, hf4, hf6, hf8, hf10, hf12, hf14, hf16, hf32, hf64, hf128, hf256, ...} + +PagingTimeWindow ::= ENUMERATED{s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15, s16, ...} + +PagingDRX ::= ENUMERATED { + v32, + v64, + v128, + v256, + ... + } + +PagingPriority ::= ENUMERATED { + priolevel1, + priolevel2, + priolevel3, + priolevel4, + priolevel5, + priolevel6, + priolevel7, + priolevel8, + ... +} + +PagingProbabilityInformation ::= ENUMERATED {p00, p05, p10, p15, p20, p25, p30, p35, p40, p45, p50, p55, p60, p65, p70, p75, p80, p85, p90, p95, p100, ...} + +PC5QoSParameters ::= SEQUENCE { + pc5QoSFlowList PC5QoSFlowList, + pc5LinkAggregatedBitRates BitRate OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PC5QoSParameters-ExtIEs} } OPTIONAL, + ... +} + +PC5QoSParameters-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +PC5QoSFlowList ::= SEQUENCE (SIZE(1..maxnoofPC5QoSFlows)) OF PC5QoSFlowItem + +PC5QoSFlowItem::= SEQUENCE { + pQI FiveQI, + pc5FlowBitRates PC5FlowBitRates OPTIONAL, + range Range OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PC5QoSFlowItem-ExtIEs} } OPTIONAL, + ... +} + +PC5QoSFlowItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +PC5FlowBitRates ::= SEQUENCE { + guaranteedFlowBitRate BitRate, + maximumFlowBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { { PC5FlowBitRates-ExtIEs} } OPTIONAL, + ... +} + +PC5FlowBitRates-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +... +} +PDCP-SN ::= INTEGER (0..4095) + +PDCP-SNExtended ::= INTEGER (0..32767) + +PDCP-SNlength18 ::= INTEGER (0..262143) + +PendingDataIndication ::= ENUMERATED { + true, + ... +} + +M1PeriodicReporting ::= SEQUENCE { + reportInterval ReportIntervalMDT, + reportAmount ReportAmountMDT, + iE-Extensions ProtocolExtensionContainer { { M1PeriodicReporting-ExtIEs} } OPTIONAL, + ... +} + +M1PeriodicReporting-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +PLMNidentity ::= TBCD-STRING + +PLMNAreaBasedQMC ::= SEQUENCE { + plmnListforQMC PLMNListforQMC, + iE-Extensions ProtocolExtensionContainer { {PLMNAreaBasedQMC-ExtIEs} } OPTIONAL, + ... +} + +PLMNAreaBasedQMC-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +PLMNListforQMC ::= SEQUENCE (SIZE(1..maxnoofPLMNforQMC)) OF PLMNidentity + +Port-Number ::= OCTET STRING (SIZE (2)) + +Pre-emptionCapability ::= ENUMERATED { + shall-not-trigger-pre-emption, + may-trigger-pre-emption +} + +Pre-emptionVulnerability ::= ENUMERATED { + not-pre-emptable, + pre-emptable +} + +PriorityLevel ::= INTEGER { spare (0), highest (1), lowest (14), no-priority (15) } (0..15) + +ProSeAuthorized ::= SEQUENCE { + proSeDirectDiscovery ProSeDirectDiscovery OPTIONAL, + proSeDirectCommunication ProSeDirectCommunication OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ProSeAuthorized-ExtIEs} } OPTIONAL, + ... +} + +ProSeAuthorized-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-ProSeUEtoNetworkRelaying CRITICALITY ignore EXTENSION ProSeUEtoNetworkRelaying PRESENCE optional}, + ... +} + +ProSeDirectDiscovery ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +ProSeUEtoNetworkRelaying ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +ProSeDirectCommunication ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +PS-ServiceNotAvailable ::= ENUMERATED { + ps-service-not-available, + ... +} + +PSCellInformation ::= SEQUENCE { + nCGI NR-CGI, + iE-Extensions ProtocolExtensionContainer { { PSCellInformation-ExtIEs} } OPTIONAL, + ... +} + +PSCellInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- Q + +QCI ::= INTEGER (0..255) + +-- R + +RAN-UE-NGAP-ID ::= INTEGER (0..4294967295) + +Range ::= ENUMERATED {m50, m80, m180, m200, m350, m400, m500, m700, m1000, ...} + +ReceiveStatusofULPDCPSDUs ::= BIT STRING (SIZE(4096)) + +ReceiveStatusOfULPDCPSDUsExtended ::= BIT STRING (SIZE(1..16384)) + +ReceiveStatusOfULPDCPSDUsPDCP-SNlength18 ::= BIT STRING (SIZE(1..131072)) + +RecommendedCellsForPaging ::= SEQUENCE { + recommendedCellList RecommendedCellList, + iE-Extensions ProtocolExtensionContainer { { RecommendedCellsForPaging-ExtIEs} } OPTIONAL, + ... +} + +RecommendedCellsForPaging-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedCellList ::= SEQUENCE (SIZE(1.. maxnoofRecommendedCells)) OF ProtocolIE-SingleContainer { { RecommendedCellItemIEs } } + +RecommendedCellItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-RecommendedCellItem CRITICALITY ignore TYPE RecommendedCellItem PRESENCE mandatory }, + ... +} + +RecommendedCellItem::= SEQUENCE { + eUTRAN-CGI EUTRAN-CGI, + timeStayedInCell INTEGER (0..4095) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { RecommendedCellsForPagingItem-ExtIEs} } OPTIONAL, + ... +} + +RecommendedCellsForPagingItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedENBsForPaging ::= SEQUENCE { + recommendedENBList RecommendedENBList, + iE-Extensions ProtocolExtensionContainer { { RecommendedENBsForPaging-ExtIEs} } OPTIONAL, + ... +} + +RecommendedENBsForPaging-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedENBList::= SEQUENCE (SIZE(1.. maxnoofRecommendedENBs)) OF ProtocolIE-SingleContainer { { RecommendedENBItemIEs } } + +RecommendedENBItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-RecommendedENBItem CRITICALITY ignore TYPE RecommendedENBItem PRESENCE mandatory }, + ... +} + +RecommendedENBItem ::= SEQUENCE { + mMEPagingTarget MMEPagingTarget, + iE-Extensions ProtocolExtensionContainer { { RecommendedENBItem-ExtIEs} } OPTIONAL, + ... +} + +RecommendedENBItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RelativeMMECapacity ::= INTEGER (0..255) + +RelayNode-Indicator ::= ENUMERATED { + true, + ... +} + +RAC ::= OCTET STRING (SIZE (1)) + +RAT-Type ::= ENUMERATED { + nbiot, + ... +} + +ReportAmountMDT ::= ENUMERATED{r1, r2, r4, r8, r16, r32, r64, rinfinity} + +ReportIntervalMDT ::= ENUMERATED {ms120, ms240, ms480, ms640, ms1024, ms2048, ms5120, ms10240, min1, min6, min12, min30, min60} + +M1ReportingTrigger ::= ENUMERATED{ + periodic, + a2eventtriggered, + ..., + a2eventtriggered-periodic +} + +RequestType ::= SEQUENCE { + eventType EventType, + reportArea ReportArea, + iE-Extensions ProtocolExtensionContainer { { RequestType-ExtIEs} } OPTIONAL, + ... +} + + +RequestType-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-RequestTypeAdditionalInfo CRITICALITY ignore EXTENSION RequestTypeAdditionalInfo PRESENCE optional }, + ... +} + +RequestTypeAdditionalInfo ::= ENUMERATED { + includePSCell, + ... +} + +RIMTransfer ::= SEQUENCE { + rIMInformation RIMInformation, + rIMRoutingAddress RIMRoutingAddress OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { RIMTransfer-ExtIEs} } OPTIONAL, + ... +} + +RIMTransfer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RIMInformation ::= OCTET STRING + +RIMRoutingAddress ::= CHOICE { + gERAN-Cell-ID GERAN-Cell-ID, + ..., + targetRNC-ID TargetRNC-ID, + eHRPD-Sector-ID OCTET STRING (SIZE(16)) +} + +ReportArea ::= ENUMERATED { + ecgi, + ... +} + +RepetitionPeriod ::= INTEGER (0..4095) + +RLFReportInformation ::= SEQUENCE { + uE-RLF-Report-Container UE-RLF-Report-Container, + uE-RLF-Report-Container-for-extended-bands UE-RLF-Report-Container-for-extended-bands OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{ RLFReportInformation-ExtIEs}} OPTIONAL, + ... +} + +RLFReportInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + {ID id-NB-IoT-RLF-Report-Container CRITICALITY ignore EXTENSION NB-IoT-RLF-Report-Container PRESENCE optional}, + ... +} + +RNC-ID ::= INTEGER (0..4095) + +RRC-Container ::= OCTET STRING + +RRC-Establishment-Cause ::= ENUMERATED { + emergency, + highPriorityAccess, + mt-Access, + mo-Signalling, + mo-Data, + ..., + delay-TolerantAccess, + mo-VoiceCall, + mo-ExceptionData +} + +ECGIListForRestart ::= SEQUENCE (SIZE(1..maxnoofCellsforRestart)) OF EUTRAN-CGI + +Routing-ID ::= INTEGER (0..255) + +-- S + + +SecurityKey ::= BIT STRING (SIZE(256)) + + + +SecurityContext ::= SEQUENCE { + nextHopChainingCount INTEGER (0..7), + nextHopParameter SecurityKey, + iE-Extensions ProtocolExtensionContainer { { SecurityContext-ExtIEs} } OPTIONAL, + ... +} + + +SecurityContext-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SecondaryRATType ::= ENUMERATED { + nR, + ..., + unlicensed +} + + +SecondaryRATDataUsageRequest ::= ENUMERATED { + requested, + ... +} + +SecondaryRATDataUsageReportList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {SecondaryRATDataUsageReportItemIEs} } + +SecondaryRATDataUsageReportItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-SecondaryRATDataUsageReportItem CRITICALITY ignore TYPE SecondaryRATDataUsageReportItem PRESENCE mandatory }, + ... +} + +SecondaryRATDataUsageReportItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + secondaryRATType SecondaryRATType, + e-RABUsageReportList E-RABUsageReportList, + iE-Extensions ProtocolExtensionContainer { { SecondaryRATDataUsageReportItem-ExtIEs} } OPTIONAL, + ... +} + +SecondaryRATDataUsageReportItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SerialNumber ::= BIT STRING (SIZE (16)) + +ServiceType ::= ENUMERATED{ + qMC-for-streaming-service, + qMC-for-MTSI-service, + ... +} + +SONInformation ::= CHOICE{ + sONInformationRequest SONInformationRequest, + sONInformationReply SONInformationReply, + ..., + sONInformation-Extension SONInformation-Extension +} + +SONInformation-Extension ::= ProtocolIE-SingleContainer {{ SONInformation-ExtensionIE }} + +SONInformation-ExtensionIE S1AP-PROTOCOL-IES ::= { + { ID id-SON-Information-Report CRITICALITY ignore TYPE SONInformationReport PRESENCE mandatory} +} + +SONInformationRequest ::= ENUMERATED { + x2TNL-Configuration-Info, + ..., + time-Synchronisation-Info, + activate-Muting, + deactivate-Muting} + +SONInformationReply ::= SEQUENCE { + x2TNLConfigurationInfo X2TNLConfigurationInfo OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{SONInformationReply-ExtIEs}} OPTIONAL, + ... +} + +SONInformationReply-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Release 9 to transfer Time synchronisation information -- + {ID id-Time-Synchronisation-Info CRITICALITY ignore EXTENSION TimeSynchronisationInfo PRESENCE optional}, + ..., + {ID id-Muting-Pattern-Information CRITICALITY ignore EXTENSION MutingPatternInformation PRESENCE optional} +} + +SONInformationReport ::= CHOICE{ + rLFReportInformation RLFReportInformation, + ... +} + +SONConfigurationTransfer ::= SEQUENCE { + targeteNB-ID TargeteNB-ID, + sourceeNB-ID SourceeNB-ID, + sONInformation SONInformation, + iE-Extensions ProtocolExtensionContainer { { SONConfigurationTransfer-ExtIEs} } OPTIONAL, +... +} + +SONConfigurationTransfer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Release 10 to transfer the IP addresses of the eNB initiating the ANR action -- + {ID id-x2TNLConfigurationInfo CRITICALITY ignore EXTENSION X2TNLConfigurationInfo PRESENCE conditional + -- This IE shall be present if the SON Information IE contains the SON Information Request IE and the SON Information Request IE is set to X2TNL Configuration Info --}| +-- Extension for Release 12 to transfer information concerning the source cell of synchronisation and the aggressor cell -- + {ID id-Synchronisation-Information CRITICALITY ignore EXTENSION SynchronisationInformation PRESENCE conditional + -- This IE shall be present if the SON Information IE contains the SON Information Request IE set to Activate Muting --}, + ... +} + + +SynchronisationInformation ::= SEQUENCE { + sourceStratumLevel StratumLevel OPTIONAL, + listeningSubframePattern ListeningSubframePattern OPTIONAL, + aggressoreCGI-List ECGI-List OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SynchronisationInformation-ExtIEs} } OPTIONAL, + ... +} + +SynchronisationInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +Source-ToTarget-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the source RAN node to the target RAN node. +-- The octets of the OCTET STRING are encoded according to the specifications of the target system. + +SourceBSS-ToTargetBSS-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +SourceeNB-ID ::= SEQUENCE { + global-ENB-ID Global-ENB-ID, + selected-TAI TAI, + iE-Extensions ProtocolExtensionContainer { {SourceeNB-ID-ExtIEs} } OPTIONAL +} + +SourceeNB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SRVCCOperationNotPossible ::= ENUMERATED { + notPossible, + ... +} + +SRVCCOperationPossible ::= ENUMERATED { + possible, + ... +} + +SRVCCHOIndication ::= ENUMERATED { + pSandCS, + cSonly, + ... +} + +SourceNodeID ::= CHOICE { + sourceNgRanNode-ID SourceNgRanNode-ID, + sourceNodeID-Extension SourceNodeID-Extension +} + +SourceNodeID-Extension ::= ProtocolIE-SingleContainer {{ SourceNodeID-ExtensionIE }} + +SourceNodeID-ExtensionIE S1AP-PROTOCOL-IES ::= { +... +} + +SourceeNB-ToTargeteNB-TransparentContainer ::= SEQUENCE { + rRC-Container RRC-Container, + e-RABInformationList E-RABInformationList OPTIONAL, + targetCell-ID EUTRAN-CGI, + subscriberProfileIDforRFP SubscriberProfileIDforRFP OPTIONAL, + uE-HistoryInformation UE-HistoryInformation, + iE-Extensions ProtocolExtensionContainer { {SourceeNB-ToTargeteNB-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +SourceeNB-ToTargeteNB-TransparentContainer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + {ID id-MobilityInformation CRITICALITY ignore EXTENSION MobilityInformation PRESENCE optional}| + {ID id-uE-HistoryInformationFromTheUE CRITICALITY ignore EXTENSION UE-HistoryInformationFromTheUE PRESENCE optional}| + {ID id-IMSvoiceEPSfallbackfrom5G CRITICALITY ignore EXTENSION IMSvoiceEPSfallbackfrom5G PRESENCE optional}| + {ID id-AdditionalRRMPriorityIndex CRITICALITY ignore EXTENSION AdditionalRRMPriorityIndex PRESENCE optional}| + {ID id-ContextatSource CRITICALITY ignore EXTENSION ContextatSource PRESENCE optional}| + {ID id-IntersystemMeasurementConfiguration CRITICALITY ignore EXTENSION IntersystemMeasurementConfiguration PRESENCE optional}| + {ID id-SourceNodeID CRITICALITY ignore EXTENSION SourceNodeID PRESENCE optional}| + {ID id-EmergencyIndicator CRITICALITY ignore EXTENSION EmergencyIndicator PRESENCE optional}, + ... +} + +SourceNgRanNode-ID ::= SEQUENCE { + global-RAN-NODE-ID Global-RAN-NODE-ID, + selected-TAI FiveGSTAI, + iE-Extensions ProtocolExtensionContainer { { SourceNgRanNode-ID-ExtIEs} } OPTIONAL, + ... +} + +SourceNgRanNode-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SourceRNC-ToTargetRNC-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +SourceNgRanNode-ToTargetNgRanNode-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +ServedGUMMEIs ::= SEQUENCE (SIZE (1.. maxnoofRATs)) OF ServedGUMMEIsItem + +ServedGUMMEIsItem ::= SEQUENCE { + servedPLMNs ServedPLMNs, + servedGroupIDs ServedGroupIDs, + servedMMECs ServedMMECs, + iE-Extensions ProtocolExtensionContainer { {ServedGUMMEIsItem-ExtIEs} } OPTIONAL, + ... +} + +ServedGUMMEIsItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + {ID id-GUMMEIType CRITICALITY ignore EXTENSION GUMMEIType PRESENCE optional}, + ... +} + +ServedGroupIDs ::= SEQUENCE (SIZE(1.. maxnoofGroupIDs)) OF MME-Group-ID +ServedMMECs ::= SEQUENCE (SIZE(1.. maxnoofMMECs)) OF MME-Code + +ServedPLMNs ::= SEQUENCE (SIZE(1.. maxnoofPLMNsPerMME)) OF PLMNidentity + +SubscriberProfileIDforRFP ::= INTEGER (1..256) + +Subscription-Based-UE-DifferentiationInfo ::= SEQUENCE { + periodicCommunicationIndicator ENUMERATED {periodically, ondemand, ...} OPTIONAL, + periodicTime INTEGER (1..3600, ...) OPTIONAL, + scheduledCommunicationTime ScheduledCommunicationTime OPTIONAL, + stationaryIndication ENUMERATED {stationary, mobile, ...} OPTIONAL, + trafficProfile ENUMERATED {single-packet, dual-packets, multiple-packets, ...} OPTIONAL, + batteryIndication ENUMERATED {battery-powered, battery-powered-not-rechargeable-or-replaceable, not-battery-powered, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { Subscription-Based-UE-DifferentiationInfo-ExtIEs} } OPTIONAL, + ... +} + +Subscription-Based-UE-DifferentiationInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ScheduledCommunicationTime ::= SEQUENCE { + dayofWeek BIT STRING (SIZE(7)) OPTIONAL, + timeofDayStart INTEGER (0..86399, ...) OPTIONAL, + timeofDayEnd INTEGER (0..86399, ...) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ScheduledCommunicationTime-ExtIEs}} OPTIONAL, + ... +} + +ScheduledCommunicationTime-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SupportedTAs ::= SEQUENCE (SIZE(1.. maxnoofTACs)) OF SupportedTAs-Item + +SupportedTAs-Item ::= SEQUENCE { + tAC TAC, + broadcastPLMNs BPLMNs, + iE-Extensions ProtocolExtensionContainer { {SupportedTAs-Item-ExtIEs} } OPTIONAL, + ... +} + +SupportedTAs-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + -- Extension for Release 13 to transfer RAT-Type per TAC -- + {ID id-RAT-Type CRITICALITY reject EXTENSION RAT-Type PRESENCE optional}, + ... +} + +StratumLevel ::= INTEGER (0..3, ...) + +SynchronisationStatus ::= ENUMERATED { synchronous, asynchronous, ... } + +TimeSynchronisationInfo ::= SEQUENCE { + stratumLevel StratumLevel, + synchronisationStatus SynchronisationStatus, + iE-Extensions ProtocolExtensionContainer { { TimeSynchronisationInfo-ExtIEs} } OPTIONAL, + ... +} + +TimeSynchronisationInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + -- Extension for Release 12 to transfer Muting Availability Indication -- + {ID id-Muting-Availability-Indication CRITICALITY ignore EXTENSION MutingAvailabilityIndication PRESENCE optional}, + ... +} + +S-TMSI ::= SEQUENCE { + mMEC MME-Code, + m-TMSI M-TMSI, + iE-Extensions ProtocolExtensionContainer { {S-TMSI-ExtIEs} } OPTIONAL, + ... +} + +S-TMSI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- T + +TAC ::= OCTET STRING (SIZE (2)) + +TAIBasedMDT ::= SEQUENCE { + tAIListforMDT TAIListforMDT, + iE-Extensions ProtocolExtensionContainer { {TAIBasedMDT-ExtIEs} } OPTIONAL, + ... +} + +TAIBasedMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListforMDT ::= SEQUENCE (SIZE(1..maxnoofTAforMDT)) OF TAI + +TAIListforWarning ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAI + +TAI ::= SEQUENCE { + pLMNidentity PLMNidentity, + tAC TAC, + iE-Extensions ProtocolExtensionContainer { {TAI-ExtIEs} } OPTIONAL, + ... +} + +TAI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAI-Broadcast ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAI-Broadcast-Item + +TAI-Broadcast-Item ::= SEQUENCE { + tAI TAI, + completedCellinTAI CompletedCellinTAI, + iE-Extensions ProtocolExtensionContainer { {TAI-Broadcast-Item-ExtIEs} } OPTIONAL, + ... +} + +TAI-Broadcast-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAI-Cancelled ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAI-Cancelled-Item + +TAI-Cancelled-Item ::= SEQUENCE { + tAI TAI, + cancelledCellinTAI CancelledCellinTAI, + iE-Extensions ProtocolExtensionContainer { {TAI-Cancelled-Item-ExtIEs} } OPTIONAL, + ... +} + +TAI-Cancelled-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TABasedMDT ::= SEQUENCE { + tAListforMDT TAListforMDT, + iE-Extensions ProtocolExtensionContainer { {TABasedMDT-ExtIEs} } OPTIONAL, + ... +} + +TABasedMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAListforMDT ::= SEQUENCE (SIZE(1..maxnoofTAforMDT)) OF TAC + +TABasedQMC ::= SEQUENCE { + tAListforQMC TAListforQMC, + iE-Extensions ProtocolExtensionContainer { {TABasedQMC-ExtIEs} } OPTIONAL, + ... +} + +TABasedQMC-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAListforQMC ::= SEQUENCE (SIZE(1..maxnoofTAforQMC)) OF TAC + +TAIBasedQMC ::= SEQUENCE { + tAIListforQMC TAIListforQMC, + iE-Extensions ProtocolExtensionContainer { {TAIBasedQMC-ExtIEs} } OPTIONAL, + ... +} + +TAIBasedQMC-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListforQMC ::= SEQUENCE (SIZE(1..maxnoofTAforQMC)) OF TAI + +CompletedCellinTAI ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CompletedCellinTAI-Item + +CompletedCellinTAI-Item ::= SEQUENCE{ + eCGI EUTRAN-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellinTAI-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellinTAI-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TBCD-STRING ::= OCTET STRING (SIZE (3)) + +TargetID ::= CHOICE { + targeteNB-ID TargeteNB-ID, + targetRNC-ID TargetRNC-ID, + cGI CGI, + ..., + targetgNgRanNode-ID TargetNgRanNode-ID +} + +TargeteNB-ID ::= SEQUENCE { + global-ENB-ID Global-ENB-ID, + selected-TAI TAI, + iE-Extensions ProtocolExtensionContainer { {TargeteNB-ID-ExtIEs} } OPTIONAL, + ... +} + +TargeteNB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetRNC-ID ::= SEQUENCE { + lAI LAI, + rAC RAC OPTIONAL, + rNC-ID RNC-ID, + extendedRNC-ID ExtendedRNC-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TargetRNC-ID-ExtIEs} } OPTIONAL, + ... + } + + +TargetRNC-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetNgRanNode-ID ::= SEQUENCE { + global-RAN-NODE-ID Global-RAN-NODE-ID, + selected-TAI FiveGSTAI, + iE-Extensions ProtocolExtensionContainer { { TargetNgRanNode-ID-ExtIEs} } OPTIONAL, + ... +} + +TargetNgRanNode-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Global-RAN-NODE-ID::= CHOICE { + gNB GNB, + ng-eNB NG-eNB, + ... +} + +GNB ::= SEQUENCE { + global-gNB-ID Global-GNB-ID, + iE-Extensions ProtocolExtensionContainer { {GNB-ExtIEs} } OPTIONAL, + ... +} + +GNB-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Global-GNB-ID ::= SEQUENCE { + pLMN-Identity PLMNidentity, + gNB-ID GNB-Identity, + iE-Extensions ProtocolExtensionContainer { { Global-GNB-ID-ExtIEs} } OPTIONAL, + ... +} + +Global-GNB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +GNB-Identity ::= CHOICE { + gNB-ID GNB-ID, + ... +} + +NG-eNB ::= SEQUENCE { + global-ng-eNB-ID Global-ENB-ID, + iE-Extensions ProtocolExtensionContainer { { NG-eNB-ExtIEs} } OPTIONAL, + ... +} + +NG-eNB-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +GNB-ID ::= BIT STRING (SIZE(22..32)) + +TargeteNB-ToSourceeNB-TransparentContainer ::= SEQUENCE { + rRC-Container RRC-Container, + iE-Extensions ProtocolExtensionContainer { {TargeteNB-ToSourceeNB-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +TargeteNB-ToSourceeNB-TransparentContainer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-DAPSResponseInfoList CRITICALITY ignore EXTENSION DAPSResponseInfoList PRESENCE optional}, + ... +} + +Target-ToSource-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the target RAN node to the source RAN node. +-- The octets of the OCTET STRING are coded according to the specifications of the target system. + +TargetRNC-ToSourceRNC-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +TargetBSS-ToSourceBSS-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +TargetNgRanNode-ToSourceNgRanNode-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +M1ThresholdEventA2 ::= SEQUENCE { + measurementThreshold MeasurementThresholdA2, + iE-Extensions ProtocolExtensionContainer { { M1ThresholdEventA2-ExtIEs} } OPTIONAL, + ... +} + +M1ThresholdEventA2-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Threshold-RSRP ::= INTEGER(0..97) + +Threshold-RSRQ ::= INTEGER(0..34) + +TimeToWait ::= ENUMERATED {v1s, v2s, v5s, v10s, v20s, v60s, ...} + +Time-UE-StayedInCell ::= INTEGER (0..4095) + +Time-UE-StayedInCell-EnhancedGranularity ::= INTEGER (0..40950) + +TimeSinceSecondaryNodeRelease ::= OCTET STRING (SIZE(4)) + +TransportInformation ::= SEQUENCE { + transportLayerAddress TransportLayerAddress, + uL-GTP-TEID GTP-TEID, + ... +} + +TransportLayerAddress ::= BIT STRING (SIZE(1..160, ...)) + +TraceActivation ::= SEQUENCE { + e-UTRAN-Trace-ID E-UTRAN-Trace-ID, + interfacesToTrace InterfacesToTrace, +traceDepth TraceDepth, +traceCollectionEntityIPAddress TransportLayerAddress, + iE-Extensions ProtocolExtensionContainer { { TraceActivation-ExtIEs} } OPTIONAL, + ... +} + +TraceActivation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Rel-10 to support MDT -- + { ID id-MDTConfiguration CRITICALITY ignore EXTENSION MDT-Configuration PRESENCE optional }| +-- Extension for Rel-15 to support QMC + { ID id-UEAppLayerMeasConfig CRITICALITY ignore EXTENSION UEAppLayerMeasConfig PRESENCE optional }| + { ID id-MDTConfigurationNR CRITICALITY ignore EXTENSION MDT-ConfigurationNR PRESENCE optional }| + { ID id-TraceCollectionEntityURI CRITICALITY ignore EXTENSION URI-Address PRESENCE optional }, + ... +} + +TraceDepth ::= ENUMERATED { + minimum, + medium, + maximum, + minimumWithoutVendorSpecificExtension, + mediumWithoutVendorSpecificExtension, + maximumWithoutVendorSpecificExtension, + ... +} + +E-UTRAN-Trace-ID ::= OCTET STRING (SIZE (8)) + +TrafficLoadReductionIndication ::= INTEGER (1..99) + +TunnelInformation ::= SEQUENCE { + transportLayerAddress TransportLayerAddress, + uDP-Port-Number Port-Number OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {Tunnel-Information-ExtIEs} } OPTIONAL, + ... +} + +Tunnel-Information-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TypeOfError ::= ENUMERATED { + not-understood, + missing, + ... +} + +TAIListForRestart ::= SEQUENCE (SIZE(1..maxnoofRestartTAIs)) OF TAI + +-- U + +UEAggregateMaximumBitrate ::= SEQUENCE { + uEaggregateMaximumBitRateDL BitRate, + uEaggregateMaximumBitRateUL BitRate, + iE-Extensions ProtocolExtensionContainer { {UEAggregate-MaximumBitrates-ExtIEs} } OPTIONAL, + ... +} + +UEAggregate-MaximumBitrates-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for maximum bitrate > 10G bps -- + { ID id-extended-uEaggregateMaximumBitRateDL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}| + { ID id-extended-uEaggregateMaximumBitRateUL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}, + ... +} + +UEAppLayerMeasConfig ::= SEQUENCE { + containerForAppLayerMeasConfig OCTET STRING (SIZE(1..1000)), + areaScopeOfQMC AreaScopeOfQMC, + iE-Extensions ProtocolExtensionContainer { {UEAppLayerMeasConfig-ExtIEs} } OPTIONAL, + ... +} + +UEAppLayerMeasConfig-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + {ID id-serviceType CRITICALITY ignore EXTENSION ServiceType PRESENCE optional}, + ... +} + +UECapabilityInfoRequest ::= ENUMERATED { + requested, + ... +} + +UE-RetentionInformation ::= ENUMERATED { + ues-retained, + ...} + +UE-S1AP-IDs ::= CHOICE{ + uE-S1AP-ID-pair UE-S1AP-ID-pair, + mME-UE-S1AP-ID MME-UE-S1AP-ID, + ... +} + +UE-S1AP-ID-pair ::= SEQUENCE{ + mME-UE-S1AP-ID MME-UE-S1AP-ID, + eNB-UE-S1AP-ID ENB-UE-S1AP-ID, + iE-Extensions ProtocolExtensionContainer { {UE-S1AP-ID-pair-ExtIEs} } OPTIONAL, + ... +} +UE-S1AP-ID-pair-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +UE-associatedLogicalS1-ConnectionItem ::= SEQUENCE { + mME-UE-S1AP-ID MME-UE-S1AP-ID OPTIONAL, + eNB-UE-S1AP-ID ENB-UE-S1AP-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { UE-associatedLogicalS1-ConnectionItemExtIEs} } OPTIONAL, + ... +} + + +UE-associatedLogicalS1-ConnectionItemExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +UEIdentityIndexValue ::= BIT STRING (SIZE (10)) + +UE-HistoryInformation ::= SEQUENCE (SIZE(1..maxnoofCellsinUEHistoryInfo)) OF LastVisitedCell-Item + +UE-HistoryInformationFromTheUE ::= OCTET STRING +-- This IE is a transparent container and shall be encoded as the VisitedCellInfoList field contained in the UEInformationResponse message as defined in TS 36.331 [16] + +UEPagingID ::= CHOICE { + s-TMSI S-TMSI, + iMSI IMSI, + ... + } + +UERadioCapability ::= OCTET STRING + +UERadioCapabilityForPaging ::= OCTET STRING + +UERadioCapabilityID ::= OCTET STRING + +UE-RLF-Report-Container ::= OCTET STRING +-- This IE is a transparent container and shall be encoded as the rlf-Report-r9 field contained in the UEInformationResponse message as defined in TS 36.331 [16] + +UE-RLF-Report-Container-for-extended-bands ::= OCTET STRING +-- This IE is a transparent container and shall be encoded as the rlf-Report-v9e0 contained in the UEInformationResponse message as defined in TS 36.331 [16] + +UESecurityCapabilities ::= SEQUENCE { + encryptionAlgorithms EncryptionAlgorithms, + integrityProtectionAlgorithms IntegrityProtectionAlgorithms, + iE-Extensions ProtocolExtensionContainer { { UESecurityCapabilities-ExtIEs} } OPTIONAL, +... +} + +UESecurityCapabilities-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +UESidelinkAggregateMaximumBitrate ::= SEQUENCE { + uESidelinkAggregateMaximumBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { {UE-Sidelink-Aggregate-MaximumBitrates-ExtIEs} } OPTIONAL, + ... +} + +UE-Sidelink-Aggregate-MaximumBitrates-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +UE-Usage-Type ::= INTEGER (0..255) + +UL-CP-SecurityInformation ::= SEQUENCE { + ul-NAS-MAC UL-NAS-MAC, + ul-NAS-Count UL-NAS-Count, + iE-Extensions ProtocolExtensionContainer { { UL-CP-SecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +UL-CP-SecurityInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +UL-NAS-MAC ::= BIT STRING (SIZE (16)) + +UL-NAS-Count ::= BIT STRING (SIZE (5)) + +UnlicensedSpectrumRestriction ::= ENUMERATED { + unlicensed-restricted, + ... +} + + +URI-Address ::= VisibleString + +UserLocationInformation ::= SEQUENCE { + eutran-cgi EUTRAN-CGI, + tai TAI, + iE-Extensions ProtocolExtensionContainer { { UserLocationInformation-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-PSCellInformation CRITICALITY ignore EXTENSION PSCellInformation PRESENCE optional}, + ... +} + +UEUserPlaneCIoTSupportIndicator ::= ENUMERATED { + supported, + ... +} + +UE-Application-Layer-Measurement-Capability ::= BIT STRING (SIZE (8)) + +-- First bit: QoE Measurement for streaming service +-- Second bit: QoE Measurement for MTSI service + +-- Note that undefined bits are considered as a spare bit and spare bits shall be set to 0 by the transmitter and shall be ignored by the receiver. + +-- V + +VoiceSupportMatchIndicator ::= ENUMERATED { + supported, + not-supported, + ... +} + +V2XServicesAuthorized ::= SEQUENCE { + vehicleUE VehicleUE OPTIONAL, + pedestrianUE PedestrianUE OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {V2XServicesAuthorized-ExtIEs} } OPTIONAL, + ... +} + +V2XServicesAuthorized-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +VehicleUE ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +PedestrianUE ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +-- W + +WarningAreaCoordinates ::= OCTET STRING (SIZE(1..1024)) + +WarningAreaList ::= CHOICE { + cellIDList ECGIList, + trackingAreaListforWarning TAIListforWarning, + emergencyAreaIDList EmergencyAreaIDList, + ... +} + + +WarningType ::= OCTET STRING (SIZE (2)) + +WarningSecurityInfo ::= OCTET STRING (SIZE (50)) + + +WarningMessageContents ::= OCTET STRING (SIZE(1..9600)) + +WLANMeasurementConfiguration ::= SEQUENCE { + wlanMeasConfig WLANMeasConfig, + wlanMeasConfigNameList WLANMeasConfigNameList OPTIONAL, + wlan-rssi ENUMERATED {true, ...} OPTIONAL, + wlan-rtt ENUMERATED {true, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { WLANMeasurementConfiguration-ExtIEs } } OPTIONAL, + ... +} + +WLANMeasurementConfiguration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +WLANMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofWLANName)) OF WLANName + +WLANMeasConfig::= ENUMERATED {setup,...} + +WLANName ::= OCTET STRING (SIZE (1..32)) + +WUS-Assistance-Information ::= SEQUENCE { + pagingProbabilityInformation PagingProbabilityInformation, + iE-Extensions ProtocolExtensionContainer { { WUS-Assistance-Information-ExtIEs } } OPTIONAL, + ... +} + +WUS-Assistance-Information-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- X + + +X2TNLConfigurationInfo ::= SEQUENCE { + eNBX2TransportLayerAddresses ENBX2TLAs, + iE-Extensions ProtocolExtensionContainer { { X2TNLConfigurationInfo-ExtIEs} } OPTIONAL, + ... +} + +X2TNLConfigurationInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Release 10 to transfer the IPsec and U-plane addresses during ANR action -- + {ID id-eNBX2ExtendedTransportLayerAddresses CRITICALITY ignore EXTENSION ENBX2ExtTLAs PRESENCE optional}| +-- Extension for Release 12 to transfer the IP addresses of the X2 GW -- + {ID id-eNBIndirectX2TransportLayerAddresses CRITICALITY ignore EXTENSION ENBIndirectX2TransportLayerAddresses PRESENCE optional}, + ... +} + +ENBX2ExtTLAs ::= SEQUENCE (SIZE(1.. maxnoofeNBX2ExtTLAs)) OF ENBX2ExtTLA + +ENBX2ExtTLA ::= SEQUENCE { + iPsecTLA TransportLayerAddress OPTIONAL, + gTPTLAa ENBX2GTPTLAs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ENBX2ExtTLA-ExtIEs} } OPTIONAL, + ... +} + +ENBX2ExtTLA-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ENBX2GTPTLAs ::= SEQUENCE (SIZE(1.. maxnoofeNBX2GTPTLAs)) OF TransportLayerAddress + +ENBIndirectX2TransportLayerAddresses ::= SEQUENCE (SIZE(1..maxnoofeNBX2TLAs)) OF TransportLayerAddress + +-- Y +-- Z + +END + +-- ************************************************************** +-- +-- Common definitions +-- +-- ************************************************************** + +S1AP-CommonDataTypes { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-CommonDataTypes (3) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +Criticality ::= ENUMERATED { reject, ignore, notify } + +Presence ::= ENUMERATED { optional, conditional, mandatory } + +PrivateIE-ID ::= CHOICE { + local INTEGER (0..65535), + global OBJECT IDENTIFIER +} + +ProcedureCode ::= INTEGER (0..255) + +ProtocolExtensionID ::= INTEGER (0..65535) + +ProtocolIE-ID ::= INTEGER (0..65535) + +TriggeringMessage ::= ENUMERATED { initiating-message, successful-outcome, unsuccessfull-outcome } + +END + +-- ************************************************************** +-- +-- Constant definitions +-- +-- ************************************************************** + +S1AP-Constants { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-Constants (4) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + ProcedureCode, + ProtocolIE-ID + +FROM S1AP-CommonDataTypes; + + +-- ************************************************************** +-- +-- Elementary Procedures +-- +-- ************************************************************** + +id-HandoverPreparation ProcedureCode ::= 0 +id-HandoverResourceAllocation ProcedureCode ::= 1 +id-HandoverNotification ProcedureCode ::= 2 +id-PathSwitchRequest ProcedureCode ::= 3 +id-HandoverCancel ProcedureCode ::= 4 +id-E-RABSetup ProcedureCode ::= 5 +id-E-RABModify ProcedureCode ::= 6 +id-E-RABRelease ProcedureCode ::= 7 +id-E-RABReleaseIndication ProcedureCode ::= 8 +id-InitialContextSetup ProcedureCode ::= 9 +id-Paging ProcedureCode ::= 10 +id-downlinkNASTransport ProcedureCode ::= 11 +id-initialUEMessage ProcedureCode ::= 12 +id-uplinkNASTransport ProcedureCode ::= 13 +id-Reset ProcedureCode ::= 14 +id-ErrorIndication ProcedureCode ::= 15 +id-NASNonDeliveryIndication ProcedureCode ::= 16 +id-S1Setup ProcedureCode ::= 17 +id-UEContextReleaseRequest ProcedureCode ::= 18 +id-DownlinkS1cdma2000tunnelling ProcedureCode ::= 19 +id-UplinkS1cdma2000tunnelling ProcedureCode ::= 20 +id-UEContextModification ProcedureCode ::= 21 +id-UECapabilityInfoIndication ProcedureCode ::= 22 +id-UEContextRelease ProcedureCode ::= 23 +id-eNBStatusTransfer ProcedureCode ::= 24 +id-MMEStatusTransfer ProcedureCode ::= 25 +id-DeactivateTrace ProcedureCode ::= 26 +id-TraceStart ProcedureCode ::= 27 +id-TraceFailureIndication ProcedureCode ::= 28 +id-ENBConfigurationUpdate ProcedureCode ::= 29 +id-MMEConfigurationUpdate ProcedureCode ::= 30 +id-LocationReportingControl ProcedureCode ::= 31 +id-LocationReportingFailureIndication ProcedureCode ::= 32 +id-LocationReport ProcedureCode ::= 33 +id-OverloadStart ProcedureCode ::= 34 +id-OverloadStop ProcedureCode ::= 35 +id-WriteReplaceWarning ProcedureCode ::= 36 +id-eNBDirectInformationTransfer ProcedureCode ::= 37 +id-MMEDirectInformationTransfer ProcedureCode ::= 38 +id-PrivateMessage ProcedureCode ::= 39 +id-eNBConfigurationTransfer ProcedureCode ::= 40 +id-MMEConfigurationTransfer ProcedureCode ::= 41 +id-CellTrafficTrace ProcedureCode ::= 42 +id-Kill ProcedureCode ::= 43 +id-downlinkUEAssociatedLPPaTransport ProcedureCode ::= 44 +id-uplinkUEAssociatedLPPaTransport ProcedureCode ::= 45 +id-downlinkNonUEAssociatedLPPaTransport ProcedureCode ::= 46 +id-uplinkNonUEAssociatedLPPaTransport ProcedureCode ::= 47 +id-UERadioCapabilityMatch ProcedureCode ::= 48 +id-PWSRestartIndication ProcedureCode ::= 49 +id-E-RABModificationIndication ProcedureCode ::= 50 +id-PWSFailureIndication ProcedureCode ::= 51 +id-RerouteNASRequest ProcedureCode ::= 52 +id-UEContextModificationIndication ProcedureCode ::= 53 +id-ConnectionEstablishmentIndication ProcedureCode ::= 54 +id-UEContextSuspend ProcedureCode ::= 55 +id-UEContextResume ProcedureCode ::= 56 +id-NASDeliveryIndication ProcedureCode ::= 57 +id-RetrieveUEInformation ProcedureCode ::= 58 +id-UEInformationTransfer ProcedureCode ::= 59 +id-eNBCPRelocationIndication ProcedureCode ::= 60 +id-MMECPRelocationIndication ProcedureCode ::= 61 +id-SecondaryRATDataUsageReport ProcedureCode ::= 62 +id-UERadioCapabilityIDMapping ProcedureCode ::= 63 +id-HandoverSuccess ProcedureCode ::= 64 +id-eNBEarlyStatusTransfer ProcedureCode ::= 65 +id-MMEEarlyStatusTransfer ProcedureCode ::= 66 + +-- ************************************************************** +-- +-- Extension constants +-- +-- ************************************************************** + +maxPrivateIEs INTEGER ::= 65535 +maxProtocolExtensions INTEGER ::= 65535 +maxProtocolIEs INTEGER ::= 65535 +-- ************************************************************** +-- +-- Lists +-- +-- ************************************************************** + +maxnoofCSGs INTEGER ::= 256 +maxnoofE-RABs INTEGER ::= 256 +maxnoofTAIs INTEGER ::= 256 +maxnoofTACs INTEGER ::= 256 +maxnoofErrors INTEGER ::= 256 +maxnoofBPLMNs INTEGER ::= 6 +maxnoofPLMNsPerMME INTEGER ::= 32 +maxnoofEPLMNs INTEGER ::= 15 +maxnoofEPLMNsPlusOne INTEGER ::= 16 +maxnoofForbLACs INTEGER ::= 4096 +maxnoofForbTACs INTEGER ::= 4096 +maxnoofIndividualS1ConnectionsToReset INTEGER ::= 256 +maxnoofCellsinUEHistoryInfo INTEGER ::= 16 +maxnoofCellsineNB INTEGER ::= 256 +maxnoofTAIforWarning INTEGER ::= 65535 +maxnoofCellID INTEGER ::= 65535 +maxnoofDCNs INTEGER ::= 32 +maxnoofEmergencyAreaID INTEGER ::= 65535 +maxnoofCellinTAI INTEGER ::= 65535 +maxnoofCellinEAI INTEGER ::= 65535 +maxnoofeNBX2TLAs INTEGER ::= 2 +maxnoofeNBX2ExtTLAs INTEGER ::= 16 +maxnoofeNBX2GTPTLAs INTEGER ::= 16 +maxnoofRATs INTEGER ::= 8 +maxnoofGroupIDs INTEGER ::= 65535 +maxnoofMMECs INTEGER ::= 256 +maxnoofCellIDforMDT INTEGER ::= 32 +maxnoofTAforMDT INTEGER ::= 8 +maxnoofMDTPLMNs INTEGER ::= 16 +maxnoofCellsforRestart INTEGER ::= 256 +maxnoofRestartTAIs INTEGER ::= 2048 +maxnoofRestartEmergencyAreaIDs INTEGER ::= 256 +maxEARFCN INTEGER ::= 262143 +maxnoofMBSFNAreaMDT INTEGER ::= 8 +maxnoofRecommendedCells INTEGER ::= 16 +maxnoofRecommendedENBs INTEGER ::= 16 +maxnooftimeperiods INTEGER ::= 2 +maxnoofCellIDforQMC INTEGER ::= 32 +maxnoofTAforQMC INTEGER ::= 8 +maxnoofPLMNforQMC INTEGER ::= 16 +maxnoofBluetoothName INTEGER ::= 4 +maxnoofWLANName INTEGER ::= 4 +maxnoofConnectedengNBs INTEGER ::= 256 +maxnoofPC5QoSFlows INTEGER ::= 2048 +maxnooffrequencies INTEGER ::= 64 +maxNARFCN INTEGER ::= 32 +maxRS-IndexCellQual INTEGER ::= 16 + + +-- ************************************************************** +-- +-- IEs +-- +-- ************************************************************** + +id-MME-UE-S1AP-ID ProtocolIE-ID ::= 0 +id-HandoverType ProtocolIE-ID ::= 1 +id-Cause ProtocolIE-ID ::= 2 +id-SourceID ProtocolIE-ID ::= 3 +id-TargetID ProtocolIE-ID ::= 4 +id-eNB-UE-S1AP-ID ProtocolIE-ID ::= 8 +id-E-RABSubjecttoDataForwardingList ProtocolIE-ID ::= 12 +id-E-RABtoReleaseListHOCmd ProtocolIE-ID ::= 13 +id-E-RABDataForwardingItem ProtocolIE-ID ::= 14 +id-E-RABReleaseItemBearerRelComp ProtocolIE-ID ::= 15 +id-E-RABToBeSetupListBearerSUReq ProtocolIE-ID ::= 16 +id-E-RABToBeSetupItemBearerSUReq ProtocolIE-ID ::= 17 +id-E-RABAdmittedList ProtocolIE-ID ::= 18 +id-E-RABFailedToSetupListHOReqAck ProtocolIE-ID ::= 19 +id-E-RABAdmittedItem ProtocolIE-ID ::= 20 +id-E-RABFailedtoSetupItemHOReqAck ProtocolIE-ID ::= 21 +id-E-RABToBeSwitchedDLList ProtocolIE-ID ::= 22 +id-E-RABToBeSwitchedDLItem ProtocolIE-ID ::= 23 +id-E-RABToBeSetupListCtxtSUReq ProtocolIE-ID ::= 24 +id-TraceActivation ProtocolIE-ID ::= 25 +id-NAS-PDU ProtocolIE-ID ::= 26 +id-E-RABToBeSetupItemHOReq ProtocolIE-ID ::= 27 +id-E-RABSetupListBearerSURes ProtocolIE-ID ::= 28 +id-E-RABFailedToSetupListBearerSURes ProtocolIE-ID ::= 29 +id-E-RABToBeModifiedListBearerModReq ProtocolIE-ID ::= 30 +id-E-RABModifyListBearerModRes ProtocolIE-ID ::= 31 +id-E-RABFailedToModifyList ProtocolIE-ID ::= 32 +id-E-RABToBeReleasedList ProtocolIE-ID ::= 33 +id-E-RABFailedToReleaseList ProtocolIE-ID ::= 34 +id-E-RABItem ProtocolIE-ID ::= 35 +id-E-RABToBeModifiedItemBearerModReq ProtocolIE-ID ::= 36 +id-E-RABModifyItemBearerModRes ProtocolIE-ID ::= 37 +id-E-RABReleaseItem ProtocolIE-ID ::= 38 +id-E-RABSetupItemBearerSURes ProtocolIE-ID ::= 39 +id-SecurityContext ProtocolIE-ID ::= 40 +id-HandoverRestrictionList ProtocolIE-ID ::= 41 +id-UEPagingID ProtocolIE-ID ::= 43 +id-pagingDRX ProtocolIE-ID ::= 44 +id-TAIList ProtocolIE-ID ::= 46 +id-TAIItem ProtocolIE-ID ::= 47 +id-E-RABFailedToSetupListCtxtSURes ProtocolIE-ID ::= 48 +id-E-RABReleaseItemHOCmd ProtocolIE-ID ::= 49 +id-E-RABSetupItemCtxtSURes ProtocolIE-ID ::= 50 +id-E-RABSetupListCtxtSURes ProtocolIE-ID ::= 51 +id-E-RABToBeSetupItemCtxtSUReq ProtocolIE-ID ::= 52 +id-E-RABToBeSetupListHOReq ProtocolIE-ID ::= 53 +id-GERANtoLTEHOInformationRes ProtocolIE-ID ::= 55 +id-UTRANtoLTEHOInformationRes ProtocolIE-ID ::= 57 +id-CriticalityDiagnostics ProtocolIE-ID ::= 58 +id-Global-ENB-ID ProtocolIE-ID ::= 59 +id-eNBname ProtocolIE-ID ::= 60 +id-MMEname ProtocolIE-ID ::= 61 +id-ServedPLMNs ProtocolIE-ID ::= 63 +id-SupportedTAs ProtocolIE-ID ::= 64 +id-TimeToWait ProtocolIE-ID ::= 65 +id-uEaggregateMaximumBitrate ProtocolIE-ID ::= 66 +id-TAI ProtocolIE-ID ::= 67 +id-E-RABReleaseListBearerRelComp ProtocolIE-ID ::= 69 +id-cdma2000PDU ProtocolIE-ID ::= 70 +id-cdma2000RATType ProtocolIE-ID ::= 71 +id-cdma2000SectorID ProtocolIE-ID ::= 72 +id-SecurityKey ProtocolIE-ID ::= 73 +id-UERadioCapability ProtocolIE-ID ::= 74 +id-GUMMEI-ID ProtocolIE-ID ::= 75 +id-E-RABInformationListItem ProtocolIE-ID ::= 78 +id-Direct-Forwarding-Path-Availability ProtocolIE-ID ::= 79 +id-UEIdentityIndexValue ProtocolIE-ID ::= 80 +id-cdma2000HOStatus ProtocolIE-ID ::= 83 +id-cdma2000HORequiredIndication ProtocolIE-ID ::= 84 +id-E-UTRAN-Trace-ID ProtocolIE-ID ::= 86 +id-RelativeMMECapacity ProtocolIE-ID ::= 87 +id-SourceMME-UE-S1AP-ID ProtocolIE-ID ::= 88 +id-Bearers-SubjectToStatusTransfer-Item ProtocolIE-ID ::= 89 +id-eNB-StatusTransfer-TransparentContainer ProtocolIE-ID ::= 90 +id-UE-associatedLogicalS1-ConnectionItem ProtocolIE-ID ::= 91 +id-ResetType ProtocolIE-ID ::= 92 +id-UE-associatedLogicalS1-ConnectionListResAck ProtocolIE-ID ::= 93 +id-E-RABToBeSwitchedULItem ProtocolIE-ID ::= 94 +id-E-RABToBeSwitchedULList ProtocolIE-ID ::= 95 +id-S-TMSI ProtocolIE-ID ::= 96 +id-cdma2000OneXRAND ProtocolIE-ID ::= 97 +id-RequestType ProtocolIE-ID ::= 98 +id-UE-S1AP-IDs ProtocolIE-ID ::= 99 +id-EUTRAN-CGI ProtocolIE-ID ::= 100 +id-OverloadResponse ProtocolIE-ID ::= 101 +id-cdma2000OneXSRVCCInfo ProtocolIE-ID ::= 102 +id-E-RABFailedToBeReleasedList ProtocolIE-ID ::= 103 +id-Source-ToTarget-TransparentContainer ProtocolIE-ID ::= 104 +id-ServedGUMMEIs ProtocolIE-ID ::= 105 +id-SubscriberProfileIDforRFP ProtocolIE-ID ::= 106 +id-UESecurityCapabilities ProtocolIE-ID ::= 107 +id-CSFallbackIndicator ProtocolIE-ID ::= 108 +id-CNDomain ProtocolIE-ID ::= 109 +id-E-RABReleasedList ProtocolIE-ID ::= 110 +id-MessageIdentifier ProtocolIE-ID ::= 111 +id-SerialNumber ProtocolIE-ID ::= 112 +id-WarningAreaList ProtocolIE-ID ::= 113 +id-RepetitionPeriod ProtocolIE-ID ::= 114 +id-NumberofBroadcastRequest ProtocolIE-ID ::= 115 +id-WarningType ProtocolIE-ID ::= 116 +id-WarningSecurityInfo ProtocolIE-ID ::= 117 +id-DataCodingScheme ProtocolIE-ID ::= 118 +id-WarningMessageContents ProtocolIE-ID ::= 119 +id-BroadcastCompletedAreaList ProtocolIE-ID ::= 120 +id-Inter-SystemInformationTransferTypeEDT ProtocolIE-ID ::= 121 +id-Inter-SystemInformationTransferTypeMDT ProtocolIE-ID ::= 122 +id-Target-ToSource-TransparentContainer ProtocolIE-ID ::= 123 +id-SRVCCOperationPossible ProtocolIE-ID ::= 124 +id-SRVCCHOIndication ProtocolIE-ID ::= 125 +id-NAS-DownlinkCount ProtocolIE-ID ::= 126 +id-CSG-Id ProtocolIE-ID ::= 127 +id-CSG-IdList ProtocolIE-ID ::= 128 +id-SONConfigurationTransferECT ProtocolIE-ID ::= 129 +id-SONConfigurationTransferMCT ProtocolIE-ID ::= 130 +id-TraceCollectionEntityIPAddress ProtocolIE-ID ::= 131 +id-MSClassmark2 ProtocolIE-ID ::= 132 +id-MSClassmark3 ProtocolIE-ID ::= 133 +id-RRC-Establishment-Cause ProtocolIE-ID ::= 134 +id-NASSecurityParametersfromE-UTRAN ProtocolIE-ID ::= 135 +id-NASSecurityParameterstoE-UTRAN ProtocolIE-ID ::= 136 +id-DefaultPagingDRX ProtocolIE-ID ::= 137 +id-Source-ToTarget-TransparentContainer-Secondary ProtocolIE-ID ::= 138 +id-Target-ToSource-TransparentContainer-Secondary ProtocolIE-ID ::= 139 +id-EUTRANRoundTripDelayEstimationInfo ProtocolIE-ID ::= 140 +id-BroadcastCancelledAreaList ProtocolIE-ID ::= 141 +id-ConcurrentWarningMessageIndicator ProtocolIE-ID ::= 142 +id-Data-Forwarding-Not-Possible ProtocolIE-ID ::= 143 +id-ExtendedRepetitionPeriod ProtocolIE-ID ::= 144 +id-CellAccessMode ProtocolIE-ID ::= 145 +id-CSGMembershipStatus ProtocolIE-ID ::= 146 +id-LPPa-PDU ProtocolIE-ID ::= 147 +id-Routing-ID ProtocolIE-ID ::= 148 +id-Time-Synchronisation-Info ProtocolIE-ID ::= 149 +id-PS-ServiceNotAvailable ProtocolIE-ID ::= 150 +id-PagingPriority ProtocolIE-ID ::= 151 +id-x2TNLConfigurationInfo ProtocolIE-ID ::= 152 +id-eNBX2ExtendedTransportLayerAddresses ProtocolIE-ID ::= 153 +id-GUMMEIList ProtocolIE-ID ::= 154 +id-GW-TransportLayerAddress ProtocolIE-ID ::= 155 +id-Correlation-ID ProtocolIE-ID ::= 156 +id-SourceMME-GUMMEI ProtocolIE-ID ::= 157 +id-MME-UE-S1AP-ID-2 ProtocolIE-ID ::= 158 +id-RegisteredLAI ProtocolIE-ID ::= 159 +id-RelayNode-Indicator ProtocolIE-ID ::= 160 +id-TrafficLoadReductionIndication ProtocolIE-ID ::= 161 +id-MDTConfiguration ProtocolIE-ID ::= 162 +id-MMERelaySupportIndicator ProtocolIE-ID ::= 163 +id-GWContextReleaseIndication ProtocolIE-ID ::= 164 +id-ManagementBasedMDTAllowed ProtocolIE-ID ::= 165 +id-PrivacyIndicator ProtocolIE-ID ::= 166 +id-Time-UE-StayedInCell-EnhancedGranularity ProtocolIE-ID ::= 167 +id-HO-Cause ProtocolIE-ID ::= 168 +id-VoiceSupportMatchIndicator ProtocolIE-ID ::= 169 +id-GUMMEIType ProtocolIE-ID ::= 170 +id-M3Configuration ProtocolIE-ID ::= 171 +id-M4Configuration ProtocolIE-ID ::= 172 +id-M5Configuration ProtocolIE-ID ::= 173 +id-MDT-Location-Info ProtocolIE-ID ::= 174 +id-MobilityInformation ProtocolIE-ID ::= 175 +id-Tunnel-Information-for-BBF ProtocolIE-ID ::= 176 +id-ManagementBasedMDTPLMNList ProtocolIE-ID ::= 177 +id-SignallingBasedMDTPLMNList ProtocolIE-ID ::= 178 +id-ULCOUNTValueExtended ProtocolIE-ID ::= 179 +id-DLCOUNTValueExtended ProtocolIE-ID ::= 180 +id-ReceiveStatusOfULPDCPSDUsExtended ProtocolIE-ID ::= 181 +id-ECGIListForRestart ProtocolIE-ID ::= 182 +id-SIPTO-Correlation-ID ProtocolIE-ID ::= 183 +id-SIPTO-L-GW-TransportLayerAddress ProtocolIE-ID ::= 184 +id-TransportInformation ProtocolIE-ID ::= 185 +id-LHN-ID ProtocolIE-ID ::= 186 +id-AdditionalCSFallbackIndicator ProtocolIE-ID ::= 187 +id-TAIListForRestart ProtocolIE-ID ::= 188 +id-UserLocationInformation ProtocolIE-ID ::= 189 +id-EmergencyAreaIDListForRestart ProtocolIE-ID ::= 190 +id-KillAllWarningMessages ProtocolIE-ID ::= 191 +id-Masked-IMEISV ProtocolIE-ID ::= 192 +id-eNBIndirectX2TransportLayerAddresses ProtocolIE-ID ::= 193 +id-uE-HistoryInformationFromTheUE ProtocolIE-ID ::= 194 +id-ProSeAuthorized ProtocolIE-ID ::= 195 +id-ExpectedUEBehaviour ProtocolIE-ID ::= 196 +id-LoggedMBSFNMDT ProtocolIE-ID ::= 197 +id-UERadioCapabilityForPaging ProtocolIE-ID ::= 198 +id-E-RABToBeModifiedListBearerModInd ProtocolIE-ID ::= 199 +id-E-RABToBeModifiedItemBearerModInd ProtocolIE-ID ::= 200 +id-E-RABNotToBeModifiedListBearerModInd ProtocolIE-ID ::= 201 +id-E-RABNotToBeModifiedItemBearerModInd ProtocolIE-ID ::= 202 +id-E-RABModifyListBearerModConf ProtocolIE-ID ::= 203 +id-E-RABModifyItemBearerModConf ProtocolIE-ID ::= 204 +id-E-RABFailedToModifyListBearerModConf ProtocolIE-ID ::= 205 +id-SON-Information-Report ProtocolIE-ID ::= 206 +id-Muting-Availability-Indication ProtocolIE-ID ::= 207 +id-Muting-Pattern-Information ProtocolIE-ID ::= 208 +id-Synchronisation-Information ProtocolIE-ID ::= 209 +id-E-RABToBeReleasedListBearerModConf ProtocolIE-ID ::= 210 +id-AssistanceDataForPaging ProtocolIE-ID ::= 211 +id-CellIdentifierAndCELevelForCECapableUEs ProtocolIE-ID ::= 212 +id-InformationOnRecommendedCellsAndENBsForPaging ProtocolIE-ID ::= 213 +id-RecommendedCellItem ProtocolIE-ID ::= 214 +id-RecommendedENBItem ProtocolIE-ID ::= 215 +id-ProSeUEtoNetworkRelaying ProtocolIE-ID ::= 216 +id-ULCOUNTValuePDCP-SNlength18 ProtocolIE-ID ::= 217 +id-DLCOUNTValuePDCP-SNlength18 ProtocolIE-ID ::= 218 +id-ReceiveStatusOfULPDCPSDUsPDCP-SNlength18 ProtocolIE-ID ::= 219 +id-M6Configuration ProtocolIE-ID ::= 220 +id-M7Configuration ProtocolIE-ID ::= 221 +id-PWSfailedECGIList ProtocolIE-ID ::= 222 +id-MME-Group-ID ProtocolIE-ID ::= 223 +id-Additional-GUTI ProtocolIE-ID ::= 224 +id-S1-Message ProtocolIE-ID ::= 225 +id-CSGMembershipInfo ProtocolIE-ID ::= 226 +id-Paging-eDRXInformation ProtocolIE-ID ::= 227 +id-UE-RetentionInformation ProtocolIE-ID ::= 228 +id-UE-Usage-Type ProtocolIE-ID ::= 230 +id-extended-UEIdentityIndexValue ProtocolIE-ID ::= 231 +id-RAT-Type ProtocolIE-ID ::= 232 +id-BearerType ProtocolIE-ID ::= 233 +id-NB-IoT-DefaultPagingDRX ProtocolIE-ID ::= 234 +id-E-RABFailedToResumeListResumeReq ProtocolIE-ID ::= 235 +id-E-RABFailedToResumeItemResumeReq ProtocolIE-ID ::= 236 +id-E-RABFailedToResumeListResumeRes ProtocolIE-ID ::= 237 +id-E-RABFailedToResumeItemResumeRes ProtocolIE-ID ::= 238 +id-NB-IoT-Paging-eDRXInformation ProtocolIE-ID ::= 239 +id-V2XServicesAuthorized ProtocolIE-ID ::= 240 +id-UEUserPlaneCIoTSupportIndicator ProtocolIE-ID ::= 241 +id-CE-mode-B-SupportIndicator ProtocolIE-ID ::= 242 +id-SRVCCOperationNotPossible ProtocolIE-ID ::= 243 +id-NB-IoT-UEIdentityIndexValue ProtocolIE-ID ::= 244 +id-RRC-Resume-Cause ProtocolIE-ID ::= 245 +id-DCN-ID ProtocolIE-ID ::= 246 +id-ServedDCNs ProtocolIE-ID ::= 247 +id-UESidelinkAggregateMaximumBitrate ProtocolIE-ID ::= 248 +id-DLNASPDUDeliveryAckRequest ProtocolIE-ID ::= 249 +id-Coverage-Level ProtocolIE-ID ::= 250 +id-EnhancedCoverageRestricted ProtocolIE-ID ::= 251 +id-UE-Level-QoS-Parameters ProtocolIE-ID ::= 252 +id-DL-CP-SecurityInformation ProtocolIE-ID ::= 253 +id-UL-CP-SecurityInformation ProtocolIE-ID ::= 254 +id-extended-e-RAB-MaximumBitrateDL ProtocolIE-ID ::= 255 +id-extended-e-RAB-MaximumBitrateUL ProtocolIE-ID ::= 256 +id-extended-e-RAB-GuaranteedBitrateDL ProtocolIE-ID ::= 257 +id-extended-e-RAB-GuaranteedBitrateUL ProtocolIE-ID ::= 258 +id-extended-uEaggregateMaximumBitRateDL ProtocolIE-ID ::= 259 +id-extended-uEaggregateMaximumBitRateUL ProtocolIE-ID ::= 260 +id-NRrestrictioninEPSasSecondaryRAT ProtocolIE-ID ::= 261 +id-UEAppLayerMeasConfig ProtocolIE-ID ::= 262 +id-UE-Application-Layer-Measurement-Capability ProtocolIE-ID ::= 263 +id-SecondaryRATDataUsageReportList ProtocolIE-ID ::= 264 +id-SecondaryRATDataUsageReportItem ProtocolIE-ID ::= 265 +id-HandoverFlag ProtocolIE-ID ::= 266 +id-E-RABUsageReportItem ProtocolIE-ID ::= 267 +id-SecondaryRATDataUsageRequest ProtocolIE-ID ::= 268 +id-NRUESecurityCapabilities ProtocolIE-ID ::= 269 +id-UnlicensedSpectrumRestriction ProtocolIE-ID ::= 270 +id-CE-ModeBRestricted ProtocolIE-ID ::= 271 +id-LTE-M-Indication ProtocolIE-ID ::= 272 +id-DownlinkPacketLossRate ProtocolIE-ID ::= 273 +id-UplinkPacketLossRate ProtocolIE-ID ::= 274 +id-UECapabilityInfoRequest ProtocolIE-ID ::= 275 +id-serviceType ProtocolIE-ID ::= 276 +id-AerialUEsubscriptionInformation ProtocolIE-ID ::= 277 +id-Subscription-Based-UE-DifferentiationInfo ProtocolIE-ID ::= 278 +id-EndIndication ProtocolIE-ID ::= 280 +id-EDT-Session ProtocolIE-ID ::= 281 +id-CNTypeRestrictions ProtocolIE-ID ::= 282 +id-PendingDataIndication ProtocolIE-ID ::= 283 +id-BluetoothMeasurementConfiguration ProtocolIE-ID ::= 284 +id-WLANMeasurementConfiguration ProtocolIE-ID ::= 285 +id-WarningAreaCoordinates ProtocolIE-ID ::= 286 +id-NRrestrictionin5GS ProtocolIE-ID ::= 287 +id-PSCellInformation ProtocolIE-ID ::= 288 +id-LastNG-RANPLMNIdentity ProtocolIE-ID ::= 290 +id-ConnectedengNBList ProtocolIE-ID ::= 291 +id-ConnectedengNBToAddList ProtocolIE-ID ::= 292 +id-ConnectedengNBToRemoveList ProtocolIE-ID ::= 293 +id-EN-DCSONConfigurationTransfer-ECT ProtocolIE-ID ::= 294 +id-EN-DCSONConfigurationTransfer-MCT ProtocolIE-ID ::= 295 +id-IMSvoiceEPSfallbackfrom5G ProtocolIE-ID ::= 296 +id-TimeSinceSecondaryNodeRelease ProtocolIE-ID ::= 297 +id-RequestTypeAdditionalInfo ProtocolIE-ID ::= 298 +id-AdditionalRRMPriorityIndex ProtocolIE-ID ::= 299 +id-ContextatSource ProtocolIE-ID ::= 300 +id-IAB-Authorized ProtocolIE-ID ::= 301 +id-IAB-Node-Indication ProtocolIE-ID ::= 302 +id-IAB-Supported ProtocolIE-ID ::= 303 +id-DataSize ProtocolIE-ID ::= 304 +id-Ethernet-Type ProtocolIE-ID ::= 305 +id-NRV2XServicesAuthorized ProtocolIE-ID ::= 306 +id-NRUESidelinkAggregateMaximumBitrate ProtocolIE-ID ::= 307 +id-PC5QoSParameters ProtocolIE-ID ::= 308 +id-IntersystemSONConfigurationTransferMCT ProtocolIE-ID ::= 309 +id-IntersystemSONConfigurationTransferECT ProtocolIE-ID ::= 310 +id-IntersystemMeasurementConfiguration ProtocolIE-ID ::= 311 +id-SourceNodeID ProtocolIE-ID ::= 312 +id-NB-IoT-RLF-Report-Container ProtocolIE-ID ::= 313 +id-UERadioCapabilityID ProtocolIE-ID ::= 314 +id-UERadioCapability-NR-Format ProtocolIE-ID ::= 315 +id-MDTConfigurationNR ProtocolIE-ID ::= 316 +id-DAPSRequestInfo ProtocolIE-ID ::= 317 +id-DAPSResponseInfoList ProtocolIE-ID ::= 318 +id-DAPSResponseInfoItem ProtocolIE-ID ::= 319 +id-NotifySourceeNB ProtocolIE-ID ::= 320 +id-eNB-EarlyStatusTransfer-TransparentContainer ProtocolIE-ID ::= 321 +id-Bearers-SubjectToEarlyStatusTransfer-Item ProtocolIE-ID ::= 322 +id-WUS-Assistance-Information ProtocolIE-ID ::= 323 +id-NB-IoT-PagingDRX ProtocolIE-ID ::= 324 +id-TraceCollectionEntityURI ProtocolIE-ID ::= 325 +id-EmergencyIndicator ProtocolIE-ID ::= 326 + +END + +-- ************************************************************** +-- +-- Container definitions +-- +-- ************************************************************** + +S1AP-Containers { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-Containers (5) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + Criticality, + Presence, + PrivateIE-ID, + ProtocolExtensionID, + ProtocolIE-ID +FROM S1AP-CommonDataTypes + + maxPrivateIEs, + maxProtocolExtensions, + maxProtocolIEs +FROM S1AP-Constants; + +-- ************************************************************** +-- +-- Class Definition for Protocol IEs +-- +-- ************************************************************** + +S1AP-PROTOCOL-IES ::= CLASS { + &id ProtocolIE-ID UNIQUE, + &criticality Criticality, + &Value, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + TYPE &Value + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Protocol IEs +-- +-- ************************************************************** + +S1AP-PROTOCOL-IES-PAIR ::= CLASS { + &id ProtocolIE-ID UNIQUE, + &firstCriticality Criticality, + &FirstValue, + &secondCriticality Criticality, + &SecondValue, + &presence Presence +} +WITH SYNTAX { + ID &id + FIRST CRITICALITY &firstCriticality + FIRST TYPE &FirstValue + SECOND CRITICALITY &secondCriticality + SECOND TYPE &SecondValue + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Protocol Extensions +-- +-- ************************************************************** + +S1AP-PROTOCOL-EXTENSION ::= CLASS { + &id ProtocolExtensionID UNIQUE, + &criticality Criticality, + &Extension, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + EXTENSION &Extension + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Private IEs +-- +-- ************************************************************** + +S1AP-PRIVATE-IES ::= CLASS { + &id PrivateIE-ID, + &criticality Criticality, + &Value, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + TYPE &Value + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Container for Protocol IEs +-- +-- ************************************************************** + +ProtocolIE-Container {S1AP-PROTOCOL-IES : IEsSetParam} ::= + SEQUENCE (SIZE (0..maxProtocolIEs)) OF + ProtocolIE-Field {{IEsSetParam}} + +ProtocolIE-SingleContainer {S1AP-PROTOCOL-IES : IEsSetParam} ::= + ProtocolIE-Field {{IEsSetParam}} + +ProtocolIE-Field {S1AP-PROTOCOL-IES : IEsSetParam} ::= SEQUENCE { + id S1AP-PROTOCOL-IES.&id ({IEsSetParam}), + criticality S1AP-PROTOCOL-IES.&criticality ({IEsSetParam}{@id}), + value S1AP-PROTOCOL-IES.&Value ({IEsSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container for Protocol IE Pairs +-- +-- ************************************************************** + +ProtocolIE-ContainerPair {S1AP-PROTOCOL-IES-PAIR : IEsSetParam} ::= + SEQUENCE (SIZE (0..maxProtocolIEs)) OF + ProtocolIE-FieldPair {{IEsSetParam}} + +ProtocolIE-FieldPair {S1AP-PROTOCOL-IES-PAIR : IEsSetParam} ::= SEQUENCE { + id S1AP-PROTOCOL-IES-PAIR.&id ({IEsSetParam}), + firstCriticality S1AP-PROTOCOL-IES-PAIR.&firstCriticality ({IEsSetParam}{@id}), + firstValue S1AP-PROTOCOL-IES-PAIR.&FirstValue ({IEsSetParam}{@id}), + secondCriticality S1AP-PROTOCOL-IES-PAIR.&secondCriticality ({IEsSetParam}{@id}), + secondValue S1AP-PROTOCOL-IES-PAIR.&SecondValue ({IEsSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container Lists for Protocol IE Containers +-- +-- ************************************************************** + +ProtocolIE-ContainerList {INTEGER : lowerBound, INTEGER : upperBound, S1AP-PROTOCOL-IES : IEsSetParam} ::= + SEQUENCE (SIZE (lowerBound..upperBound)) OF + ProtocolIE-SingleContainer {{IEsSetParam}} + +ProtocolIE-ContainerPairList {INTEGER : lowerBound, INTEGER : upperBound, S1AP-PROTOCOL-IES-PAIR : IEsSetParam} ::= + SEQUENCE (SIZE (lowerBound..upperBound)) OF + ProtocolIE-ContainerPair {{IEsSetParam}} + +-- ************************************************************** +-- +-- Container for Protocol Extensions +-- +-- ************************************************************** + +ProtocolExtensionContainer {S1AP-PROTOCOL-EXTENSION : ExtensionSetParam} ::= + SEQUENCE (SIZE (1..maxProtocolExtensions)) OF + ProtocolExtensionField {{ExtensionSetParam}} + +ProtocolExtensionField {S1AP-PROTOCOL-EXTENSION : ExtensionSetParam} ::= SEQUENCE { + id S1AP-PROTOCOL-EXTENSION.&id ({ExtensionSetParam}), + criticality S1AP-PROTOCOL-EXTENSION.&criticality ({ExtensionSetParam}{@id}), + extensionValue S1AP-PROTOCOL-EXTENSION.&Extension ({ExtensionSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container for Private IEs +-- +-- ************************************************************** + +PrivateIE-Container {S1AP-PRIVATE-IES : IEsSetParam } ::= + SEQUENCE (SIZE (1.. maxPrivateIEs)) OF + PrivateIE-Field {{IEsSetParam}} + +PrivateIE-Field {S1AP-PRIVATE-IES : IEsSetParam} ::= SEQUENCE { + id S1AP-PRIVATE-IES.&id ({IEsSetParam}), + criticality S1AP-PRIVATE-IES.&criticality ({IEsSetParam}{@id}), + value S1AP-PRIVATE-IES.&Value ({IEsSetParam}{@id}) +} + +END diff --git a/lib/asn1c/support/s1ap-r16.7.0/36413-g70.txt b/lib/asn1c/support/s1ap-r16.7.0/36413-g70.txt new file mode 100644 index 000000000..7a58dddf0 --- /dev/null +++ b/lib/asn1c/support/s1ap-r16.7.0/36413-g70.txt @@ -0,0 +1,7928 @@ +9.3.2 Elementary Procedure Definitions +-- ************************************************************** +-- +-- Elementary Procedure definitions +-- +-- ************************************************************** + +S1AP-PDU-Descriptions { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-PDU-Descriptions (0)} + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + Criticality, + ProcedureCode +FROM S1AP-CommonDataTypes + + CellTrafficTrace, + DeactivateTrace, + DownlinkUEAssociatedLPPaTransport, + DownlinkNASTransport, + DownlinkNonUEAssociatedLPPaTransport, + DownlinkS1cdma2000tunnelling, + ENBDirectInformationTransfer, + ENBStatusTransfer, + ENBConfigurationUpdate, + ENBConfigurationUpdateAcknowledge, + ENBConfigurationUpdateFailure, + ErrorIndication, + HandoverCancel, + HandoverCancelAcknowledge, + HandoverCommand, + HandoverFailure, + HandoverNotify, + HandoverPreparationFailure, + HandoverRequest, + HandoverRequestAcknowledge, + HandoverRequired, + InitialContextSetupFailure, + InitialContextSetupRequest, + InitialContextSetupResponse, + InitialUEMessage, + KillRequest, + KillResponse, + LocationReportingControl, + LocationReportingFailureIndication, + LocationReport, + MMEConfigurationUpdate, + MMEConfigurationUpdateAcknowledge, + MMEConfigurationUpdateFailure, + MMEDirectInformationTransfer, + MMEStatusTransfer, + NASNonDeliveryIndication, + OverloadStart, + OverloadStop, + Paging, + PathSwitchRequest, + PathSwitchRequestAcknowledge, + PathSwitchRequestFailure, + PrivateMessage, + Reset, + ResetAcknowledge, + S1SetupFailure, + S1SetupRequest, + S1SetupResponse, + E-RABModifyRequest, + E-RABModifyResponse, + E-RABModificationIndication, + E-RABModificationConfirm, + E-RABReleaseCommand, + E-RABReleaseResponse, + E-RABReleaseIndication, + E-RABSetupRequest, + E-RABSetupResponse, + TraceFailureIndication, + TraceStart, + UECapabilityInfoIndication, + UEContextModificationFailure, + UEContextModificationRequest, + UEContextModificationResponse, + UEContextReleaseCommand, + UEContextReleaseComplete, + UEContextReleaseRequest, + UERadioCapabilityMatchRequest, + UERadioCapabilityMatchResponse, + UplinkUEAssociatedLPPaTransport, + UplinkNASTransport, + UplinkNonUEAssociatedLPPaTransport, + UplinkS1cdma2000tunnelling, + WriteReplaceWarningRequest, + WriteReplaceWarningResponse, + ENBConfigurationTransfer, + MMEConfigurationTransfer, + PWSRestartIndication, + UEContextModificationIndication, + UEContextModificationConfirm, + RerouteNASRequest, + PWSFailureIndication, + UEContextSuspendRequest, + UEContextSuspendResponse, + UEContextResumeRequest, + UEContextResumeResponse, + UEContextResumeFailure, + ConnectionEstablishmentIndication, + NASDeliveryIndication, + RetrieveUEInformation, + UEInformationTransfer, + ENBCPRelocationIndication, + MMECPRelocationIndication, + SecondaryRATDataUsageReport, + UERadioCapabilityIDMappingRequest, + UERadioCapabilityIDMappingResponse, + HandoverSuccess, + ENBEarlyStatusTransfer, + MMEEarlyStatusTransfer + + +FROM S1AP-PDU-Contents + + id-CellTrafficTrace, + id-DeactivateTrace, + id-downlinkUEAssociatedLPPaTransport, + id-downlinkNASTransport, + id-downlinkNonUEAssociatedLPPaTransport, + id-DownlinkS1cdma2000tunnelling, + id-eNBStatusTransfer, + id-ErrorIndication, + id-HandoverCancel, + id-HandoverNotification, + id-HandoverPreparation, + id-HandoverResourceAllocation, + id-InitialContextSetup, + id-initialUEMessage, + id-ENBConfigurationUpdate, + id-Kill, + id-LocationReportingControl, + id-LocationReportingFailureIndication, + id-LocationReport, + id-eNBDirectInformationTransfer, + id-MMEConfigurationUpdate, + id-MMEDirectInformationTransfer, + id-MMEStatusTransfer, + id-NASNonDeliveryIndication, + id-OverloadStart, + id-OverloadStop, + id-Paging, + id-PathSwitchRequest, + id-PrivateMessage, + id-Reset, + id-S1Setup, + id-E-RABModify, + id-E-RABModificationIndication, + id-E-RABRelease, + id-E-RABReleaseIndication, + id-E-RABSetup, + id-TraceFailureIndication, + id-TraceStart, + id-UECapabilityInfoIndication, + id-UEContextModification, + id-UEContextRelease, + id-UEContextReleaseRequest, + id-UERadioCapabilityMatch, + id-uplinkUEAssociatedLPPaTransport, + id-uplinkNASTransport, + id-uplinkNonUEAssociatedLPPaTransport, + id-UplinkS1cdma2000tunnelling, + id-WriteReplaceWarning, + id-eNBConfigurationTransfer, + id-MMEConfigurationTransfer, + id-PWSRestartIndication, + id-UEContextModificationIndication, + id-RerouteNASRequest, + id-PWSFailureIndication, + id-UEContextSuspend, + id-UEContextResume, + id-ConnectionEstablishmentIndication, + id-NASDeliveryIndication, + id-RetrieveUEInformation, + id-UEInformationTransfer, + id-eNBCPRelocationIndication, + id-MMECPRelocationIndication, + id-SecondaryRATDataUsageReport, + id-UERadioCapabilityIDMapping, + id-HandoverSuccess, + id-eNBEarlyStatusTransfer, + id-MMEEarlyStatusTransfer + + +FROM S1AP-Constants; + + +-- ************************************************************** +-- +-- Interface Elementary Procedure Class +-- +-- ************************************************************** + +S1AP-ELEMENTARY-PROCEDURE ::= CLASS { + &InitiatingMessage , + &SuccessfulOutcome OPTIONAL, + &UnsuccessfulOutcome OPTIONAL, + &procedureCode ProcedureCode UNIQUE, + &criticality Criticality DEFAULT ignore +} +WITH SYNTAX { + INITIATING MESSAGE &InitiatingMessage + [SUCCESSFUL OUTCOME &SuccessfulOutcome] + [UNSUCCESSFUL OUTCOME &UnsuccessfulOutcome] + PROCEDURE CODE &procedureCode + [CRITICALITY &criticality] +} + +-- ************************************************************** +-- +-- Interface PDU Definition +-- +-- ************************************************************** + +S1AP-PDU ::= CHOICE { + initiatingMessage InitiatingMessage, + successfulOutcome SuccessfulOutcome, + unsuccessfulOutcome UnsuccessfulOutcome, + ... +} + +InitiatingMessage ::= SEQUENCE { + procedureCode S1AP-ELEMENTARY-PROCEDURE.&procedureCode ({S1AP-ELEMENTARY-PROCEDURES}), + criticality S1AP-ELEMENTARY-PROCEDURE.&criticality ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value S1AP-ELEMENTARY-PROCEDURE.&InitiatingMessage ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +SuccessfulOutcome ::= SEQUENCE { + procedureCode S1AP-ELEMENTARY-PROCEDURE.&procedureCode ({S1AP-ELEMENTARY-PROCEDURES}), + criticality S1AP-ELEMENTARY-PROCEDURE.&criticality ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value S1AP-ELEMENTARY-PROCEDURE.&SuccessfulOutcome ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +UnsuccessfulOutcome ::= SEQUENCE { + procedureCode S1AP-ELEMENTARY-PROCEDURE.&procedureCode ({S1AP-ELEMENTARY-PROCEDURES}), + criticality S1AP-ELEMENTARY-PROCEDURE.&criticality ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}), + value S1AP-ELEMENTARY-PROCEDURE.&UnsuccessfulOutcome ({S1AP-ELEMENTARY-PROCEDURES}{@procedureCode}) +} + +-- ************************************************************** +-- +-- Interface Elementary Procedure List +-- +-- ************************************************************** + +S1AP-ELEMENTARY-PROCEDURES S1AP-ELEMENTARY-PROCEDURE ::= { + S1AP-ELEMENTARY-PROCEDURES-CLASS-1 | + S1AP-ELEMENTARY-PROCEDURES-CLASS-2, + ... +} + + +S1AP-ELEMENTARY-PROCEDURES-CLASS-1 S1AP-ELEMENTARY-PROCEDURE ::= { + handoverPreparation | + handoverResourceAllocation | + pathSwitchRequest | + e-RABSetup | + e-RABModify | + e-RABRelease | + initialContextSetup | + handoverCancel | + kill | + reset | + s1Setup | + uEContextModification | + uEContextRelease | + eNBConfigurationUpdate | + mMEConfigurationUpdate | + writeReplaceWarning , + ..., + uERadioCapabilityMatch | + e-RABModificationIndication | + uEContextModificationIndication | + uEContextSuspend | + uEContextResume | + uERadioCapabilityIDMapping +} + +S1AP-ELEMENTARY-PROCEDURES-CLASS-2 S1AP-ELEMENTARY-PROCEDURE ::= { + handoverNotification | + e-RABReleaseIndication | + paging | + downlinkNASTransport | + initialUEMessage | + uplinkNASTransport | + errorIndication | + nASNonDeliveryIndication | + uEContextReleaseRequest | + downlinkS1cdma2000tunnelling | + uplinkS1cdma2000tunnelling | + uECapabilityInfoIndication | + eNBStatusTransfer | + mMEStatusTransfer | + deactivateTrace | + traceStart | + traceFailureIndication | + cellTrafficTrace | + locationReportingControl | + locationReportingFailureIndication | + locationReport | + overloadStart | + overloadStop | + eNBDirectInformationTransfer | + mMEDirectInformationTransfer | + eNBConfigurationTransfer | + mMEConfigurationTransfer | + privateMessage , + ..., + downlinkUEAssociatedLPPaTransport | + uplinkUEAssociatedLPPaTransport | + downlinkNonUEAssociatedLPPaTransport | + uplinkNonUEAssociatedLPPaTransport | + pWSRestartIndication | + rerouteNASRequest | + pWSFailureIndication | + connectionEstablishmentIndication | + nASDeliveryIndication | + retrieveUEInformation | + uEInformationTransfer | + eNBCPRelocationIndication | + mMECPRelocationIndication | + secondaryRATDataUsageReport | + handoverSuccess | + eNBEarlyStatusTransfer | + mMEEarlyStatusTransfer +} + +-- ************************************************************** +-- +-- Interface Elementary Procedures +-- +-- ************************************************************** + +handoverPreparation S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverRequired + SUCCESSFUL OUTCOME HandoverCommand + UNSUCCESSFUL OUTCOME HandoverPreparationFailure + PROCEDURE CODE id-HandoverPreparation + CRITICALITY reject +} + +handoverResourceAllocation S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverRequest + SUCCESSFUL OUTCOME HandoverRequestAcknowledge + UNSUCCESSFUL OUTCOME HandoverFailure + PROCEDURE CODE id-HandoverResourceAllocation + CRITICALITY reject +} + +handoverNotification S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverNotify + PROCEDURE CODE id-HandoverNotification + CRITICALITY ignore +} + +pathSwitchRequest S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PathSwitchRequest + SUCCESSFUL OUTCOME PathSwitchRequestAcknowledge + UNSUCCESSFUL OUTCOME PathSwitchRequestFailure + PROCEDURE CODE id-PathSwitchRequest + CRITICALITY reject +} + +e-RABSetup S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABSetupRequest + SUCCESSFUL OUTCOME E-RABSetupResponse + PROCEDURE CODE id-E-RABSetup + CRITICALITY reject +} + +e-RABModify S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABModifyRequest + SUCCESSFUL OUTCOME E-RABModifyResponse + PROCEDURE CODE id-E-RABModify + CRITICALITY reject +} + +e-RABRelease S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABReleaseCommand + SUCCESSFUL OUTCOME E-RABReleaseResponse + PROCEDURE CODE id-E-RABRelease + CRITICALITY reject +} + +e-RABReleaseIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABReleaseIndication + PROCEDURE CODE id-E-RABReleaseIndication + CRITICALITY ignore +} + +initialContextSetup S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE InitialContextSetupRequest + SUCCESSFUL OUTCOME InitialContextSetupResponse + UNSUCCESSFUL OUTCOME InitialContextSetupFailure + PROCEDURE CODE id-InitialContextSetup + CRITICALITY reject +} + +uEContextReleaseRequest S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextReleaseRequest + PROCEDURE CODE id-UEContextReleaseRequest + CRITICALITY ignore +} + +paging S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE Paging + PROCEDURE CODE id-Paging + CRITICALITY ignore +} + +downlinkNASTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkNASTransport + PROCEDURE CODE id-downlinkNASTransport + CRITICALITY ignore +} + +initialUEMessage S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE InitialUEMessage + PROCEDURE CODE id-initialUEMessage + CRITICALITY ignore +} + +uplinkNASTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkNASTransport + PROCEDURE CODE id-uplinkNASTransport + CRITICALITY ignore +} +nASNonDeliveryIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NASNonDeliveryIndication + PROCEDURE CODE id-NASNonDeliveryIndication + CRITICALITY ignore +} + +handoverCancel S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverCancel + SUCCESSFUL OUTCOME HandoverCancelAcknowledge + PROCEDURE CODE id-HandoverCancel + CRITICALITY reject +} + +reset S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE Reset + SUCCESSFUL OUTCOME ResetAcknowledge + PROCEDURE CODE id-Reset + CRITICALITY reject +} + +errorIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ErrorIndication + PROCEDURE CODE id-ErrorIndication + CRITICALITY ignore +} + +s1Setup S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE S1SetupRequest + SUCCESSFUL OUTCOME S1SetupResponse + UNSUCCESSFUL OUTCOME S1SetupFailure + PROCEDURE CODE id-S1Setup + CRITICALITY reject +} + +eNBConfigurationUpdate S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBConfigurationUpdate + SUCCESSFUL OUTCOME ENBConfigurationUpdateAcknowledge + UNSUCCESSFUL OUTCOME ENBConfigurationUpdateFailure + PROCEDURE CODE id-ENBConfigurationUpdate + CRITICALITY reject +} + +mMEConfigurationUpdate S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEConfigurationUpdate + SUCCESSFUL OUTCOME MMEConfigurationUpdateAcknowledge + UNSUCCESSFUL OUTCOME MMEConfigurationUpdateFailure + PROCEDURE CODE id-MMEConfigurationUpdate + CRITICALITY reject +} + +downlinkS1cdma2000tunnelling S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkS1cdma2000tunnelling + PROCEDURE CODE id-DownlinkS1cdma2000tunnelling + CRITICALITY ignore +} + +uplinkS1cdma2000tunnelling S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkS1cdma2000tunnelling + PROCEDURE CODE id-UplinkS1cdma2000tunnelling + CRITICALITY ignore +} + +uEContextModification S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextModificationRequest + SUCCESSFUL OUTCOME UEContextModificationResponse + UNSUCCESSFUL OUTCOME UEContextModificationFailure + PROCEDURE CODE id-UEContextModification + CRITICALITY reject +} + +uECapabilityInfoIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UECapabilityInfoIndication + PROCEDURE CODE id-UECapabilityInfoIndication + CRITICALITY ignore +} + +uEContextRelease S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextReleaseCommand + SUCCESSFUL OUTCOME UEContextReleaseComplete + PROCEDURE CODE id-UEContextRelease + CRITICALITY reject +} + +eNBStatusTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBStatusTransfer + PROCEDURE CODE id-eNBStatusTransfer + CRITICALITY ignore +} + +mMEStatusTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEStatusTransfer + PROCEDURE CODE id-MMEStatusTransfer + CRITICALITY ignore +} + +deactivateTrace S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DeactivateTrace + PROCEDURE CODE id-DeactivateTrace + CRITICALITY ignore +} + +traceStart S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE TraceStart + PROCEDURE CODE id-TraceStart + CRITICALITY ignore +} + +traceFailureIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE TraceFailureIndication + PROCEDURE CODE id-TraceFailureIndication + CRITICALITY ignore +} +cellTrafficTrace S1AP-ELEMENTARY-PROCEDURE ::={ +INITIATING MESSAGE CellTrafficTrace +PROCEDURE CODE id-CellTrafficTrace +CRITICALITY ignore +} + +locationReportingControl S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReportingControl + PROCEDURE CODE id-LocationReportingControl + CRITICALITY ignore +} + +locationReportingFailureIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReportingFailureIndication + PROCEDURE CODE id-LocationReportingFailureIndication + CRITICALITY ignore +} + +locationReport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE LocationReport + PROCEDURE CODE id-LocationReport + CRITICALITY ignore +} + +overloadStart S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE OverloadStart + PROCEDURE CODE id-OverloadStart + CRITICALITY ignore +} + +overloadStop S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE OverloadStop + PROCEDURE CODE id-OverloadStop + CRITICALITY reject +} + +writeReplaceWarning S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE WriteReplaceWarningRequest + SUCCESSFUL OUTCOME WriteReplaceWarningResponse + PROCEDURE CODE id-WriteReplaceWarning + CRITICALITY reject +} + +eNBDirectInformationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBDirectInformationTransfer + PROCEDURE CODE id-eNBDirectInformationTransfer + CRITICALITY ignore +} + +mMEDirectInformationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEDirectInformationTransfer + PROCEDURE CODE id-MMEDirectInformationTransfer + CRITICALITY ignore +} + +eNBConfigurationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBConfigurationTransfer + PROCEDURE CODE id-eNBConfigurationTransfer + CRITICALITY ignore +} + +mMEConfigurationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEConfigurationTransfer + PROCEDURE CODE id-MMEConfigurationTransfer + CRITICALITY ignore +} + + +privateMessage S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PrivateMessage + PROCEDURE CODE id-PrivateMessage + CRITICALITY ignore +} + +pWSRestartIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSRestartIndication + PROCEDURE CODE id-PWSRestartIndication + CRITICALITY ignore +} + +kill S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE KillRequest + SUCCESSFUL OUTCOME KillResponse + PROCEDURE CODE id-Kill + CRITICALITY reject +} + +downlinkUEAssociatedLPPaTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkUEAssociatedLPPaTransport + PROCEDURE CODE id-downlinkUEAssociatedLPPaTransport + CRITICALITY ignore +} + +uplinkUEAssociatedLPPaTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkUEAssociatedLPPaTransport + PROCEDURE CODE id-uplinkUEAssociatedLPPaTransport + CRITICALITY ignore +} +downlinkNonUEAssociatedLPPaTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE DownlinkNonUEAssociatedLPPaTransport + PROCEDURE CODE id-downlinkNonUEAssociatedLPPaTransport + CRITICALITY ignore +} + +uplinkNonUEAssociatedLPPaTransport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UplinkNonUEAssociatedLPPaTransport + PROCEDURE CODE id-uplinkNonUEAssociatedLPPaTransport + CRITICALITY ignore +} + +uERadioCapabilityMatch S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityMatchRequest + SUCCESSFUL OUTCOME UERadioCapabilityMatchResponse + PROCEDURE CODE id-UERadioCapabilityMatch + CRITICALITY reject +} + +e-RABModificationIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE E-RABModificationIndication + SUCCESSFUL OUTCOME E-RABModificationConfirm + PROCEDURE CODE id-E-RABModificationIndication + CRITICALITY reject +} + +uEContextModificationIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextModificationIndication + SUCCESSFUL OUTCOME UEContextModificationConfirm + PROCEDURE CODE id-UEContextModificationIndication + CRITICALITY reject +} + +rerouteNASRequest S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RerouteNASRequest + PROCEDURE CODE id-RerouteNASRequest + CRITICALITY reject +} + +pWSFailureIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE PWSFailureIndication + PROCEDURE CODE id-PWSFailureIndication + CRITICALITY ignore +} + +uEContextSuspend S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextSuspendRequest + SUCCESSFUL OUTCOME UEContextSuspendResponse + PROCEDURE CODE id-UEContextSuspend + CRITICALITY reject +} + +uEContextResume S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEContextResumeRequest + SUCCESSFUL OUTCOME UEContextResumeResponse + UNSUCCESSFUL OUTCOME UEContextResumeFailure + PROCEDURE CODE id-UEContextResume + CRITICALITY reject +} + +connectionEstablishmentIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ConnectionEstablishmentIndication + PROCEDURE CODE id-ConnectionEstablishmentIndication + CRITICALITY reject +} + +nASDeliveryIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE NASDeliveryIndication + PROCEDURE CODE id-NASDeliveryIndication + CRITICALITY ignore +} + +retrieveUEInformation S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE RetrieveUEInformation + PROCEDURE CODE id-RetrieveUEInformation + CRITICALITY reject +} + +uEInformationTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UEInformationTransfer + PROCEDURE CODE id-UEInformationTransfer + CRITICALITY reject +} + +eNBCPRelocationIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBCPRelocationIndication + PROCEDURE CODE id-eNBCPRelocationIndication + CRITICALITY reject +} + +mMECPRelocationIndication S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMECPRelocationIndication + PROCEDURE CODE id-MMECPRelocationIndication + CRITICALITY reject +} + +secondaryRATDataUsageReport S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE SecondaryRATDataUsageReport + PROCEDURE CODE id-SecondaryRATDataUsageReport + CRITICALITY ignore +} + +uERadioCapabilityIDMapping S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE UERadioCapabilityIDMappingRequest + SUCCESSFUL OUTCOME UERadioCapabilityIDMappingResponse + PROCEDURE CODE id-UERadioCapabilityIDMapping + CRITICALITY reject +} + +handoverSuccess S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE HandoverSuccess + PROCEDURE CODE id-HandoverSuccess + CRITICALITY ignore +} + +eNBEarlyStatusTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE ENBEarlyStatusTransfer + PROCEDURE CODE id-eNBEarlyStatusTransfer + CRITICALITY reject +} + +mMEEarlyStatusTransfer S1AP-ELEMENTARY-PROCEDURE ::= { + INITIATING MESSAGE MMEEarlyStatusTransfer + PROCEDURE CODE id-MMEEarlyStatusTransfer + CRITICALITY ignore +} + +END + +9.3.3 PDU Definitions +-- ************************************************************** +-- +-- PDU definitions for S1AP. +-- +-- ************************************************************** + +S1AP-PDU-Contents { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-PDU-Contents (1) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + + UEAggregateMaximumBitrate, + BearerType, + Cause, + CellAccessMode, + Cdma2000HORequiredIndication, + Cdma2000HOStatus, + Cdma2000OneXSRVCCInfo, + Cdma2000OneXRAND, + Cdma2000PDU, + Cdma2000RATType, + Cdma2000SectorID, + EUTRANRoundTripDelayEstimationInfo, + CNDomain, + ConcurrentWarningMessageIndicator, + CriticalityDiagnostics, + CSFallbackIndicator, + CSG-Id, + CSG-IdList, + CSGMembershipStatus, + Data-Forwarding-Not-Possible, + Direct-Forwarding-Path-Availability, + Global-ENB-ID, + EUTRAN-CGI, + ENBname, + ENB-StatusTransfer-TransparentContainer, + ENB-UE-S1AP-ID, + ExtendedRepetitionPeriod, + GTP-TEID, + GUMMEI, + GUMMEIType, + HandoverRestrictionList, + HandoverType, + Masked-IMEISV, + LAI, + LPPa-PDU, + ManagementBasedMDTAllowed, + MDTPLMNList, + MMEname, + MMERelaySupportIndicator, + MME-UE-S1AP-ID, + MSClassmark2, + MSClassmark3, + NAS-PDU, + NASSecurityParametersfromE-UTRAN, + NASSecurityParameterstoE-UTRAN, + OverloadResponse, + PagingDRX, + PagingPriority, + PLMNidentity, + ProSeAuthorized, + RIMTransfer, + RelativeMMECapacity, + RequestType, + E-RAB-ID, + E-RABLevelQoSParameters, + E-RABList, + RelayNode-Indicator, + Routing-ID, + SecurityKey, + SecurityContext, + ServedGUMMEIs, + SONConfigurationTransfer, + Source-ToTarget-TransparentContainer, + SourceBSS-ToTargetBSS-TransparentContainer, + SourceeNB-ToTargeteNB-TransparentContainer, + SourceRNC-ToTargetRNC-TransparentContainer, + SubscriberProfileIDforRFP, + SRVCCOperationNotPossible, + SRVCCOperationPossible, + SRVCCHOIndication, + SupportedTAs, + TAI, + Target-ToSource-TransparentContainer, + TargetBSS-ToSourceBSS-TransparentContainer, + TargeteNB-ToSourceeNB-TransparentContainer, + TargetID, + TargetRNC-ToSourceRNC-TransparentContainer, + TimeToWait, + TraceActivation, + TrafficLoadReductionIndication, + E-UTRAN-Trace-ID, + TransportLayerAddress, + UEIdentityIndexValue, + UEPagingID, + UERadioCapability, + UERadioCapabilityForPaging, + UE-RetentionInformation, + UE-S1AP-IDs, + UE-associatedLogicalS1-ConnectionItem, + UESecurityCapabilities, + S-TMSI, + MessageIdentifier, + SerialNumber, + WarningAreaList, + RepetitionPeriod, + NumberofBroadcastRequest, + WarningType, + WarningSecurityInfo, + DataCodingScheme, + WarningMessageContents, + BroadcastCompletedAreaList, + RRC-Establishment-Cause, + BroadcastCancelledAreaList, + PS-ServiceNotAvailable, + GUMMEIList, + Correlation-ID, + GWContextReleaseIndication, + PrivacyIndicator, + VoiceSupportMatchIndicator, + TunnelInformation, + KillAllWarningMessages, + TransportInformation, + LHN-ID, + UserLocationInformation, + AdditionalCSFallbackIndicator, + ECGIListForRestart, + TAIListForRestart, + EmergencyAreaIDListForRestart, + ExpectedUEBehaviour, + Paging-eDRXInformation, + Extended-UEIdentityIndexValue, + MME-Group-ID, + Additional-GUTI, + PWSfailedECGIList, + CellIdentifierAndCELevelForCECapableUEs, + AssistanceDataForPaging, + InformationOnRecommendedCellsAndENBsForPaging, + UE-Usage-Type, + UEUserPlaneCIoTSupportIndicator, + NB-IoT-DefaultPagingDRX, + NB-IoT-Paging-eDRXInformation, + CE-mode-B-SupportIndicator, + NB-IoT-UEIdentityIndexValue, + V2XServicesAuthorized, + DCN-ID, + ServedDCNs, + UESidelinkAggregateMaximumBitrate, + DLNASPDUDeliveryAckRequest, + Coverage-Level, + EnhancedCoverageRestricted, + DL-CP-SecurityInformation, + UL-CP-SecurityInformation, + SecondaryRATDataUsageRequest, + SecondaryRATDataUsageReportList, + HandoverFlag, + NRUESecurityCapabilities, + UE-Application-Layer-Measurement-Capability, + CE-ModeBRestricted, + Packet-LossRate, + UECapabilityInfoRequest, + SourceNgRanNode-ToTargetNgRanNode-TransparentContainer, + TargetNgRanNode-ToSourceNgRanNode-TransparentContainer, + EndIndication, + EDT-Session, + LTE-M-Indication, + AerialUEsubscriptionInformation, + PendingDataIndication, + WarningAreaCoordinates, + Subscription-Based-UE-DifferentiationInfo, + PSCellInformation, + NR-CGI, + ConnectedengNBList, + EN-DCSONConfigurationTransfer, + TimeSinceSecondaryNodeRelease, + AdditionalRRMPriorityIndex, + IAB-Authorized, + IAB-Node-Indication, + IAB-Supported, + DataSize, + Ethernet-Type, + NRV2XServicesAuthorized, + NRUESidelinkAggregateMaximumBitrate, + PC5QoSParameters, + IntersystemSONConfigurationTransfer, + UERadioCapabilityID, + NotifySourceeNB, + ENB-EarlyStatusTransfer-TransparentContainer, + WUS-Assistance-Information, + NB-IoT-PagingDRX + + + + +FROM S1AP-IEs + + PrivateIE-Container{}, + ProtocolExtensionContainer{}, + ProtocolIE-Container{}, + ProtocolIE-ContainerList{}, + ProtocolIE-ContainerPair{}, + ProtocolIE-ContainerPairList{}, + ProtocolIE-SingleContainer{}, + S1AP-PRIVATE-IES, + S1AP-PROTOCOL-EXTENSION, + S1AP-PROTOCOL-IES, + S1AP-PROTOCOL-IES-PAIR +FROM S1AP-Containers + + + id-AssistanceDataForPaging, + id-AerialUEsubscriptionInformation, + id-uEaggregateMaximumBitrate, + id-BearerType, + id-Cause, + id-CellAccessMode, + id-CellIdentifierAndCELevelForCECapableUEs, + id-cdma2000HORequiredIndication, + id-cdma2000HOStatus, + id-cdma2000OneXSRVCCInfo, + id-cdma2000OneXRAND, + id-cdma2000PDU, + id-cdma2000RATType, + id-cdma2000SectorID, + id-EUTRANRoundTripDelayEstimationInfo, + id-CNDomain, + id-ConcurrentWarningMessageIndicator, + id-CriticalityDiagnostics, + id-CSFallbackIndicator, + id-CSG-Id, + id-CSG-IdList, + id-CSGMembershipStatus, + id-Data-Forwarding-Not-Possible, + id-DefaultPagingDRX, + id-Direct-Forwarding-Path-Availability, + id-Global-ENB-ID, + id-EUTRAN-CGI, + id-eNBname, + id-eNB-StatusTransfer-TransparentContainer, + id-eNB-UE-S1AP-ID, + id-GERANtoLTEHOInformationRes, + id-GUMMEI-ID, + id-GUMMEIType, + id-HandoverRestrictionList, + id-HandoverType, + id-Masked-IMEISV, + id-InformationOnRecommendedCellsAndENBsForPaging, + id-InitialContextSetup, + id-Inter-SystemInformationTransferTypeEDT, + id-Inter-SystemInformationTransferTypeMDT, + id-LPPa-PDU, + id-NAS-DownlinkCount, + id-ManagementBasedMDTAllowed, + id-ManagementBasedMDTPLMNList, + id-MMEname, + id-MME-UE-S1AP-ID, + id-MSClassmark2, + id-MSClassmark3, + id-NAS-PDU, + id-NASSecurityParametersfromE-UTRAN, + id-NASSecurityParameterstoE-UTRAN, + id-OverloadResponse, + id-pagingDRX, + id-PagingPriority, + id-RelativeMMECapacity, + id-RequestType, + id-Routing-ID, + id-E-RABAdmittedItem, + id-E-RABAdmittedList, + id-E-RABDataForwardingItem, + id-E-RABFailedToModifyList, + id-E-RABFailedToReleaseList, + id-E-RABFailedtoSetupItemHOReqAck, + id-E-RABFailedToSetupListBearerSURes, + id-E-RABFailedToSetupListCtxtSURes, + id-E-RABFailedToSetupListHOReqAck, + id-E-RABFailedToBeReleasedList, + id-E-RABFailedToResumeListResumeReq, + id-E-RABFailedToResumeItemResumeReq, + id-E-RABFailedToResumeListResumeRes, + id-E-RABFailedToResumeItemResumeRes, + id-E-RABModify, + id-E-RABModifyItemBearerModRes, + id-E-RABModifyListBearerModRes, + id-E-RABRelease, + id-E-RABReleaseItemBearerRelComp, + id-E-RABReleaseItemHOCmd, + id-E-RABReleaseListBearerRelComp, + id-E-RABReleaseIndication, + id-E-RABSetup, + id-E-RABSetupItemBearerSURes, + id-E-RABSetupItemCtxtSURes, + id-E-RABSetupListBearerSURes, + id-E-RABSetupListCtxtSURes, + id-E-RABSubjecttoDataForwardingList, + id-E-RABToBeModifiedItemBearerModReq, + id-E-RABToBeModifiedListBearerModReq, + id-E-RABToBeModifiedListBearerModInd, + id-E-RABToBeModifiedItemBearerModInd, + id-E-RABNotToBeModifiedListBearerModInd, + id-E-RABNotToBeModifiedItemBearerModInd, + id-E-RABModifyListBearerModConf, + id-E-RABModifyItemBearerModConf, + id-E-RABFailedToModifyListBearerModConf, + id-E-RABToBeReleasedListBearerModConf, + id-E-RABToBeReleasedList, + id-E-RABReleasedList, + id-E-RABToBeSetupItemBearerSUReq, + id-E-RABToBeSetupItemCtxtSUReq, + id-E-RABToBeSetupItemHOReq, + id-E-RABToBeSetupListBearerSUReq, + id-E-RABToBeSetupListCtxtSUReq, + id-E-RABToBeSetupListHOReq, + id-E-RABToBeSwitchedDLItem, + id-E-RABToBeSwitchedDLList, + id-E-RABToBeSwitchedULList, + id-E-RABToBeSwitchedULItem, + id-E-RABtoReleaseListHOCmd, + id-ProSeAuthorized, + id-SecurityKey, + id-SecurityContext, + id-ServedGUMMEIs, + id-SONConfigurationTransferECT, + id-SONConfigurationTransferMCT, + id-Source-ToTarget-TransparentContainer, + id-Source-ToTarget-TransparentContainer-Secondary, + id-SourceMME-UE-S1AP-ID, + id-SRVCCOperationNotPossible, + id-SRVCCOperationPossible, + id-SRVCCHOIndication, + id-SubscriberProfileIDforRFP, + id-SupportedTAs, + id-S-TMSI, + id-TAI, + id-TAIItem, + id-TAIList, + id-Target-ToSource-TransparentContainer, + id-Target-ToSource-TransparentContainer-Secondary, + id-TargetID, + id-TimeToWait, + id-TraceActivation, + id-TrafficLoadReductionIndication, + id-E-UTRAN-Trace-ID, + id-UEIdentityIndexValue, + id-UEPagingID, + id-UERadioCapability, + id-UERadioCapabilityForPaging, + id-UTRANtoLTEHOInformationRes, + id-UE-associatedLogicalS1-ConnectionListResAck, + id-UE-associatedLogicalS1-ConnectionItem, + id-UE-RetentionInformation, + id-UESecurityCapabilities, + id-UE-S1AP-IDs, + id-V2XServicesAuthorized, + id-ResetType, + id-MessageIdentifier, + id-SerialNumber, + id-WarningAreaList, + id-RepetitionPeriod, + id-NumberofBroadcastRequest, + id-WarningType, + id-WarningSecurityInfo, + id-DataCodingScheme, + id-WarningMessageContents, + id-BroadcastCompletedAreaList, + id-BroadcastCancelledAreaList, + id-RRC-Establishment-Cause, + id-TraceCollectionEntityIPAddress, + id-AdditionalRRMPriorityIndex, + id-MDTConfigurationNR, + maxnoofTAIs, + maxnoofErrors, + maxnoofE-RABs, + maxnoofIndividualS1ConnectionsToReset, + maxnoofEmergencyAreaID, + maxnoofCellID, + maxnoofTAIforWarning, + maxnoofCellinTAI, + maxnoofCellinEAI, + id-ExtendedRepetitionPeriod, + id-PS-ServiceNotAvailable, + id-RegisteredLAI, + id-GUMMEIList, + id-SourceMME-GUMMEI, + id-MME-UE-S1AP-ID-2, + id-GW-TransportLayerAddress, + id-RelayNode-Indicator, + id-Correlation-ID, + id-MMERelaySupportIndicator, + id-GWContextReleaseIndication, + id-PrivacyIndicator, + id-VoiceSupportMatchIndicator, + id-Tunnel-Information-for-BBF, + id-SIPTO-Correlation-ID, + id-SIPTO-L-GW-TransportLayerAddress, + id-KillAllWarningMessages, + id-TransportInformation, + id-LHN-ID, + id-UserLocationInformation, + id-AdditionalCSFallbackIndicator, + id-ECGIListForRestart, + id-TAIListForRestart, + id-EmergencyAreaIDListForRestart, + id-ExpectedUEBehaviour, + id-Paging-eDRXInformation, + id-extended-UEIdentityIndexValue, + id-CSGMembershipInfo, + id-MME-Group-ID, + id-Additional-GUTI, + id-S1-Message, + id-PWSfailedECGIList, + id-PWSFailureIndication, + id-UE-Usage-Type, + id-UEUserPlaneCIoTSupportIndicator, + id-NB-IoT-DefaultPagingDRX, + id-NB-IoT-Paging-eDRXInformation, + id-CE-mode-B-SupportIndicator, + id-NB-IoT-UEIdentityIndexValue, + id-RRC-Resume-Cause, + id-DCN-ID, + id-ServedDCNs, + id-UESidelinkAggregateMaximumBitrate, + id-DLNASPDUDeliveryAckRequest, + id-Coverage-Level, + id-EnhancedCoverageRestricted, + id-UE-Level-QoS-Parameters, + id-DL-CP-SecurityInformation, + id-UL-CP-SecurityInformation, + id-SecondaryRATDataUsageRequest, + id-SecondaryRATDataUsageReportList, + id-HandoverFlag, + id-NRUESecurityCapabilities, + id-UE-Application-Layer-Measurement-Capability, + id-CE-ModeBRestricted, + id-DownlinkPacketLossRate, + id-UplinkPacketLossRate, + id-UECapabilityInfoRequest, + id-EndIndication, + id-EDT-Session, + id-LTE-M-Indication, + id-PendingDataIndication, + id-WarningAreaCoordinates, + id-Subscription-Based-UE-DifferentiationInfo, + id-PSCellInformation, + id-ConnectedengNBList, + id-ConnectedengNBToAddList, + id-ConnectedengNBToRemoveList, + id-EN-DCSONConfigurationTransfer-ECT, + id-EN-DCSONConfigurationTransfer-MCT, + id-TimeSinceSecondaryNodeRelease, + id-IAB-Authorized, + id-IAB-Node-Indication, + id-IAB-Supported, + id-DataSize, + id-Ethernet-Type, + id-NRV2XServicesAuthorized, + id-NRUESidelinkAggregateMaximumBitrate, + id-PC5QoSParameters, + id-IntersystemSONConfigurationTransferMCT, + id-IntersystemSONConfigurationTransferECT, + id-UERadioCapabilityID, + id-UERadioCapability-NR-Format, + id-NotifySourceeNB, + id-eNB-EarlyStatusTransfer-TransparentContainer, + id-WUS-Assistance-Information, + id-NB-IoT-PagingDRX + + + +FROM S1AP-Constants; + +-- ************************************************************** +-- +-- Common Container Lists +-- +-- ************************************************************** + +E-RAB-IE-ContainerList { S1AP-PROTOCOL-IES : IEsSetParam } ::= ProtocolIE-ContainerList { 1, maxnoofE-RABs, {IEsSetParam} } +E-RAB-IE-ContainerPairList { S1AP-PROTOCOL-IES-PAIR : IEsSetParam } ::= ProtocolIE-ContainerPairList { 1, maxnoofE-RABs, {IEsSetParam} } +ProtocolError-IE-ContainerList { S1AP-PROTOCOL-IES : IEsSetParam } ::= ProtocolIE-ContainerList { 1, maxnoofE-RABs, {IEsSetParam} } + +-- ************************************************************** +-- +-- HANDOVER PREPARATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Required +-- +-- ************************************************************** + +HandoverRequired ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverRequiredIEs} }, + ... +} + +HandoverRequiredIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory}| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory}| + { ID id-TargetID CRITICALITY reject TYPE TargetID PRESENCE mandatory}| + { ID id-Direct-Forwarding-Path-Availability CRITICALITY ignore TYPE Direct-Forwarding-Path-Availability PRESENCE optional}| + { ID id-SRVCCHOIndication CRITICALITY reject TYPE SRVCCHOIndication PRESENCE optional}| + { ID id-Source-ToTarget-TransparentContainer CRITICALITY reject TYPE Source-ToTarget-TransparentContainer PRESENCE mandatory}| + { ID id-Source-ToTarget-TransparentContainer-Secondary CRITICALITY reject TYPE Source-ToTarget-TransparentContainer PRESENCE optional}| + { ID id-MSClassmark2 CRITICALITY reject TYPE MSClassmark2 PRESENCE conditional}| + { ID id-MSClassmark3 CRITICALITY ignore TYPE MSClassmark3 PRESENCE conditional}| + { ID id-CSG-Id CRITICALITY reject TYPE CSG-Id PRESENCE optional}| + { ID id-CellAccessMode CRITICALITY reject TYPE CellAccessMode PRESENCE optional}| + { ID id-PS-ServiceNotAvailable CRITICALITY ignore TYPE PS-ServiceNotAvailable PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- Handover Command +-- +-- ************************************************************** + +HandoverCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCommandIEs} }, + ... +} + +HandoverCommandIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory}| + { ID id-NASSecurityParametersfromE-UTRAN CRITICALITY reject TYPE NASSecurityParametersfromE-UTRAN PRESENCE conditional + -- This IE shall be present if HandoverType IE is set to value "LTEtoUTRAN" or "LTEtoGERAN" --}| + { ID id-E-RABSubjecttoDataForwardingList CRITICALITY ignore TYPE E-RABSubjecttoDataForwardingList PRESENCE optional}| + { ID id-E-RABtoReleaseListHOCmd CRITICALITY ignore TYPE E-RABList PRESENCE optional}| + { ID id-Target-ToSource-TransparentContainer CRITICALITY reject TYPE Target-ToSource-TransparentContainer PRESENCE mandatory}| + { ID id-Target-ToSource-TransparentContainer-Secondary CRITICALITY reject TYPE Target-ToSource-TransparentContainer PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}, + ... +} + +E-RABSubjecttoDataForwardingList ::= E-RAB-IE-ContainerList { {E-RABDataForwardingItemIEs} } + +E-RABDataForwardingItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABDataForwardingItem CRITICALITY ignore TYPE E-RABDataForwardingItem PRESENCE mandatory }, + ... +} + +E-RABDataForwardingItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dL-transportLayerAddress TransportLayerAddress OPTIONAL, + dL-gTP-TEID GTP-TEID OPTIONAL, + uL-TransportLayerAddress TransportLayerAddress OPTIONAL, + uL-GTP-TEID GTP-TEID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { E-RABDataForwardingItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABDataForwardingItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + + +-- ************************************************************** +-- +-- Handover Preparation Failure +-- +-- ************************************************************** + +HandoverPreparationFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverPreparationFailureIEs} }, + ... +} + +HandoverPreparationFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER RESOURCE ALLOCATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Request +-- +-- ************************************************************** + +HandoverRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequestIEs} }, + ... +} + +HandoverRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-HandoverType CRITICALITY reject TYPE HandoverType PRESENCE mandatory}| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory}| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE mandatory}| + { ID id-E-RABToBeSetupListHOReq CRITICALITY reject TYPE E-RABToBeSetupListHOReq PRESENCE mandatory}| + { ID id-Source-ToTarget-TransparentContainer CRITICALITY reject TYPE Source-ToTarget-TransparentContainer PRESENCE mandatory}| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE mandatory}| + { ID id-HandoverRestrictionList CRITICALITY ignore TYPE HandoverRestrictionList PRESENCE optional}| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE optional}| + { ID id-RequestType CRITICALITY ignore TYPE RequestType PRESENCE optional}| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional}| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE mandatory}| + { ID id-NASSecurityParameterstoE-UTRAN CRITICALITY reject TYPE NASSecurityParameterstoE-UTRAN PRESENCE conditional + -- This IE shall be present if the Handover Type IE is set to the value "UTRANtoLTE" or "GERANtoLTE" -- }| + { ID id-CSG-Id CRITICALITY reject TYPE CSG-Id PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-GUMMEI-ID CRITICALITY ignore TYPE GUMMEI PRESENCE optional}| + { ID id-MME-UE-S1AP-ID-2 CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional}| + { ID id-ManagementBasedMDTAllowed CRITICALITY ignore TYPE ManagementBasedMDTAllowed PRESENCE optional}| + { ID id-ManagementBasedMDTPLMNList CRITICALITY ignore TYPE MDTPLMNList PRESENCE optional}| + { ID id-Masked-IMEISV CRITICALITY ignore TYPE Masked-IMEISV PRESENCE optional}| + { ID id-ExpectedUEBehaviour CRITICALITY ignore TYPE ExpectedUEBehaviour PRESENCE optional}| + { ID id-ProSeAuthorized CRITICALITY ignore TYPE ProSeAuthorized PRESENCE optional}| + { ID id-UEUserPlaneCIoTSupportIndicator CRITICALITY ignore TYPE UEUserPlaneCIoTSupportIndicator PRESENCE optional}| + { ID id-V2XServicesAuthorized CRITICALITY ignore TYPE V2XServicesAuthorized PRESENCE optional}| + { ID id-UESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE UESidelinkAggregateMaximumBitrate PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-AerialUEsubscriptionInformation CRITICALITY ignore TYPE AerialUEsubscriptionInformation PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY reject TYPE IAB-Authorized PRESENCE optional}| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, ... +} + +E-RABToBeSetupListHOReq ::= E-RAB-IE-ContainerList { {E-RABToBeSetupItemHOReqIEs} } + +E-RABToBeSetupItemHOReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSetupItemHOReq CRITICALITY reject TYPE E-RABToBeSetupItemHOReq PRESENCE mandatory }, + ... +} + +E-RABToBeSetupItemHOReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + e-RABlevelQosParameters E-RABLevelQoSParameters, + iE-Extensions ProtocolExtensionContainer { {E-RABToBeSetupItemHOReq-ExtIEs} } OPTIONAL, + ... +} + +E-RABToBeSetupItemHOReq-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-Data-Forwarding-Not-Possible CRITICALITY ignore EXTENSION Data-Forwarding-Not-Possible PRESENCE optional}| + { ID id-BearerType CRITICALITY reject EXTENSION BearerType PRESENCE optional}| + { ID id-Ethernet-Type CRITICALITY ignore EXTENSION Ethernet-Type PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- Handover Request Acknowledge +-- +-- ************************************************************** + +HandoverRequestAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {HandoverRequestAcknowledgeIEs} }, + ... +} + +HandoverRequestAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABAdmittedList CRITICALITY ignore TYPE E-RABAdmittedList PRESENCE mandatory}| + { ID id-E-RABFailedToSetupListHOReqAck CRITICALITY ignore TYPE E-RABFailedtoSetupListHOReqAck PRESENCE optional}| + { ID id-Target-ToSource-TransparentContainer CRITICALITY reject TYPE Target-ToSource-TransparentContainer PRESENCE mandatory}| + { ID id-CSG-Id CRITICALITY ignore TYPE CSG-Id PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-CellAccessMode CRITICALITY ignore TYPE CellAccessMode PRESENCE optional}| + { ID id-CE-mode-B-SupportIndicator CRITICALITY ignore TYPE CE-mode-B-SupportIndicator PRESENCE optional}, + ... +} + +E-RABAdmittedList ::= E-RAB-IE-ContainerList { {E-RABAdmittedItemIEs} } + +E-RABAdmittedItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABAdmittedItem CRITICALITY ignore TYPE E-RABAdmittedItem PRESENCE mandatory }, + ... +} + +E-RABAdmittedItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + dL-transportLayerAddress TransportLayerAddress OPTIONAL, + dL-gTP-TEID GTP-TEID OPTIONAL, + uL-TransportLayerAddress TransportLayerAddress OPTIONAL, + uL-GTP-TEID GTP-TEID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABAdmittedItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABAdmittedItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +E-RABFailedtoSetupListHOReqAck ::= E-RAB-IE-ContainerList { {E-RABFailedtoSetupItemHOReqAckIEs} } + +E-RABFailedtoSetupItemHOReqAckIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABFailedtoSetupItemHOReqAck CRITICALITY ignore TYPE E-RABFailedToSetupItemHOReqAck PRESENCE mandatory }, + ... +} + +E-RABFailedToSetupItemHOReqAck ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { { E-RABFailedToSetupItemHOReqAckExtIEs} } OPTIONAL, + ... +} + +E-RABFailedToSetupItemHOReqAckExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- ************************************************************** +-- +-- Handover Failure +-- +-- ************************************************************** + +HandoverFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverFailureIEs} }, + ... +} + +HandoverFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER NOTIFICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Notify +-- +-- ************************************************************** + +HandoverNotify ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverNotifyIEs} }, + ... +} + +HandoverNotifyIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory}| +-- Extension for Release 11 to support BBAI -- + { ID id-Tunnel-Information-for-BBF CRITICALITY ignore TYPE TunnelInformation PRESENCE optional}| + { ID id-LHN-ID CRITICALITY ignore TYPE LHN-ID PRESENCE optional}| + { ID id-PSCellInformation CRITICALITY ignore TYPE PSCellInformation PRESENCE optional }| + { ID id-NotifySourceeNB CRITICALITY ignore TYPE NotifySourceeNB PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- PATH SWITCH REQUEST ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Path Switch Request +-- +-- ************************************************************** + +PathSwitchRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestIEs} }, + ... +} + +PathSwitchRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABToBeSwitchedDLList CRITICALITY reject TYPE E-RABToBeSwitchedDLList PRESENCE mandatory}| + { ID id-SourceMME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory}| + { ID id-UESecurityCapabilities CRITICALITY ignore TYPE UESecurityCapabilities PRESENCE mandatory}| + { ID id-CSG-Id CRITICALITY ignore TYPE CSG-Id PRESENCE optional}| + { ID id-CellAccessMode CRITICALITY ignore TYPE CellAccessMode PRESENCE optional}| + { ID id-SourceMME-GUMMEI CRITICALITY ignore TYPE GUMMEI PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| +-- Extension for Release 11 to support BBAI -- + { ID id-Tunnel-Information-for-BBF CRITICALITY ignore TYPE TunnelInformation PRESENCE optional}| + { ID id-LHN-ID CRITICALITY ignore TYPE LHN-ID PRESENCE optional}| + { ID id-RRC-Resume-Cause CRITICALITY ignore TYPE RRC-Establishment-Cause PRESENCE optional }| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-PSCellInformation CRITICALITY ignore TYPE PSCellInformation PRESENCE optional }, + ... +} + +E-RABToBeSwitchedDLList ::= E-RAB-IE-ContainerList { {E-RABToBeSwitchedDLItemIEs} } + +E-RABToBeSwitchedDLItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSwitchedDLItem CRITICALITY reject TYPE E-RABToBeSwitchedDLItem PRESENCE mandatory }, + ... +} + +E-RABToBeSwitchedDLItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { { E-RABToBeSwitchedDLItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABToBeSwitchedDLItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- Path Switch Request Acknowledge +-- +-- ************************************************************** + +PathSwitchRequestAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestAcknowledgeIEs} }, + ... +} + +PathSwitchRequestAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-uEaggregateMaximumBitrate CRITICALITY ignore TYPE UEAggregateMaximumBitrate PRESENCE optional}| + { ID id-E-RABToBeSwitchedULList CRITICALITY ignore TYPE E-RABToBeSwitchedULList PRESENCE optional}| + { ID id-E-RABToBeReleasedList CRITICALITY ignore TYPE E-RABList PRESENCE optional}| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE mandatory}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-MME-UE-S1AP-ID-2 CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-ProSeAuthorized CRITICALITY ignore TYPE ProSeAuthorized PRESENCE optional}| + { ID id-UEUserPlaneCIoTSupportIndicator CRITICALITY ignore TYPE UEUserPlaneCIoTSupportIndicator PRESENCE optional}| + { ID id-V2XServicesAuthorized CRITICALITY ignore TYPE V2XServicesAuthorized PRESENCE optional}| + { ID id-UESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE UESidelinkAggregateMaximumBitrate PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-AerialUEsubscriptionInformation CRITICALITY ignore TYPE AerialUEsubscriptionInformation PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-HandoverRestrictionList CRITICALITY ignore TYPE HandoverRestrictionList PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional }| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, + ... +} + +E-RABToBeSwitchedULList ::= E-RAB-IE-ContainerList { {E-RABToBeSwitchedULItemIEs} } + +E-RABToBeSwitchedULItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSwitchedULItem CRITICALITY ignore TYPE E-RABToBeSwitchedULItem PRESENCE mandatory }, + ... +} + +E-RABToBeSwitchedULItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { { E-RABToBeSwitchedULItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABToBeSwitchedULItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- ************************************************************** +-- +-- Path Switch Request Failure +-- +-- ************************************************************** + +PathSwitchRequestFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { PathSwitchRequestFailureIEs} }, + ... +} + +PathSwitchRequestFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER CANCEL ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Cancel +-- +-- ************************************************************** + +HandoverCancel ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCancelIEs} }, + ... +} + +HandoverCancelIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Handover Cancel Request Acknowledge +-- +-- ************************************************************** + +HandoverCancelAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverCancelAcknowledgeIEs} }, + ... +} + +HandoverCancelAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- HANDOVER SUCCESS ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Handover Success +-- +-- ************************************************************** + +HandoverSuccess ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { HandoverSuccessIEs} }, + ... +} + +HandoverSuccessIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- eNB EARLY STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Early Status Transfer +-- +-- ************************************************************** + +ENBEarlyStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBEarlyStatusTransferIEs} }, + ... +} + +ENBEarlyStatusTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-EarlyStatusTransfer-TransparentContainer CRITICALITY reject TYPE ENB-EarlyStatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- MME EARLY STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Early Status Transfer +-- +-- ************************************************************** + +MMEEarlyStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEEarlyStatusTransferIEs} }, + ... +} + +MMEEarlyStatusTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-EarlyStatusTransfer-TransparentContainer CRITICALITY reject TYPE ENB-EarlyStatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- E-RAB SETUP ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Setup Request +-- +-- ************************************************************** + +E-RABSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABSetupRequestIEs} }, + ... +} + +E-RABSetupRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE optional }| + { ID id-E-RABToBeSetupListBearerSUReq CRITICALITY reject TYPE E-RABToBeSetupListBearerSUReq PRESENCE mandatory }, + ... +} + +E-RABToBeSetupListBearerSUReq ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABToBeSetupItemBearerSUReqIEs} } + +E-RABToBeSetupItemBearerSUReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSetupItemBearerSUReq CRITICALITY reject TYPE E-RABToBeSetupItemBearerSUReq PRESENCE mandatory }, + ... +} + +E-RABToBeSetupItemBearerSUReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + e-RABlevelQoSParameters E-RABLevelQoSParameters, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + nAS-PDU NAS-PDU, + iE-Extensions ProtocolExtensionContainer { {E-RABToBeSetupItemBearerSUReqExtIEs} } OPTIONAL, + ... +} + + +E-RABToBeSetupItemBearerSUReqExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-Correlation-ID CRITICALITY ignore EXTENSION Correlation-ID PRESENCE optional}| + { ID id-SIPTO-Correlation-ID CRITICALITY ignore EXTENSION Correlation-ID PRESENCE optional}| + { ID id-BearerType CRITICALITY reject EXTENSION BearerType PRESENCE optional}| + { ID id-Ethernet-Type CRITICALITY ignore EXTENSION Ethernet-Type PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- E-RAB Setup Response +-- +-- ************************************************************** + +E-RABSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABSetupResponseIEs} }, + ... +} + +E-RABSetupResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABSetupListBearerSURes CRITICALITY ignore TYPE E-RABSetupListBearerSURes PRESENCE optional }| + { ID id-E-RABFailedToSetupListBearerSURes CRITICALITY ignore TYPE E-RABList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +E-RABSetupListBearerSURes ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABSetupItemBearerSUResIEs} } + +E-RABSetupItemBearerSUResIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABSetupItemBearerSURes CRITICALITY ignore TYPE E-RABSetupItemBearerSURes PRESENCE mandatory }, + ... +} + +E-RABSetupItemBearerSURes ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { {E-RABSetupItemBearerSUResExtIEs} } OPTIONAL, + ... +} + + +E-RABSetupItemBearerSUResExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + + +-- ************************************************************** +-- +-- E-RAB MODIFY ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Modify Request +-- +-- ************************************************************** + +E-RABModifyRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABModifyRequestIEs} }, + ... +} + +E-RABModifyRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE optional }| + { ID id-E-RABToBeModifiedListBearerModReq CRITICALITY reject TYPE E-RABToBeModifiedListBearerModReq PRESENCE mandatory }| + { ID id-SecondaryRATDataUsageRequest CRITICALITY ignore TYPE SecondaryRATDataUsageRequest PRESENCE optional }, + ... +} + +E-RABToBeModifiedListBearerModReq ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABToBeModifiedItemBearerModReqIEs} } + +E-RABToBeModifiedItemBearerModReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeModifiedItemBearerModReq CRITICALITY reject TYPE E-RABToBeModifiedItemBearerModReq PRESENCE mandatory }, + ... +} + +E-RABToBeModifiedItemBearerModReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + e-RABLevelQoSParameters E-RABLevelQoSParameters, + nAS-PDU NAS-PDU, + iE-Extensions ProtocolExtensionContainer { {E-RABToBeModifyItemBearerModReqExtIEs} } OPTIONAL, + ... +} + + +E-RABToBeModifyItemBearerModReqExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-TransportInformation CRITICALITY reject EXTENSION TransportInformation PRESENCE optional}, + ... +} + + + +-- ************************************************************** +-- +-- E-RAB Modify Response +-- +-- ************************************************************** + +E-RABModifyResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABModifyResponseIEs} }, + ... +} + +E-RABModifyResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABModifyListBearerModRes CRITICALITY ignore TYPE E-RABModifyListBearerModRes PRESENCE optional }| + { ID id-E-RABFailedToModifyList CRITICALITY ignore TYPE E-RABList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }, + ... +} + + +E-RABModifyListBearerModRes ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABModifyItemBearerModResIEs} } + +E-RABModifyItemBearerModResIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABModifyItemBearerModRes CRITICALITY ignore TYPE E-RABModifyItemBearerModRes PRESENCE mandatory}, + ... +} + +E-RABModifyItemBearerModRes ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + iE-Extensions ProtocolExtensionContainer { {E-RABModifyItemBearerModResExtIEs} } OPTIONAL, + ... +} + + +E-RABModifyItemBearerModResExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + + + +-- ************************************************************** +-- +-- E-RAB RELEASE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Release Command +-- +-- ************************************************************** + +E-RABReleaseCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABReleaseCommandIEs} }, + ... +} + +E-RABReleaseCommandIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE optional }| + { ID id-E-RABToBeReleasedList CRITICALITY ignore TYPE E-RABList PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- E-RAB Release Response +-- +-- ************************************************************** + +E-RABReleaseResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { E-RABReleaseResponseIEs } }, + ... +} + +E-RABReleaseResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABReleaseListBearerRelComp CRITICALITY ignore TYPE E-RABReleaseListBearerRelComp PRESENCE optional }| + { ID id-E-RABFailedToReleaseList CRITICALITY ignore TYPE E-RABList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| +-- Extension for Release 12 to support User Location Information -- + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }, + ... +} + + +E-RABReleaseListBearerRelComp ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABReleaseItemBearerRelCompIEs} } + +E-RABReleaseItemBearerRelCompIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABReleaseItemBearerRelComp CRITICALITY ignore TYPE E-RABReleaseItemBearerRelComp PRESENCE mandatory }, + ... +} + +E-RABReleaseItemBearerRelComp ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + iE-Extensions ProtocolExtensionContainer { {E-RABReleaseItemBearerRelCompExtIEs} } OPTIONAL, + ... +} + + +E-RABReleaseItemBearerRelCompExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + + +-- ************************************************************** +-- +-- E-RAB RELEASE INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Release Indication +-- +-- ************************************************************** + +E-RABReleaseIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABReleaseIndicationIEs} }, + ... +} + +E-RABReleaseIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABReleasedList CRITICALITY ignore TYPE E-RABList PRESENCE mandatory }| +-- Extension for Release 12 to support User Location Information -- + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- INITIAL CONTEXT SETUP ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Initial Context Setup Request +-- +-- ************************************************************** + +InitialContextSetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupRequestIEs} }, + ... +} + +InitialContextSetupRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-uEaggregateMaximumBitrate CRITICALITY reject TYPE UEAggregateMaximumBitrate PRESENCE mandatory}| + { ID id-E-RABToBeSetupListCtxtSUReq CRITICALITY reject TYPE E-RABToBeSetupListCtxtSUReq PRESENCE mandatory}| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE mandatory}| + { ID id-SecurityKey CRITICALITY reject TYPE SecurityKey PRESENCE mandatory}| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE optional}| + { ID id-HandoverRestrictionList CRITICALITY ignore TYPE HandoverRestrictionList PRESENCE optional}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional}| + { ID id-SubscriberProfileIDforRFP CRITICALITY ignore TYPE SubscriberProfileIDforRFP PRESENCE optional}| + { ID id-CSFallbackIndicator CRITICALITY reject TYPE CSFallbackIndicator PRESENCE optional}| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-RegisteredLAI CRITICALITY ignore TYPE LAI PRESENCE optional}| + { ID id-GUMMEI-ID CRITICALITY ignore TYPE GUMMEI PRESENCE optional}| + { ID id-MME-UE-S1AP-ID-2 CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional}| + { ID id-ManagementBasedMDTAllowed CRITICALITY ignore TYPE ManagementBasedMDTAllowed PRESENCE optional}| + { ID id-ManagementBasedMDTPLMNList CRITICALITY ignore TYPE MDTPLMNList PRESENCE optional}| + { ID id-AdditionalCSFallbackIndicator CRITICALITY ignore TYPE AdditionalCSFallbackIndicator PRESENCE conditional}| + { ID id-Masked-IMEISV CRITICALITY ignore TYPE Masked-IMEISV PRESENCE optional}| + { ID id-ExpectedUEBehaviour CRITICALITY ignore TYPE ExpectedUEBehaviour PRESENCE optional}| + { ID id-ProSeAuthorized CRITICALITY ignore TYPE ProSeAuthorized PRESENCE optional}| + { ID id-UEUserPlaneCIoTSupportIndicator CRITICALITY ignore TYPE UEUserPlaneCIoTSupportIndicator PRESENCE optional}| + { ID id-V2XServicesAuthorized CRITICALITY ignore TYPE V2XServicesAuthorized PRESENCE optional}| + { ID id-UESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE UESidelinkAggregateMaximumBitrate PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-AerialUEsubscriptionInformation CRITICALITY ignore TYPE AerialUEsubscriptionInformation PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional }| + { ID id-IAB-Authorized CRITICALITY ignore TYPE IAB-Authorized PRESENCE optional}| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, + ... +} + + + + +E-RABToBeSetupListCtxtSUReq ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABToBeSetupItemCtxtSUReqIEs} } + +E-RABToBeSetupItemCtxtSUReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeSetupItemCtxtSUReq CRITICALITY reject TYPE E-RABToBeSetupItemCtxtSUReq PRESENCE mandatory }, + ... +} + +E-RABToBeSetupItemCtxtSUReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + e-RABlevelQoSParameters E-RABLevelQoSParameters, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + nAS-PDU NAS-PDU OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABToBeSetupItemCtxtSUReqExtIEs} } OPTIONAL, + ... +} + + +E-RABToBeSetupItemCtxtSUReqExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-Correlation-ID CRITICALITY ignore EXTENSION Correlation-ID PRESENCE optional}| + { ID id-SIPTO-Correlation-ID CRITICALITY ignore EXTENSION Correlation-ID PRESENCE optional}| + { ID id-BearerType CRITICALITY reject EXTENSION BearerType PRESENCE optional}| + { ID id-Ethernet-Type CRITICALITY ignore EXTENSION Ethernet-Type PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- Initial Context Setup Response +-- +-- ************************************************************** + +InitialContextSetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupResponseIEs} }, + ... +} + +InitialContextSetupResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABSetupListCtxtSURes CRITICALITY ignore TYPE E-RABSetupListCtxtSURes PRESENCE mandatory }| + { ID id-E-RABFailedToSetupListCtxtSURes CRITICALITY ignore TYPE E-RABList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + + +E-RABSetupListCtxtSURes ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABSetupItemCtxtSUResIEs} } + +E-RABSetupItemCtxtSUResIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABSetupItemCtxtSURes CRITICALITY ignore TYPE E-RABSetupItemCtxtSURes PRESENCE mandatory }, + ... +} + +E-RABSetupItemCtxtSURes ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + gTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { {E-RABSetupItemCtxtSUResExtIEs} } OPTIONAL, + ... +} + + +E-RABSetupItemCtxtSUResExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- ************************************************************** +-- +-- Initial Context Setup Failure +-- +-- ************************************************************** + +InitialContextSetupFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {InitialContextSetupFailureIEs} }, + ... +} + +InitialContextSetupFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PAGING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + + +-- ************************************************************** +-- +-- Paging +-- +-- ************************************************************** + +Paging ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{PagingIEs}}, + ... +} + +PagingIEs S1AP-PROTOCOL-IES ::= { + { ID id-UEIdentityIndexValue CRITICALITY ignore TYPE UEIdentityIndexValue PRESENCE mandatory}| + { ID id-UEPagingID CRITICALITY ignore TYPE UEPagingID PRESENCE mandatory}| + { ID id-pagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE optional}| + { ID id-CNDomain CRITICALITY ignore TYPE CNDomain PRESENCE mandatory}| + { ID id-TAIList CRITICALITY ignore TYPE TAIList PRESENCE mandatory}| + { ID id-CSG-IdList CRITICALITY ignore TYPE CSG-IdList PRESENCE optional}| + { ID id-PagingPriority CRITICALITY ignore TYPE PagingPriority PRESENCE optional}| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional}| +-- Extension for Release 13 to support Paging Optimisation and Coverage Enhancement paging - + { ID id-AssistanceDataForPaging CRITICALITY ignore TYPE AssistanceDataForPaging PRESENCE optional}| + { ID id-Paging-eDRXInformation CRITICALITY ignore TYPE Paging-eDRXInformation PRESENCE optional}| + { ID id-extended-UEIdentityIndexValue CRITICALITY ignore TYPE Extended-UEIdentityIndexValue PRESENCE optional}| + { ID id-NB-IoT-Paging-eDRXInformation CRITICALITY ignore TYPE NB-IoT-Paging-eDRXInformation PRESENCE optional}| + { ID id-NB-IoT-UEIdentityIndexValue CRITICALITY ignore TYPE NB-IoT-UEIdentityIndexValue PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-DataSize CRITICALITY ignore TYPE DataSize PRESENCE optional}| + { ID id-WUS-Assistance-Information CRITICALITY ignore TYPE WUS-Assistance-Information PRESENCE optional}| + { ID id-NB-IoT-PagingDRX CRITICALITY ignore TYPE NB-IoT-PagingDRX PRESENCE optional}, + ... +} + +TAIList::= SEQUENCE (SIZE(1.. maxnoofTAIs)) OF ProtocolIE-SingleContainer {{TAIItemIEs}} + +TAIItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-TAIItem CRITICALITY ignore TYPE TAIItem PRESENCE mandatory }, + ... +} + +TAIItem ::= SEQUENCE { + tAI TAI, + iE-Extensions ProtocolExtensionContainer { {TAIItemExtIEs} } OPTIONAL, + ... +} + + +TAIItemExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RELEASE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Release Request +-- +-- ************************************************************** + +UEContextReleaseRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UEContextReleaseRequest-IEs}}, + ... +} + +UEContextReleaseRequest-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-GWContextReleaseIndication CRITICALITY reject TYPE GWContextReleaseIndication PRESENCE optional }| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Release Command +-- +-- ************************************************************** + +UEContextReleaseCommand ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UEContextReleaseCommand-IEs}}, + ... +} + +UEContextReleaseCommand-IEs S1AP-PROTOCOL-IES ::= { + { ID id-UE-S1AP-IDs CRITICALITY reject TYPE UE-S1AP-IDs PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE Context Release Complete +-- +-- ************************************************************** + +UEContextReleaseComplete ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UEContextReleaseComplete-IEs}}, + ... +} + +UEContextReleaseComplete-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| +-- Extension for Release 12 to support User Location Information -- + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional}| +-- Extension for Release 13 to support Paging Optimisation + { ID id-InformationOnRecommendedCellsAndENBsForPaging CRITICALITY ignore TYPE InformationOnRecommendedCellsAndENBsForPaging PRESENCE optional}| +-- Extension for Release 13 to support coverage enhancement paging + { ID id-CellIdentifierAndCELevelForCECapableUEs CRITICALITY ignore TYPE CellIdentifierAndCELevelForCECapableUEs PRESENCE optional}| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }| + { ID id-TimeSinceSecondaryNodeRelease CRITICALITY ignore TYPE TimeSinceSecondaryNodeRelease PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Modification Request +-- +-- ************************************************************** + +UEContextModificationRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextModificationRequestIEs} }, + ... +} + +UEContextModificationRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-SecurityKey CRITICALITY reject TYPE SecurityKey PRESENCE optional}| + { ID id-SubscriberProfileIDforRFP CRITICALITY ignore TYPE SubscriberProfileIDforRFP PRESENCE optional}| + { ID id-uEaggregateMaximumBitrate CRITICALITY ignore TYPE UEAggregateMaximumBitrate PRESENCE optional}| + { ID id-CSFallbackIndicator CRITICALITY reject TYPE CSFallbackIndicator PRESENCE optional}| + { ID id-UESecurityCapabilities CRITICALITY reject TYPE UESecurityCapabilities PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-RegisteredLAI CRITICALITY ignore TYPE LAI PRESENCE optional}| + { ID id-AdditionalCSFallbackIndicator CRITICALITY ignore TYPE AdditionalCSFallbackIndicator PRESENCE conditional}| + { ID id-ProSeAuthorized CRITICALITY ignore TYPE ProSeAuthorized PRESENCE optional}| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional}| + { ID id-SRVCCOperationNotPossible CRITICALITY ignore TYPE SRVCCOperationNotPossible PRESENCE optional}| + { ID id-V2XServicesAuthorized CRITICALITY ignore TYPE V2XServicesAuthorized PRESENCE optional}| + { ID id-UESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE UESidelinkAggregateMaximumBitrate PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-AerialUEsubscriptionInformation CRITICALITY ignore TYPE AerialUEsubscriptionInformation PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional}| + { ID id-IAB-Authorized CRITICALITY ignore TYPE IAB-Authorized PRESENCE optional}| + { ID id-NRV2XServicesAuthorized CRITICALITY ignore TYPE NRV2XServicesAuthorized PRESENCE optional }| + { ID id-NRUESidelinkAggregateMaximumBitrate CRITICALITY ignore TYPE NRUESidelinkAggregateMaximumBitrate PRESENCE optional }| + { ID id-PC5QoSParameters CRITICALITY ignore TYPE PC5QoSParameters PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, + ... +} +-- ************************************************************** +-- +-- UE Context Modification Response +-- +-- ************************************************************** + +UEContextModificationResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextModificationResponseIEs} }, + ... +} + +UEContextModificationResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- UE Context Modification Failure +-- +-- ************************************************************** + +UEContextModificationFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextModificationFailureIEs} }, + ... +} + +UEContextModificationFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY MATCH ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Radio Capability Match Request +-- +-- ************************************************************** + +UERadioCapabilityMatchRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UERadioCapabilityMatchRequestIEs} }, + ... +} + +UERadioCapabilityMatchRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Radio Capability Match Response +-- +-- ************************************************************** + +UERadioCapabilityMatchResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UERadioCapabilityMatchResponseIEs} }, + ... +} + +UERadioCapabilityMatchResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-VoiceSupportMatchIndicator CRITICALITY reject TYPE VoiceSupportMatchIndicator PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- NAS TRANSPORT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- DOWNLINK NAS TRANSPORT +-- +-- ************************************************************** + +DownlinkNASTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{DownlinkNASTransport-IEs}}, + ... +} + +DownlinkNASTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory}| + { ID id-HandoverRestrictionList CRITICALITY ignore TYPE HandoverRestrictionList PRESENCE optional}| + { ID id-SubscriberProfileIDforRFP CRITICALITY ignore TYPE SubscriberProfileIDforRFP PRESENCE optional}| + { ID id-SRVCCOperationPossible CRITICALITY ignore TYPE SRVCCOperationPossible PRESENCE optional}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional}| + { ID id-DLNASPDUDeliveryAckRequest CRITICALITY ignore TYPE DLNASPDUDeliveryAckRequest PRESENCE optional}| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional}| + { ID id-NRUESecurityCapabilities CRITICALITY ignore TYPE NRUESecurityCapabilities PRESENCE optional}| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-UECapabilityInfoRequest CRITICALITY ignore TYPE UECapabilityInfoRequest PRESENCE optional}| + { ID id-EndIndication CRITICALITY ignore TYPE EndIndication PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-AdditionalRRMPriorityIndex CRITICALITY ignore TYPE AdditionalRRMPriorityIndex PRESENCE optional}| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- INITIAL UE MESSAGE +-- +-- ************************************************************** + +InitialUEMessage ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{InitialUEMessage-IEs}}, + ... +} + +InitialUEMessage-IEs S1AP-PROTOCOL-IES ::= { + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory}| + { ID id-TAI CRITICALITY reject TYPE TAI PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-RRC-Establishment-Cause CRITICALITY ignore TYPE RRC-Establishment-Cause PRESENCE mandatory}| + { ID id-S-TMSI CRITICALITY reject TYPE S-TMSI PRESENCE optional}| + { ID id-CSG-Id CRITICALITY reject TYPE CSG-Id PRESENCE optional}| + { ID id-GUMMEI-ID CRITICALITY reject TYPE GUMMEI PRESENCE optional}| + { ID id-CellAccessMode CRITICALITY reject TYPE CellAccessMode PRESENCE optional}| + { ID id-GW-TransportLayerAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE optional}| + { ID id-RelayNode-Indicator CRITICALITY reject TYPE RelayNode-Indicator PRESENCE optional}| + { ID id-GUMMEIType CRITICALITY ignore TYPE GUMMEIType PRESENCE optional}| +-- Extension for Release 11 to support BBAI -- + { ID id-Tunnel-Information-for-BBF CRITICALITY ignore TYPE TunnelInformation PRESENCE optional}| + { ID id-SIPTO-L-GW-TransportLayerAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE optional}| + { ID id-LHN-ID CRITICALITY ignore TYPE LHN-ID PRESENCE optional}| + { ID id-MME-Group-ID CRITICALITY ignore TYPE MME-Group-ID PRESENCE optional}| + { ID id-UE-Usage-Type CRITICALITY ignore TYPE UE-Usage-Type PRESENCE optional}| + { ID id-CE-mode-B-SupportIndicator CRITICALITY ignore TYPE CE-mode-B-SupportIndicator PRESENCE optional}| + { ID id-DCN-ID CRITICALITY ignore TYPE DCN-ID PRESENCE optional}| + { ID id-Coverage-Level CRITICALITY ignore TYPE Coverage-Level PRESENCE optional}| + { ID id-UE-Application-Layer-Measurement-Capability CRITICALITY ignore TYPE UE-Application-Layer-Measurement-Capability PRESENCE optional}| + { ID id-EDT-Session CRITICALITY ignore TYPE EDT-Session PRESENCE optional}| + { ID id-IAB-Node-Indication CRITICALITY reject TYPE IAB-Node-Indication PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- UPLINK NAS TRANSPORT +-- +-- ************************************************************** + +UplinkNASTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UplinkNASTransport-IEs}}, + ... +} + +UplinkNASTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-NAS-PDU CRITICALITY reject TYPE NAS-PDU PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory}| + { ID id-GW-TransportLayerAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE optional}| + { ID id-SIPTO-L-GW-TransportLayerAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE optional}| + { ID id-LHN-ID CRITICALITY ignore TYPE LHN-ID PRESENCE optional}| + { ID id-PSCellInformation CRITICALITY ignore TYPE PSCellInformation PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- NAS NON DELIVERY INDICATION +-- +-- ************************************************************** + +NASNonDeliveryIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{NASNonDeliveryIndication-IEs}}, + ... +} + +NASNonDeliveryIndication-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-NAS-PDU CRITICALITY ignore TYPE NAS-PDU PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- REROUTE NAS REQUEST +-- +-- ************************************************************** + +RerouteNASRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{RerouteNASRequest-IEs}}, + ... +} + +RerouteNASRequest-IEs S1AP-PROTOCOL-IES ::= { + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional}| + { ID id-S1-Message CRITICALITY reject TYPE OCTET STRING PRESENCE mandatory}| + { ID id-MME-Group-ID CRITICALITY reject TYPE MME-Group-ID PRESENCE mandatory}| + { ID id-Additional-GUTI CRITICALITY ignore TYPE Additional-GUTI PRESENCE optional}| + { ID id-UE-Usage-Type CRITICALITY ignore TYPE UE-Usage-Type PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- NAS DELIVERY INDICATION +-- +-- ************************************************************** + +NASDeliveryIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { NASDeliveryIndicationIEs} }, + ... +} + +NASDeliveryIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- RESET ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Reset +-- +-- ************************************************************** + +Reset ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ResetIEs} }, + ... +} + +ResetIEs S1AP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-ResetType CRITICALITY reject TYPE ResetType PRESENCE mandatory }, + ... +} + +ResetType ::= CHOICE { + s1-Interface ResetAll, + partOfS1-Interface UE-associatedLogicalS1-ConnectionListRes, + ... +} + + + +ResetAll ::= ENUMERATED { + reset-all, + ... +} + +UE-associatedLogicalS1-ConnectionListRes ::= SEQUENCE (SIZE(1.. maxnoofIndividualS1ConnectionsToReset)) OF ProtocolIE-SingleContainer { { UE-associatedLogicalS1-ConnectionItemRes } } + +UE-associatedLogicalS1-ConnectionItemRes S1AP-PROTOCOL-IES ::= { + { ID id-UE-associatedLogicalS1-ConnectionItem CRITICALITY reject TYPE UE-associatedLogicalS1-ConnectionItem PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- Reset Acknowledge +-- +-- ************************************************************** + +ResetAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ResetAcknowledgeIEs} }, + ... +} + +ResetAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-UE-associatedLogicalS1-ConnectionListResAck CRITICALITY ignore TYPE UE-associatedLogicalS1-ConnectionListResAck PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +UE-associatedLogicalS1-ConnectionListResAck ::= SEQUENCE (SIZE(1.. maxnoofIndividualS1ConnectionsToReset)) OF ProtocolIE-SingleContainer { { UE-associatedLogicalS1-ConnectionItemResAck } } + +UE-associatedLogicalS1-ConnectionItemResAck S1AP-PROTOCOL-IES ::= { + { ID id-UE-associatedLogicalS1-ConnectionItem CRITICALITY ignore TYPE UE-associatedLogicalS1-ConnectionItem PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- ERROR INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Error Indication +-- +-- ************************************************************** + +ErrorIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ErrorIndicationIEs}}, + ... +} + +ErrorIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE optional }| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE optional }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }| + { ID id-S-TMSI CRITICALITY ignore TYPE S-TMSI PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- S1 SETUP ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- S1 Setup Request +-- +-- ************************************************************** + +S1SetupRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {S1SetupRequestIEs} }, + ... +} + +S1SetupRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-Global-ENB-ID CRITICALITY reject TYPE Global-ENB-ID PRESENCE mandatory}| + { ID id-eNBname CRITICALITY ignore TYPE ENBname PRESENCE optional}| + { ID id-SupportedTAs CRITICALITY reject TYPE SupportedTAs PRESENCE mandatory}| + { ID id-DefaultPagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE mandatory}| + { ID id-CSG-IdList CRITICALITY reject TYPE CSG-IdList PRESENCE optional}| + { ID id-UE-RetentionInformation CRITICALITY ignore TYPE UE-RetentionInformation PRESENCE optional}| + { ID id-NB-IoT-DefaultPagingDRX CRITICALITY ignore TYPE NB-IoT-DefaultPagingDRX PRESENCE optional}| + { ID id-ConnectedengNBList CRITICALITY ignore TYPE ConnectedengNBList PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- S1 Setup Response +-- +-- ************************************************************** + +S1SetupResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {S1SetupResponseIEs} }, + ... +} + + +S1SetupResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MMEname CRITICALITY ignore TYPE MMEname PRESENCE optional}| + { ID id-ServedGUMMEIs CRITICALITY reject TYPE ServedGUMMEIs PRESENCE mandatory}| + { ID id-RelativeMMECapacity CRITICALITY ignore TYPE RelativeMMECapacity PRESENCE mandatory}| + { ID id-MMERelaySupportIndicator CRITICALITY ignore TYPE MMERelaySupportIndicator PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-UE-RetentionInformation CRITICALITY ignore TYPE UE-RetentionInformation PRESENCE optional}| + { ID id-ServedDCNs CRITICALITY ignore TYPE ServedDCNs PRESENCE optional}| + { ID id-IAB-Supported CRITICALITY ignore TYPE IAB-Supported PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- S1 Setup Failure +-- +-- ************************************************************** + +S1SetupFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {S1SetupFailureIEs} }, + ... +} + +S1SetupFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- ENB CONFIGURATION UPDATE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Configuration Update +-- +-- ************************************************************** + +ENBConfigurationUpdate ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBConfigurationUpdateIEs} }, + ... +} + +ENBConfigurationUpdateIEs S1AP-PROTOCOL-IES ::= { + { ID id-eNBname CRITICALITY ignore TYPE ENBname PRESENCE optional}| + { ID id-SupportedTAs CRITICALITY reject TYPE SupportedTAs PRESENCE optional}| + { ID id-CSG-IdList CRITICALITY reject TYPE CSG-IdList PRESENCE optional}| + { ID id-DefaultPagingDRX CRITICALITY ignore TYPE PagingDRX PRESENCE optional}| + { ID id-NB-IoT-DefaultPagingDRX CRITICALITY ignore TYPE NB-IoT-DefaultPagingDRX PRESENCE optional}| + { ID id-ConnectedengNBToAddList CRITICALITY ignore TYPE ConnectedengNBList PRESENCE optional}| + { ID id-ConnectedengNBToRemoveList CRITICALITY ignore TYPE ConnectedengNBList PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- eNB Configuration Update Acknowledge +-- +-- ************************************************************** + +ENBConfigurationUpdateAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBConfigurationUpdateAcknowledgeIEs} }, + ... +} + + +ENBConfigurationUpdateAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- eNB Configuration Update Failure +-- +-- ************************************************************** + +ENBConfigurationUpdateFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBConfigurationUpdateFailureIEs} }, + ... +} + +ENBConfigurationUpdateFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, +... +} + + +-- ************************************************************** +-- +-- MME CONFIGURATION UPDATE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Configuration Update +-- +-- ************************************************************** + +MMEConfigurationUpdate ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEConfigurationUpdateIEs} }, + ... +} + +MMEConfigurationUpdateIEs S1AP-PROTOCOL-IES ::= { + { ID id-MMEname CRITICALITY ignore TYPE MMEname PRESENCE optional }| + { ID id-ServedGUMMEIs CRITICALITY reject TYPE ServedGUMMEIs PRESENCE optional }| + { ID id-RelativeMMECapacity CRITICALITY reject TYPE RelativeMMECapacity PRESENCE optional }| + { ID id-ServedDCNs CRITICALITY ignore TYPE ServedDCNs PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- MME Configuration Update Acknowledge +-- +-- ************************************************************** + +MMEConfigurationUpdateAcknowledge ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEConfigurationUpdateAcknowledgeIEs} }, + ... +} + + +MMEConfigurationUpdateAcknowledgeIEs S1AP-PROTOCOL-IES ::= { + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- MME Configuration Update Failure +-- +-- ************************************************************** + +MMEConfigurationUpdateFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEConfigurationUpdateFailureIEs} }, + ... +} + +MMEConfigurationUpdateFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }| + { ID id-TimeToWait CRITICALITY ignore TYPE TimeToWait PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK S1 CDMA2000 TUNNELLING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Downlink S1 CDMA2000 Tunnelling +-- +-- ************************************************************** + +DownlinkS1cdma2000tunnelling ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {DownlinkS1cdma2000tunnellingIEs} }, + ... +} + +DownlinkS1cdma2000tunnellingIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-RABSubjecttoDataForwardingList CRITICALITY ignore TYPE E-RABSubjecttoDataForwardingList PRESENCE optional }| + { ID id-cdma2000HOStatus CRITICALITY ignore TYPE Cdma2000HOStatus PRESENCE optional }| + { ID id-cdma2000RATType CRITICALITY reject TYPE Cdma2000RATType PRESENCE mandatory }| + { ID id-cdma2000PDU CRITICALITY reject TYPE Cdma2000PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK S1 CDMA2000 TUNNELLING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Uplink S1 CDMA2000 Tunnelling +-- +-- ************************************************************** + +UplinkS1cdma2000tunnelling ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UplinkS1cdma2000tunnellingIEs} }, + ... +} + +UplinkS1cdma2000tunnellingIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-cdma2000RATType CRITICALITY reject TYPE Cdma2000RATType PRESENCE mandatory }| + { ID id-cdma2000SectorID CRITICALITY reject TYPE Cdma2000SectorID PRESENCE mandatory }| + { ID id-cdma2000HORequiredIndication CRITICALITY ignore TYPE Cdma2000HORequiredIndication PRESENCE optional }| + { ID id-cdma2000OneXSRVCCInfo CRITICALITY reject TYPE Cdma2000OneXSRVCCInfo PRESENCE optional }| + { ID id-cdma2000OneXRAND CRITICALITY reject TYPE Cdma2000OneXRAND PRESENCE optional }| + { ID id-cdma2000PDU CRITICALITY reject TYPE Cdma2000PDU PRESENCE mandatory }| + { ID id-EUTRANRoundTripDelayEstimationInfo CRITICALITY ignore TYPE EUTRANRoundTripDelayEstimationInfo PRESENCE optional }, + -- Extension for Release 9 to assist target HRPD access with the acquisition of the UE -- + ... +} + + +-- ************************************************************** +-- +-- UE CAPABILITY INFO INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Capability Info Indication +-- +-- ************************************************************** + +UECapabilityInfoIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UECapabilityInfoIndicationIEs} }, + ... +} + +UECapabilityInfoIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE mandatory}| + { ID id-UERadioCapabilityForPaging CRITICALITY ignore TYPE UERadioCapabilityForPaging PRESENCE optional}| + { ID id-UE-Application-Layer-Measurement-Capability CRITICALITY ignore TYPE UE-Application-Layer-Measurement-Capability PRESENCE optional}| + { ID id-LTE-M-Indication CRITICALITY ignore TYPE LTE-M-Indication PRESENCE optional}| + { ID id-UERadioCapability-NR-Format CRITICALITY ignore TYPE UERadioCapability PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- eNB STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Status Transfer +-- +-- ************************************************************** + +ENBStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ENBStatusTransferIEs} }, + ... +} + +ENBStatusTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-StatusTransfer-TransparentContainer CRITICALITY reject TYPE ENB-StatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- MME STATUS TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Status Transfer +-- +-- ************************************************************** + +MMEStatusTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {MMEStatusTransferIEs} }, + ... +} + +MMEStatusTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-StatusTransfer-TransparentContainer CRITICALITY reject TYPE ENB-StatusTransfer-TransparentContainer PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- TRACE ELEMENTARY PROCEDURES +-- +-- ************************************************************** +-- ************************************************************** +-- +-- Trace Start +-- +-- ************************************************************** + +TraceStart ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {TraceStartIEs} }, + ... +} + +TraceStartIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-TraceActivation CRITICALITY ignore TYPE TraceActivation PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Trace Failure Indication +-- +-- ************************************************************** + +TraceFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {TraceFailureIndicationIEs} }, + ... +} + +TraceFailureIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-UTRAN-Trace-ID CRITICALITY ignore TYPE E-UTRAN-Trace-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- DEACTIVATE TRACE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Deactivate Trace +-- +-- ************************************************************** + +DeactivateTrace ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { DeactivateTraceIEs} }, + ... +} + +DeactivateTraceIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-E-UTRAN-Trace-ID CRITICALITY ignore TYPE E-UTRAN-Trace-ID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- CELL TRAFFIC TRACE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Cell Traffic Trace +-- +-- ************************************************************** + +CellTrafficTrace ::= SEQUENCE { +protocolIEs ProtocolIE-Container { { CellTrafficTraceIEs } }, +... +} + +CellTrafficTraceIEs S1AP-PROTOCOL-IES ::= { + {ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + {ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + {ID id-E-UTRAN-Trace-ID CRITICALITY ignore TYPE E-UTRAN-Trace-ID PRESENCE mandatory }| + {ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory }| + {ID id-TraceCollectionEntityIPAddress CRITICALITY ignore TYPE TransportLayerAddress PRESENCE mandatory }| + {ID id-PrivacyIndicator CRITICALITY ignore TYPE PrivacyIndicator PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- LOCATION ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Location Reporting Control +-- +-- ************************************************************** + +LocationReportingControl ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { LocationReportingControlIEs} }, + ... +} + +LocationReportingControlIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-RequestType CRITICALITY ignore TYPE RequestType PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Location Report Failure Indication +-- +-- ************************************************************** + +LocationReportingFailureIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { LocationReportingFailureIndicationIEs} }, + ... +} + +LocationReportingFailureIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- Location Report +-- +-- ************************************************************** + +LocationReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { LocationReportIEs} }, + ... +} + +LocationReportIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory }| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory }| + { ID id-RequestType CRITICALITY ignore TYPE RequestType PRESENCE mandatory }| + { ID id-PSCellInformation CRITICALITY ignore TYPE PSCellInformation PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- OVERLOAD ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Overload Start +-- +-- ************************************************************** + +OverloadStart ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {OverloadStartIEs} }, + ... +} + +OverloadStartIEs S1AP-PROTOCOL-IES ::= { + { ID id-OverloadResponse CRITICALITY reject TYPE OverloadResponse PRESENCE mandatory }| + { ID id-GUMMEIList CRITICALITY ignore TYPE GUMMEIList PRESENCE optional }| + { ID id-TrafficLoadReductionIndication CRITICALITY ignore TYPE TrafficLoadReductionIndication PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- Overload Stop +-- +-- ************************************************************** + +OverloadStop ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {OverloadStopIEs} }, + ... +} + +OverloadStopIEs S1AP-PROTOCOL-IES ::= { +{ ID id-GUMMEIList CRITICALITY ignore TYPE GUMMEIList PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- WRITE-REPLACE WARNING ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Write-Replace Warning Request +-- +-- ************************************************************** + + +WriteReplaceWarningRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {WriteReplaceWarningRequestIEs} }, + ... +} + +WriteReplaceWarningRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-WarningAreaList CRITICALITY ignore TYPE WarningAreaList PRESENCE optional }| + { ID id-RepetitionPeriod CRITICALITY reject TYPE RepetitionPeriod PRESENCE mandatory }| + { ID id-ExtendedRepetitionPeriod CRITICALITY reject TYPE ExtendedRepetitionPeriod PRESENCE optional }| + { ID id-NumberofBroadcastRequest CRITICALITY reject TYPE NumberofBroadcastRequest PRESENCE mandatory }| + { ID id-WarningType CRITICALITY ignore TYPE WarningType PRESENCE optional }| + { ID id-WarningSecurityInfo CRITICALITY ignore TYPE WarningSecurityInfo PRESENCE optional }| + { ID id-DataCodingScheme CRITICALITY ignore TYPE DataCodingScheme PRESENCE optional }| + { ID id-WarningMessageContents CRITICALITY ignore TYPE WarningMessageContents PRESENCE optional }| + { ID id-ConcurrentWarningMessageIndicator CRITICALITY reject TYPE ConcurrentWarningMessageIndicator PRESENCE optional }| + { ID id-WarningAreaCoordinates CRITICALITY ignore TYPE WarningAreaCoordinates PRESENCE optional }, + ... +} +-- ************************************************************** +-- +-- Write-Replace Warning Response +-- +-- ************************************************************** + +WriteReplaceWarningResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {WriteReplaceWarningResponseIEs} }, + ... +} + +WriteReplaceWarningResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-BroadcastCompletedAreaList CRITICALITY ignore TYPE BroadcastCompletedAreaList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- eNB DIRECT INFORMATION TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Direct Information Transfer +-- +-- ************************************************************** + +ENBDirectInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ ENBDirectInformationTransferIEs}}, + ... +} + +ENBDirectInformationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-Inter-SystemInformationTransferTypeEDT CRITICALITY reject TYPE Inter-SystemInformationTransferType PRESENCE mandatory }, + ... +} + +Inter-SystemInformationTransferType ::= CHOICE { + rIMTransfer RIMTransfer, + ... +} + +-- ************************************************************** +-- +-- MME DIRECT INFORMATION TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Direct Information Transfer +-- +-- ************************************************************** + +MMEDirectInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ MMEDirectInformationTransferIEs}}, + ... +} + +MMEDirectInformationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-Inter-SystemInformationTransferTypeMDT CRITICALITY reject TYPE Inter-SystemInformationTransferType PRESENCE mandatory }, + ... +} +-- ************************************************************** +-- +-- eNB CONFIGURATION TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- eNB Configuration Transfer +-- +-- ************************************************************** + +ENBConfigurationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ ENBConfigurationTransferIEs}}, + ... +} + +ENBConfigurationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-SONConfigurationTransferECT CRITICALITY ignore TYPE SONConfigurationTransfer PRESENCE optional }| + { ID id-EN-DCSONConfigurationTransfer-ECT CRITICALITY ignore TYPE EN-DCSONConfigurationTransfer PRESENCE optional }| + { ID id-IntersystemSONConfigurationTransferECT CRITICALITY ignore TYPE IntersystemSONConfigurationTransfer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- MME CONFIGURATION TRANSFER ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- MME Configuration Transfer +-- +-- ************************************************************** + +MMEConfigurationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ MMEConfigurationTransferIEs}}, + ... +} + +MMEConfigurationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-SONConfigurationTransferMCT CRITICALITY ignore TYPE SONConfigurationTransfer PRESENCE optional }| + { ID id-EN-DCSONConfigurationTransfer-MCT CRITICALITY ignore TYPE EN-DCSONConfigurationTransfer PRESENCE optional }| + { ID id-IntersystemSONConfigurationTransferMCT CRITICALITY ignore TYPE IntersystemSONConfigurationTransfer PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PRIVATE MESSAGE ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Private Message +-- +-- ************************************************************** + +PrivateMessage ::= SEQUENCE { + privateIEs PrivateIE-Container {{PrivateMessageIEs}}, + ... +} + +PrivateMessageIEs S1AP-PRIVATE-IES ::= { + ... +} + +-- ************************************************************** +-- +-- KILL PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- Kill Request +-- +-- ************************************************************** + + +KillRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {KillRequestIEs} }, + ... +} + +KillRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory}| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory}| + { ID id-WarningAreaList CRITICALITY ignore TYPE WarningAreaList PRESENCE optional}| + { ID id-KillAllWarningMessages CRITICALITY reject TYPE KillAllWarningMessages PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- Kill Response +-- +-- ************************************************************** + +KillResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {KillResponseIEs} }, + ... +} + +KillResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MessageIdentifier CRITICALITY reject TYPE MessageIdentifier PRESENCE mandatory }| + { ID id-SerialNumber CRITICALITY reject TYPE SerialNumber PRESENCE mandatory }| + { ID id-BroadcastCancelledAreaList CRITICALITY ignore TYPE BroadcastCancelledAreaList PRESENCE optional }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- PWS RESTART INDICATION PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- PWS Restart Indication +-- +-- ************************************************************** + +PWSRestartIndication::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ PWSRestartIndicationIEs}}, + ... +} + +PWSRestartIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-ECGIListForRestart CRITICALITY reject TYPE ECGIListForRestart PRESENCE mandatory}| + { ID id-Global-ENB-ID CRITICALITY reject TYPE Global-ENB-ID PRESENCE mandatory}| + { ID id-TAIListForRestart CRITICALITY reject TYPE TAIListForRestart PRESENCE mandatory}| + { ID id-EmergencyAreaIDListForRestart CRITICALITY reject TYPE EmergencyAreaIDListForRestart PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- PWS Failure Indication +-- +-- ************************************************************** + +PWSFailureIndication::= SEQUENCE { + protocolIEs ProtocolIE-Container {{ PWSFailureIndicationIEs}}, + ... +} + +PWSFailureIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-PWSfailedECGIList CRITICALITY reject TYPE PWSfailedECGIList PRESENCE mandatory}| + { ID id-Global-ENB-ID CRITICALITY reject TYPE Global-ENB-ID PRESENCE mandatory}, + ... +} + +-- ************************************************************** +-- +-- LPPA TRANSPORT ELEMENTARY PROCEDURES +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- DOWNLINK UE ASSOCIATED LPPA TRANSPORT +-- +-- ************************************************************** + +DownlinkUEAssociatedLPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{DownlinkUEAssociatedLPPaTransport-IEs}}, + ... +} + +DownlinkUEAssociatedLPPaTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Routing-ID CRITICALITY reject TYPE Routing-ID PRESENCE mandatory }| + { ID id-LPPa-PDU CRITICALITY reject TYPE LPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK UE ASSOCIATED LPPA TRANSPORT +-- +-- ************************************************************** + +UplinkUEAssociatedLPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UplinkUEAssociatedLPPaTransport-IEs}}, + ... +} + +UplinkUEAssociatedLPPaTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory }| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory }| + { ID id-Routing-ID CRITICALITY reject TYPE Routing-ID PRESENCE mandatory }| + { ID id-LPPa-PDU CRITICALITY reject TYPE LPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- DOWNLINK NON UE ASSOCIATED LPPA TRANSPORT +-- +-- ************************************************************** + +DownlinkNonUEAssociatedLPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{DownlinkNonUEAssociatedLPPaTransport-IEs}}, + ... +} + +DownlinkNonUEAssociatedLPPaTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-Routing-ID CRITICALITY reject TYPE Routing-ID PRESENCE mandatory }| + { ID id-LPPa-PDU CRITICALITY reject TYPE LPPa-PDU PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UPLINK NON UE ASSOCIATED LPPA TRANSPORT +-- +-- ************************************************************** + +UplinkNonUEAssociatedLPPaTransport ::= SEQUENCE { + protocolIEs ProtocolIE-Container {{UplinkNonUEAssociatedLPPaTransport-IEs}}, + ... +} + +UplinkNonUEAssociatedLPPaTransport-IEs S1AP-PROTOCOL-IES ::= { + { ID id-Routing-ID CRITICALITY reject TYPE Routing-ID PRESENCE mandatory }| + { ID id-LPPa-PDU CRITICALITY reject TYPE LPPa-PDU PRESENCE mandatory }, + ... +} + + +-- ************************************************************** +-- +-- E-RAB MODIFICATION INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- E-RAB Modification Indication +-- +-- ************************************************************** + +E-RABModificationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { E-RABModificationIndicationIEs} }, + ... +} + +E-RABModificationIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABToBeModifiedListBearerModInd CRITICALITY reject TYPE E-RABToBeModifiedListBearerModInd PRESENCE mandatory}| + { ID id-E-RABNotToBeModifiedListBearerModInd CRITICALITY reject TYPE E-RABNotToBeModifiedListBearerModInd PRESENCE optional}| + { ID id-CSGMembershipInfo CRITICALITY reject TYPE CSGMembershipInfo PRESENCE optional}| +-- Extension for Release 11 to support BBAI -- + { ID id-Tunnel-Information-for-BBF CRITICALITY ignore TYPE TunnelInformation PRESENCE optional}| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }| +{ ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }, + ... +} + +E-RABToBeModifiedListBearerModInd ::= E-RAB-IE-ContainerList { {E-RABToBeModifiedItemBearerModIndIEs} } + +E-RABToBeModifiedItemBearerModIndIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABToBeModifiedItemBearerModInd CRITICALITY reject TYPE E-RABToBeModifiedItemBearerModInd PRESENCE mandatory}, + ... +} + +E-RABToBeModifiedItemBearerModInd ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + dL-GTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { { E-RABToBeModifiedItemBearerModInd-ExtIEs} } OPTIONAL, + ... +} + +E-RABToBeModifiedItemBearerModInd-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +E-RABNotToBeModifiedListBearerModInd ::= E-RAB-IE-ContainerList { {E-RABNotToBeModifiedItemBearerModIndIEs} } + +E-RABNotToBeModifiedItemBearerModIndIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABNotToBeModifiedItemBearerModInd CRITICALITY reject TYPE E-RABNotToBeModifiedItemBearerModInd PRESENCE mandatory}, + ... +} + +E-RABNotToBeModifiedItemBearerModInd ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + transportLayerAddress TransportLayerAddress, + dL-GTP-TEID GTP-TEID, + iE-Extensions ProtocolExtensionContainer { { E-RABNotToBeModifiedItemBearerModInd-ExtIEs} } OPTIONAL, + ... +} + +E-RABNotToBeModifiedItemBearerModInd-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CSGMembershipInfo ::= SEQUENCE { + cSGMembershipStatus CSGMembershipStatus, + cSG-Id CSG-Id, + cellAccessMode CellAccessMode OPTIONAL, + pLMNidentity PLMNidentity OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { CSGMembershipInfo-ExtIEs} } OPTIONAL, + ... +} + +CSGMembershipInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- E-RAB Modification Confirm +-- +-- ************************************************************** + +E-RABModificationConfirm ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {E-RABModificationConfirmIEs} }, + ... +} + +E-RABModificationConfirmIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABModifyListBearerModConf CRITICALITY ignore TYPE E-RABModifyListBearerModConf PRESENCE optional}| + { ID id-E-RABFailedToModifyListBearerModConf CRITICALITY ignore TYPE E-RABList PRESENCE optional}| + { ID id-E-RABToBeReleasedListBearerModConf CRITICALITY ignore TYPE E-RABList PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}, + ... +} + +E-RABModifyListBearerModConf ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABModifyItemBearerModConfIEs} } + +E-RABModifyItemBearerModConfIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABModifyItemBearerModConf CRITICALITY ignore TYPE E-RABModifyItemBearerModConf PRESENCE mandatory}, + ... +} + +E-RABModifyItemBearerModConf ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + iE-Extensions ProtocolExtensionContainer { {E-RABModifyItemBearerModConfExtIEs} } OPTIONAL, + ... +} + + +E-RABModifyItemBearerModConfExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- ************************************************************** +-- +-- UE CONTEXT MODIFICATION INDICATION ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Modification Indication +-- +-- ************************************************************** + +UEContextModificationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextModificationIndicationIEs} }, + ... +} + +UEContextModificationIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-CSGMembershipInfo CRITICALITY reject TYPE CSGMembershipInfo PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- UE Context Modification Confirm +-- +-- ************************************************************** + +UEContextModificationConfirm ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextModificationConfirmIEs} }, + ... +} + +UEContextModificationConfirmIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-CSGMembershipStatus CRITICALITY ignore TYPE CSGMembershipStatus PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT SUSPEND ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Suspend Request +-- +-- ************************************************************** + +UEContextSuspendRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextSuspendRequestIEs} }, + ... +} + +UEContextSuspendRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-InformationOnRecommendedCellsAndENBsForPaging CRITICALITY ignore TYPE InformationOnRecommendedCellsAndENBsForPaging PRESENCE optional}| + { ID id-CellIdentifierAndCELevelForCECapableUEs CRITICALITY ignore TYPE CellIdentifierAndCELevelForCECapableUEs PRESENCE optional}| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE optional }| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional }| + { ID id-TimeSinceSecondaryNodeRelease CRITICALITY ignore TYPE TimeSinceSecondaryNodeRelease PRESENCE optional }, + ... +} + +-- ************************************************************** +-- +-- UE Context Suspend Response +-- +-- ************************************************************** + +UEContextSuspendResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { {UEContextSuspendResponseIEs} }, + ... +} + +UEContextSuspendResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- UE CONTEXT RESUME ELEMENTARY PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Context Resume Request +-- +-- ************************************************************** + +UEContextResumeRequest ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextResumeRequestIEs} }, + ... +} + +UEContextResumeRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABFailedToResumeListResumeReq CRITICALITY reject TYPE E-RABFailedToResumeListResumeReq PRESENCE optional}| + { ID id-RRC-Resume-Cause CRITICALITY ignore TYPE RRC-Establishment-Cause PRESENCE optional}, + ... +} + +E-RABFailedToResumeListResumeReq ::= E-RAB-IE-ContainerList { {E-RABFailedToResumeItemResumeReqIEs} } + +E-RABFailedToResumeItemResumeReqIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABFailedToResumeItemResumeReq CRITICALITY reject TYPE E-RABFailedToResumeItemResumeReq PRESENCE mandatory}, + ... +} + +E-RABFailedToResumeItemResumeReq ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { { E-RABFailedToResumeItemResumeReq-ExtIEs} } OPTIONAL, + ... +} + +E-RABFailedToResumeItemResumeReq-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- UE Context Resume Response +-- +-- ************************************************************** + +UEContextResumeResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextResumeResponseIEs} }, + ... +} + +UEContextResumeResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-E-RABFailedToResumeListResumeRes CRITICALITY reject TYPE E-RABFailedToResumeListResumeRes PRESENCE optional}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}| + { ID id-SecurityContext CRITICALITY reject TYPE SecurityContext PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}, + ... +} + +E-RABFailedToResumeListResumeRes ::= E-RAB-IE-ContainerList { {E-RABFailedToResumeItemResumeResIEs} } + +E-RABFailedToResumeItemResumeResIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABFailedToResumeItemResumeRes CRITICALITY reject TYPE E-RABFailedToResumeItemResumeRes PRESENCE mandatory}, + ... +} + +E-RABFailedToResumeItemResumeRes ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { { E-RABFailedToResumeItemResumeRes-ExtIEs} } OPTIONAL, + ... +} + +E-RABFailedToResumeItemResumeRes-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- ************************************************************** +-- +-- UE Context Resume Failure +-- +-- ************************************************************** + +UEContextResumeFailure ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEContextResumeFailureIEs} }, + ... +} + +UEContextResumeFailureIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-Cause CRITICALITY ignore TYPE Cause PRESENCE mandatory}| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional}, + ... +} + +-- ************************************************************** +-- +-- Connection Establishment Indication +-- +-- ************************************************************** + +ConnectionEstablishmentIndication::= SEQUENCE { + protocolIEs ProtocolIE-Container { {ConnectionEstablishmentIndicationIEs} }, + ... +} + +ConnectionEstablishmentIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional }| + { ID id-EnhancedCoverageRestricted CRITICALITY ignore TYPE EnhancedCoverageRestricted PRESENCE optional }| + { ID id-DL-CP-SecurityInformation CRITICALITY ignore TYPE DL-CP-SecurityInformation PRESENCE optional }| + { ID id-CE-ModeBRestricted CRITICALITY ignore TYPE CE-ModeBRestricted PRESENCE optional}| + { ID id-EndIndication CRITICALITY ignore TYPE EndIndication PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-UE-Level-QoS-Parameters CRITICALITY ignore TYPE E-RABLevelQoSParameters PRESENCE optional}| + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE optional} +, + ... +} + +-- ************************************************************** +-- +-- Retrieve UE Information +-- +-- ************************************************************** + +RetrieveUEInformation ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { RetrieveUEInformationIEs} }, + ... +} + +RetrieveUEInformationIEs S1AP-PROTOCOL-IES ::= { + { ID id-S-TMSI CRITICALITY reject TYPE S-TMSI PRESENCE mandatory}, +... + +} + + +-- ************************************************************** + +-- UE Information Transfer +-- +-- ************************************************************** +UEInformationTransfer ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UEInformationTransferIEs} }, + ... +} + +UEInformationTransferIEs S1AP-PROTOCOL-IES ::= { + { ID id-S-TMSI CRITICALITY reject TYPE S-TMSI PRESENCE mandatory}| + { ID id-UE-Level-QoS-Parameters CRITICALITY ignore TYPE E-RABLevelQoSParameters PRESENCE optional}| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE optional}| + { ID id-Subscription-Based-UE-DifferentiationInfo CRITICALITY ignore TYPE Subscription-Based-UE-DifferentiationInfo PRESENCE optional}| + { ID id-PendingDataIndication CRITICALITY ignore TYPE PendingDataIndication PRESENCE optional}, + ... +} + + +-- ************************************************************** +-- +-- eNB CP Relocation Indication +-- +-- ************************************************************** + +ENBCPRelocationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { ENBCPRelocationIndicationIEs} }, + ... +} + +ENBCPRelocationIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-S-TMSI CRITICALITY reject TYPE S-TMSI PRESENCE mandatory}| + { ID id-EUTRAN-CGI CRITICALITY ignore TYPE EUTRAN-CGI PRESENCE mandatory}| + { ID id-TAI CRITICALITY ignore TYPE TAI PRESENCE mandatory}| + { ID id-UL-CP-SecurityInformation CRITICALITY reject TYPE UL-CP-SecurityInformation PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- MME CP Relocation Indication +-- +-- ************************************************************** + +MMECPRelocationIndication ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { MMECPRelocationIndicationIEs} }, + ... +} + +MMECPRelocationIndicationIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY reject TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY reject TYPE ENB-UE-S1AP-ID PRESENCE mandatory}, + ... +} + + +-- ************************************************************** +-- +-- Secondary RAT Data Usage Report +-- +-- ************************************************************** + +SecondaryRATDataUsageReport ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { SecondaryRATDataUsageReportIEs} }, + ... +} + +SecondaryRATDataUsageReportIEs S1AP-PROTOCOL-IES ::= { + { ID id-MME-UE-S1AP-ID CRITICALITY ignore TYPE MME-UE-S1AP-ID PRESENCE mandatory}| + { ID id-eNB-UE-S1AP-ID CRITICALITY ignore TYPE ENB-UE-S1AP-ID PRESENCE mandatory}| + { ID id-SecondaryRATDataUsageReportList CRITICALITY ignore TYPE SecondaryRATDataUsageReportList PRESENCE mandatory}| + { ID id-HandoverFlag CRITICALITY ignore TYPE HandoverFlag PRESENCE optional}| + { ID id-UserLocationInformation CRITICALITY ignore TYPE UserLocationInformation PRESENCE optional}| + { ID id-TimeSinceSecondaryNodeRelease CRITICALITY ignore TYPE TimeSinceSecondaryNodeRelease PRESENCE optional }, + ... +} + + +-- ************************************************************** +-- +-- UE RADIO CAPABILITY ID MAPPING PROCEDURE +-- +-- ************************************************************** + +-- ************************************************************** +-- +-- UE Radio Capability ID Mapping Request +-- +-- ************************************************************** + +UERadioCapabilityIDMappingRequest::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UERadioCapabilityIDMappingRequestIEs} }, + ... +} + +UERadioCapabilityIDMappingRequestIEs S1AP-PROTOCOL-IES ::= { + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE mandatory }, + ... +} + +-- ************************************************************** +-- +-- UE Radio Capability ID Mapping Response +-- +-- ************************************************************** + +UERadioCapabilityIDMappingResponse ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { UERadioCapabilityIDMappingResponseIEs} }, + ... +} + +UERadioCapabilityIDMappingResponseIEs S1AP-PROTOCOL-IES ::= { + { ID id-UERadioCapabilityID CRITICALITY reject TYPE UERadioCapabilityID PRESENCE mandatory }| + { ID id-UERadioCapability CRITICALITY ignore TYPE UERadioCapability PRESENCE mandatory }| + { ID id-CriticalityDiagnostics CRITICALITY ignore TYPE CriticalityDiagnostics PRESENCE optional }, + ... +} + +END +9.3.4 Information Element Definitions +-- ************************************************************** +-- +-- Information Element Definitions +-- +-- ************************************************************** + +S1AP-IEs { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-IEs (2) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +IMPORTS + id-E-RABInformationListItem, + id-E-RABItem, + id-GUMMEIType, + id-Bearers-SubjectToStatusTransfer-Item, + id-Time-Synchronisation-Info, + id-x2TNLConfigurationInfo, + id-eNBX2ExtendedTransportLayerAddresses, + id-MDTConfiguration, + id-Time-UE-StayedInCell-EnhancedGranularity, + id-HO-Cause, + id-M3Configuration, + id-M4Configuration, + id-M5Configuration, + id-MDT-Location-Info, + id-SignallingBasedMDTPLMNList, + id-MobilityInformation, + id-ULCOUNTValueExtended, + id-DLCOUNTValueExtended, + id-ReceiveStatusOfULPDCPSDUsExtended, + id-eNBIndirectX2TransportLayerAddresses, + id-Muting-Availability-Indication, + id-Muting-Pattern-Information, + id-NRrestrictioninEPSasSecondaryRAT, + id-NRrestrictionin5GS, + id-Synchronisation-Information, + id-uE-HistoryInformationFromTheUE, + id-LoggedMBSFNMDT, + id-SON-Information-Report, + id-RecommendedCellItem, + id-RecommendedENBItem, + id-ProSeUEtoNetworkRelaying, + id-ULCOUNTValuePDCP-SNlength18, + id-DLCOUNTValuePDCP-SNlength18, + id-ReceiveStatusOfULPDCPSDUsPDCP-SNlength18, + id-M6Configuration, + id-M7Configuration, + id-RAT-Type, + id-extended-e-RAB-MaximumBitrateDL, + id-extended-e-RAB-MaximumBitrateUL, + id-extended-e-RAB-GuaranteedBitrateDL, + id-extended-e-RAB-GuaranteedBitrateUL, + id-extended-uEaggregateMaximumBitRateDL, + id-extended-uEaggregateMaximumBitRateUL, + id-SecondaryRATDataUsageReportItem, + id-E-RABUsageReportItem, + id-UEAppLayerMeasConfig, + id-serviceType, + id-UnlicensedSpectrumRestriction, + id-CNTypeRestrictions, + id-DownlinkPacketLossRate, + id-UplinkPacketLossRate, + id-BluetoothMeasurementConfiguration, + id-WLANMeasurementConfiguration, + id-LastNG-RANPLMNIdentity, + id-PSCellInformation, + id-IMSvoiceEPSfallbackfrom5G, + id-RequestTypeAdditionalInfo, + id-AdditionalRRMPriorityIndex, + id-ContextatSource, + id-IntersystemMeasurementConfiguration, + id-SourceNodeID, + id-NB-IoT-RLF-Report-Container, + id-MDTConfigurationNR, + id-DAPSRequestInfo, + id-DAPSResponseInfoList, + id-DAPSResponseInfoItem, + id-Bearers-SubjectToEarlyStatusTransfer-Item, + id-TraceCollectionEntityURI, + id-EmergencyIndicator, + maxnoofCSGs, + maxnoofE-RABs, + maxnoofErrors, + maxnoofBPLMNs, + maxnoofPLMNsPerMME, + maxnoofTACs, + maxnoofEPLMNs, + maxnoofEPLMNsPlusOne, + maxnoofForbLACs, + maxnoofForbTACs, + maxnoofCellsinUEHistoryInfo, + maxnoofCellID, + maxnoofDCNs, + maxnoofEmergencyAreaID, + maxnoofTAIforWarning, + maxnoofCellinTAI, + maxnoofCellinEAI, + maxnoofeNBX2TLAs, + maxnoofeNBX2ExtTLAs, + maxnoofeNBX2GTPTLAs, + maxnoofRATs, + maxnoofGroupIDs, + maxnoofMMECs, + maxnoofTAforMDT, + maxnoofCellIDforMDT, + maxnoofMDTPLMNs, + maxnoofCellsforRestart, + maxnoofRestartTAIs, + maxnoofRestartEmergencyAreaIDs, + maxnoofMBSFNAreaMDT, + maxEARFCN, + maxnoofCellsineNB, + maxnoofRecommendedCells, + maxnoofRecommendedENBs, + maxnooftimeperiods, + maxnoofCellIDforQMC, + maxnoofTAforQMC, + maxnoofPLMNforQMC, + maxnoofBluetoothName, + maxnoofWLANName, + maxnoofConnectedengNBs, + maxnoofPC5QoSFlows, + maxnooffrequencies, + maxNARFCN, + maxRS-IndexCellQual + + + + +FROM S1AP-Constants + + Criticality, + ProcedureCode, + ProtocolIE-ID, + TriggeringMessage +FROM S1AP-CommonDataTypes + + ProtocolExtensionContainer{}, + S1AP-PROTOCOL-EXTENSION, + ProtocolIE-SingleContainer{}, + S1AP-PROTOCOL-IES + +FROM S1AP-Containers; + +-- A + +Additional-GUTI::= SEQUENCE { + gUMMEI GUMMEI, + m-TMSI M-TMSI, + iE-Extensions ProtocolExtensionContainer { {Additional-GUTI-ExtIEs} } OPTIONAL, + ... +} + +Additional-GUTI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +AdditionalRRMPriorityIndex ::= BIT STRING (SIZE(32)) + +AerialUEsubscriptionInformation ::= ENUMERATED { + allowed, + not-allowed, + ... +} + +AreaScopeOfMDT ::= CHOICE { + cellBased CellBasedMDT, + tABased TABasedMDT, + pLMNWide NULL, + ..., + tAIBased TAIBasedMDT +} + + +AreaScopeOfQMC ::= CHOICE { + cellBased CellBasedQMC, + tABased TABasedQMC, + tAIBased TAIBasedQMC, + pLMNAreaBased PLMNAreaBasedQMC, + ... +} + +AllocationAndRetentionPriority ::= SEQUENCE { + priorityLevel PriorityLevel, + pre-emptionCapability Pre-emptionCapability, + pre-emptionVulnerability Pre-emptionVulnerability, + iE-Extensions ProtocolExtensionContainer { {AllocationAndRetentionPriority-ExtIEs} } OPTIONAL, + ... +} + +AllocationAndRetentionPriority-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +AssistanceDataForCECapableUEs ::= SEQUENCE { + cellIdentifierAndCELevelForCECapableUEs CellIdentifierAndCELevelForCECapableUEs, + iE-Extensions ProtocolExtensionContainer { { InformationForCECapableUEs-ExtIEs} } OPTIONAL, + ... +} + +InformationForCECapableUEs-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +AssistanceDataForPaging ::= SEQUENCE { + assistanceDataForRecommendedCells AssistanceDataForRecommendedCells OPTIONAL, + assistanceDataForCECapableUEs AssistanceDataForCECapableUEs OPTIONAL, + pagingAttemptInformation PagingAttemptInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { AssistanceDataForPaging-ExtIEs} } OPTIONAL, + ... +} + +AssistanceDataForPaging-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +AssistanceDataForRecommendedCells ::= SEQUENCE { + recommendedCellsForPaging RecommendedCellsForPaging, + iE-Extensions ProtocolExtensionContainer { { AssistanceDataForRecommendedCells-ExtIEs} } OPTIONAL, + ... +} + +AssistanceDataForRecommendedCells-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- B + +Bearers-SubjectToStatusTransferList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { { Bearers-SubjectToStatusTransfer-ItemIEs } } + +Bearers-SubjectToStatusTransfer-ItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-Bearers-SubjectToStatusTransfer-Item CRITICALITY ignore TYPE Bearers-SubjectToStatusTransfer-Item PRESENCE mandatory }, + ... +} + +Bearers-SubjectToStatusTransfer-Item ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + uL-COUNTvalue COUNTvalue, + dL-COUNTvalue COUNTvalue, + receiveStatusofULPDCPSDUs ReceiveStatusofULPDCPSDUs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {Bearers-SubjectToStatusTransfer-ItemExtIEs} } OPTIONAL, + ... +} + +Bearers-SubjectToStatusTransfer-ItemExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-ULCOUNTValueExtended CRITICALITY ignore EXTENSION COUNTValueExtended PRESENCE optional}| + { ID id-DLCOUNTValueExtended CRITICALITY ignore EXTENSION COUNTValueExtended PRESENCE optional}| + { ID id-ReceiveStatusOfULPDCPSDUsExtended CRITICALITY ignore EXTENSION ReceiveStatusOfULPDCPSDUsExtended PRESENCE optional}| + { ID id-ULCOUNTValuePDCP-SNlength18 CRITICALITY ignore EXTENSION COUNTvaluePDCP-SNlength18 PRESENCE optional}| + { ID id-DLCOUNTValuePDCP-SNlength18 CRITICALITY ignore EXTENSION COUNTvaluePDCP-SNlength18 PRESENCE optional}| + { ID id-ReceiveStatusOfULPDCPSDUsPDCP-SNlength18 CRITICALITY ignore EXTENSION ReceiveStatusOfULPDCPSDUsPDCP-SNlength18 PRESENCE optional}, + ... +} + +Bearers-SubjectToEarlyStatusTransferList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { { Bearers-SubjectToEarlyStatusTransfer-ItemIEs } } + +Bearers-SubjectToEarlyStatusTransfer-ItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-Bearers-SubjectToEarlyStatusTransfer-Item CRITICALITY ignore TYPE Bearers-SubjectToEarlyStatusTransfer-Item PRESENCE mandatory}, + ... +} + +Bearers-SubjectToEarlyStatusTransfer-Item ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dLCOUNT-PDCP-SNlength DLCOUNT-PDCP-SNlength, + iE-Extensions ProtocolExtensionContainer { {Bearers-SubjectToEarlyStatusTransfer-ItemExtIEs} } OPTIONAL, + ... +} + +Bearers-SubjectToEarlyStatusTransfer-ItemExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +BearerType ::= ENUMERATED { + non-IP, + ... +} + +BitRate ::= INTEGER (0..10000000000) + +BluetoothMeasurementConfiguration ::= SEQUENCE { + bluetoothMeasConfig BluetoothMeasConfig, + bluetoothMeasConfigNameList BluetoothMeasConfigNameList OPTIONAL, + bt-rssi ENUMERATED {true, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { BluetoothMeasurementConfiguration-ExtIEs } } OPTIONAL, + ... +} + +BluetoothMeasurementConfiguration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +BluetoothMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofBluetoothName)) OF BluetoothName + +BluetoothMeasConfig::= ENUMERATED {setup,...} + +BluetoothName ::= OCTET STRING (SIZE (1..248)) + +BPLMNs ::= SEQUENCE (SIZE(1.. maxnoofBPLMNs)) OF PLMNidentity + +BroadcastCancelledAreaList ::= CHOICE { + cellID-Cancelled CellID-Cancelled, + tAI-Cancelled TAI-Cancelled, + emergencyAreaID-Cancelled EmergencyAreaID-Cancelled, + ... +} + +BroadcastCompletedAreaList ::= CHOICE { + cellID-Broadcast CellID-Broadcast, + tAI-Broadcast TAI-Broadcast, + emergencyAreaID-Broadcast EmergencyAreaID-Broadcast, + ... +} + + +-- C + +CancelledCellinEAI ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CancelledCellinEAI-Item + +CancelledCellinEAI-Item ::= SEQUENCE { + eCGI EUTRAN-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellinEAI-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellinEAI-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CancelledCellinTAI ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CancelledCellinTAI-Item + +CancelledCellinTAI-Item ::= SEQUENCE{ + eCGI EUTRAN-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CancelledCellinTAI-Item-ExtIEs} } OPTIONAL, + ... +} + +CancelledCellinTAI-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Cause ::= CHOICE { + radioNetwork CauseRadioNetwork, + transport CauseTransport, + nas CauseNas, + protocol CauseProtocol, + misc CauseMisc, + ... +} + +CauseMisc ::= ENUMERATED { + control-processing-overload, + not-enough-user-plane-processing-resources, + hardware-failure, + om-intervention, + unspecified, + unknown-PLMN, +... +} + +CauseProtocol ::= ENUMERATED { + transfer-syntax-error, + abstract-syntax-error-reject, + abstract-syntax-error-ignore-and-notify, + message-not-compatible-with-receiver-state, + semantic-error, + abstract-syntax-error-falsely-constructed-message, + unspecified, + ... +} + +CauseRadioNetwork ::= ENUMERATED { + unspecified, + tx2relocoverall-expiry, + successful-handover, + release-due-to-eutran-generated-reason, + handover-cancelled, + partial-handover, + ho-failure-in-target-EPC-eNB-or-target-system, + ho-target-not-allowed, + tS1relocoverall-expiry, + tS1relocprep-expiry, + cell-not-available, + unknown-targetID, + no-radio-resources-available-in-target-cell, + unknown-mme-ue-s1ap-id, + unknown-enb-ue-s1ap-id, + unknown-pair-ue-s1ap-id, + handover-desirable-for-radio-reason, + time-critical-handover, + resource-optimisation-handover, + reduce-load-in-serving-cell, + user-inactivity, + radio-connection-with-ue-lost, + load-balancing-tau-required, + cs-fallback-triggered, + ue-not-available-for-ps-service, + radio-resources-not-available, + failure-in-radio-interface-procedure, + invalid-qos-combination, + interrat-redirection, + interaction-with-other-procedure, + unknown-E-RAB-ID, + multiple-E-RAB-ID-instances, + encryption-and-or-integrity-protection-algorithms-not-supported, + s1-intra-system-handover-triggered, + s1-inter-system-handover-triggered, + x2-handover-triggered, + ..., + redirection-towards-1xRTT, + not-supported-QCI-value, + invalid-CSG-Id, + release-due-to-pre-emption, + n26-interface-not-available, + insufficient-ue-capabilities + +} + +CauseTransport ::= ENUMERATED { + transport-resource-unavailable, + unspecified, + ... +} + +CauseNas ::= ENUMERATED { + normal-release, + authentication-failure, + detach, + unspecified, + ..., + csg-subscription-expiry +} + +CellAccessMode ::= ENUMERATED { + hybrid, + ... +} + +CellIdentifierAndCELevelForCECapableUEs ::= SEQUENCE { + global-Cell-ID EUTRAN-CGI, + cELevel CELevel, + iE-Extensions ProtocolExtensionContainer { { CellIdentifierAndCELevelForCECapableUEs-ExtIEs} } OPTIONAL, + ... +} + +CellIdentifierAndCELevelForCECapableUEs-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- Coverage Enhancement level encoded according to TS 36.331 [16] -- +CELevel ::= OCTET STRING + +CE-mode-B-SupportIndicator ::= ENUMERATED { + supported, + ... +} + +CellIdentity ::= BIT STRING (SIZE (28)) + +CellID-Broadcast ::= SEQUENCE (SIZE(1..maxnoofCellID)) OF CellID-Broadcast-Item + +CellID-Broadcast-Item ::= SEQUENCE { + eCGI EUTRAN-CGI, + iE-Extensions ProtocolExtensionContainer { {CellID-Broadcast-Item-ExtIEs} } OPTIONAL, + ... +} + +CellID-Broadcast-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CellID-Cancelled::= SEQUENCE (SIZE(1..maxnoofCellID)) OF CellID-Cancelled-Item + +CellID-Cancelled-Item ::= SEQUENCE { + eCGI EUTRAN-CGI, + numberOfBroadcasts NumberOfBroadcasts, + iE-Extensions ProtocolExtensionContainer { {CellID-Cancelled-Item-ExtIEs} } OPTIONAL, + ... +} + +CellID-Cancelled-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CellBasedMDT::= SEQUENCE { + cellIdListforMDT CellIdListforMDT, + iE-Extensions ProtocolExtensionContainer { {CellBasedMDT-ExtIEs} } OPTIONAL, + ... +} + +CellBasedMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIdListforMDT ::= SEQUENCE (SIZE(1..maxnoofCellIDforMDT)) OF EUTRAN-CGI + +CellBasedQMC::= SEQUENCE { + cellIdListforQMC CellIdListforQMC, + iE-Extensions ProtocolExtensionContainer { {CellBasedQMC-ExtIEs} } OPTIONAL, + ... +} + +CellBasedQMC-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CellIdListforQMC ::= SEQUENCE (SIZE(1..maxnoofCellIDforQMC)) OF EUTRAN-CGI + +Cdma2000PDU ::= OCTET STRING + +Cdma2000RATType ::= ENUMERATED { + hRPD, + onexRTT, + ... +} + +Cdma2000SectorID ::= OCTET STRING + +Cdma2000HOStatus ::= ENUMERATED { + hOSuccess, + hOFailure, + ... +} + +Cdma2000HORequiredIndication ::= ENUMERATED { + true, + ... +} + +Cdma2000OneXSRVCCInfo ::= SEQUENCE { + cdma2000OneXMEID Cdma2000OneXMEID, + cdma2000OneXMSI Cdma2000OneXMSI, + cdma2000OneXPilot Cdma2000OneXPilot, + iE-Extensions ProtocolExtensionContainer { {Cdma2000OneXSRVCCInfo-ExtIEs} } OPTIONAL, + ... +} + +Cdma2000OneXSRVCCInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Cdma2000OneXMEID ::= OCTET STRING + +Cdma2000OneXMSI ::= OCTET STRING + +Cdma2000OneXPilot ::= OCTET STRING + +Cdma2000OneXRAND ::= OCTET STRING + + +Cell-Size ::= ENUMERATED {verysmall, small, medium, large, ...} + +CellType ::= SEQUENCE { + cell-Size Cell-Size, + iE-Extensions ProtocolExtensionContainer { { CellType-ExtIEs}} OPTIONAL, + ... +} + +CellType-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CGI ::= SEQUENCE { + pLMNidentity PLMNidentity, + lAC LAC, + cI CI, + rAC RAC OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {CGI-ExtIEs} } OPTIONAL, + ... + } + +CGI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CI ::= OCTET STRING (SIZE (2)) + +CNDomain ::= ENUMERATED { + ps, + cs +} + +CNTypeRestrictions::= SEQUENCE (SIZE(1.. maxnoofEPLMNsPlusOne)) OF CNTypeRestrictions-Item + +CNTypeRestrictions-Item ::= SEQUENCE { + pLMN-Identity PLMNidentity, + cNType CNType, + iE-Extensions ProtocolExtensionContainer { { CNTypeRestrictions-Item-ExtIEs} } OPTIONAL, + ... +} + +CNTypeRestrictions-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CNType ::= ENUMERATED { + fiveGCForbidden, + ..., + epc-Forbiddden +} + +ConcurrentWarningMessageIndicator ::= ENUMERATED { + true +} + +ConnectedengNBList ::= SEQUENCE (SIZE(1..maxnoofConnectedengNBs)) OF ConnectedengNBItem + +ConnectedengNBItem ::= SEQUENCE { + en-gNB-ID En-gNB-ID, + supportedTAs SupportedTAs, + iE-Extensions ProtocolExtensionContainer { {ConnectedengNBItem-ExtIEs} } OPTIONAL, + ... +} + +ConnectedengNBItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ContextatSource ::= SEQUENCE { + sourceNG-RAN-node-ID Global-RAN-NODE-ID, + rAN-UE-NGAP-ID RAN-UE-NGAP-ID, + iE-Extensions ProtocolExtensionContainer { {ContextatSource-ExtIEs} } OPTIONAL, + ... +} + +ContextatSource-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Correlation-ID ::= OCTET STRING (SIZE (4)) + +CSFallbackIndicator ::= ENUMERATED { + cs-fallback-required, + ..., + cs-fallback-high-priority +} + +AdditionalCSFallbackIndicator ::= ENUMERATED { + no-restriction, + restriction, + ... +} + +CSG-Id ::= BIT STRING (SIZE (27)) + + +CSG-IdList ::= SEQUENCE (SIZE (1.. maxnoofCSGs)) OF CSG-IdList-Item + +CSG-IdList-Item ::= SEQUENCE { + cSG-Id CSG-Id, + iE-Extensions ProtocolExtensionContainer { {CSG-IdList-Item-ExtIEs} } OPTIONAL, + ... +} + +CSG-IdList-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CSGMembershipStatus ::= ENUMERATED { + member, + not-member +} + + +COUNTvalue ::= SEQUENCE { + pDCP-SN PDCP-SN, + hFN HFN, + iE-Extensions ProtocolExtensionContainer { {COUNTvalue-ExtIEs} } OPTIONAL, + ... +} +COUNTvalue-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +COUNTValueExtended ::= SEQUENCE { + pDCP-SNExtended PDCP-SNExtended, + hFNModified HFNModified, + iE-Extensions ProtocolExtensionContainer { {COUNTValueExtended-ExtIEs} } OPTIONAL, + ... +} + +COUNTValueExtended-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +COUNTvaluePDCP-SNlength18 ::= SEQUENCE { + pDCP-SNlength18 PDCP-SNlength18, + hFNforPDCP-SNlength18 HFNforPDCP-SNlength18, + iE-Extensions ProtocolExtensionContainer { {COUNTvaluePDCP-SNlength18-ExtIEs} } OPTIONAL, + ... +} + +COUNTvaluePDCP-SNlength18-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Coverage-Level ::= ENUMERATED { + extendedcoverage, + ... +} + +CriticalityDiagnostics ::= SEQUENCE { + procedureCode ProcedureCode OPTIONAL, + triggeringMessage TriggeringMessage OPTIONAL, + procedureCriticality Criticality OPTIONAL, + iEsCriticalityDiagnostics CriticalityDiagnostics-IE-List OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{CriticalityDiagnostics-ExtIEs}} OPTIONAL, + ... +} + +CriticalityDiagnostics-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CriticalityDiagnostics-IE-List ::= SEQUENCE (SIZE (1.. maxnoofErrors)) OF CriticalityDiagnostics-IE-Item + +CriticalityDiagnostics-IE-Item ::= SEQUENCE { + iECriticality Criticality, + iE-ID ProtocolIE-ID, + typeOfError TypeOfError, + iE-Extensions ProtocolExtensionContainer {{CriticalityDiagnostics-IE-Item-ExtIEs}} OPTIONAL, + ... +} + +CriticalityDiagnostics-IE-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +-- D + +DAPSRequestInfo ::= SEQUENCE { + dAPSIndicator ENUMERATED {dAPS-HO-required, ...}, + iE-Extensions ProtocolExtensionContainer { {DAPSRequestInfo-ExtIEs} } OPTIONAL, + ... +} + +DAPSRequestInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +DAPSResponseInfoList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { { DAPSResponseInfoListIEs } } + +DAPSResponseInfoListIEs S1AP-PROTOCOL-IES ::= { + { ID id-DAPSResponseInfoItem CRITICALITY ignore TYPE DAPSResponseInfoItem PRESENCE mandatory}, + ... +} + +DAPSResponseInfoItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dAPSResponseInfo DAPSResponseInfo, + iE-Extensions ProtocolExtensionContainer { {DAPSResponseInfoItem-ExtIEs} } OPTIONAL, + ... +} + +DAPSResponseInfoItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +DAPSResponseInfo ::= SEQUENCE { + dapsresponseindicator ENUMERATED {dAPS-HO-accepted,dAPS-HO-not-accepted,...}, + iE-Extensions ProtocolExtensionContainer { { DAPSResponseInfo-ExtIEs} } OPTIONAL, + ... +} + +DAPSResponseInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +DataCodingScheme ::= BIT STRING (SIZE (8)) + +DataSize ::= INTEGER(1..4095, ...) + +DCN-ID ::= INTEGER (0..65535) + +ServedDCNs ::= SEQUENCE (SIZE(0..maxnoofDCNs)) OF ServedDCNsItem + +ServedDCNsItem ::= SEQUENCE { + dCN-ID DCN-ID, + relativeDCNCapacity RelativeMMECapacity, + iE-Extensions ProtocolExtensionContainer { {ServedDCNsItem-ExtIEs} } OPTIONAL, + ... +} + +ServedDCNsItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +DL-CP-SecurityInformation ::= SEQUENCE { + dl-NAS-MAC DL-NAS-MAC, + iE-Extensions ProtocolExtensionContainer { { DL-CP-SecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +DL-CP-SecurityInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +DL-Forwarding ::= ENUMERATED { + dL-Forwarding-proposed, + ... +} + +DL-NAS-MAC ::= BIT STRING (SIZE (16)) + +DLCOUNT-PDCP-SNlength ::= CHOICE { + dLCOUNTValuePDCP-SNlength12 COUNTvalue, + dLCOUNTValuePDCP-SNlength15 COUNTValueExtended, + dLCOUNTValuePDCP-SNlength18 COUNTvaluePDCP-SNlength18, + ... +} + +Direct-Forwarding-Path-Availability ::= ENUMERATED { + directPathAvailable, + ... +} + +Data-Forwarding-Not-Possible ::= ENUMERATED { + data-Forwarding-not-Possible, + ... +} + +DLNASPDUDeliveryAckRequest ::= ENUMERATED { + requested, + ... +} + +-- E + +EARFCN ::= INTEGER(0..maxEARFCN, ...) + +ECGIList ::= SEQUENCE (SIZE(1..maxnoofCellID)) OF EUTRAN-CGI + +PWSfailedECGIList ::= SEQUENCE (SIZE(1..maxnoofCellsineNB)) OF EUTRAN-CGI + +EDT-Session ::= ENUMERATED { + true, + ... +} + +EmergencyAreaIDList ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaID + +EmergencyAreaID ::= OCTET STRING (SIZE (3)) + +EmergencyAreaID-Broadcast ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaID-Broadcast-Item + +EmergencyAreaID-Broadcast-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + completedCellinEAI CompletedCellinEAI, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaID-Broadcast-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaID-Broadcast-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EmergencyAreaID-Cancelled ::= SEQUENCE (SIZE(1..maxnoofEmergencyAreaID)) OF EmergencyAreaID-Cancelled-Item + +EmergencyAreaID-Cancelled-Item ::= SEQUENCE { + emergencyAreaID EmergencyAreaID, + cancelledCellinEAI CancelledCellinEAI, + iE-Extensions ProtocolExtensionContainer { {EmergencyAreaID-Cancelled-Item-ExtIEs} } OPTIONAL, + ... +} + +EmergencyAreaID-Cancelled-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +CompletedCellinEAI ::= SEQUENCE (SIZE(1..maxnoofCellinEAI)) OF CompletedCellinEAI-Item + +CompletedCellinEAI-Item ::= SEQUENCE { + eCGI EUTRAN-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellinEAI-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellinEAI-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ECGI-List ::= SEQUENCE (SIZE(1..maxnoofCellsineNB)) OF EUTRAN-CGI + +EmergencyAreaIDListForRestart ::= SEQUENCE (SIZE(1..maxnoofRestartEmergencyAreaIDs)) OF EmergencyAreaID + +EmergencyIndicator ::= ENUMERATED { + true, + ... +} + +ENB-EarlyStatusTransfer-TransparentContainer ::= SEQUENCE { + bearers-SubjectToEarlyStatusTransferList Bearers-SubjectToEarlyStatusTransferList, + iE-Extensions ProtocolExtensionContainer { {ENB-EarlyStatusTransfer-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +ENB-EarlyStatusTransfer-TransparentContainer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ENB-ID ::= CHOICE { + macroENB-ID BIT STRING (SIZE(20)), + homeENB-ID BIT STRING (SIZE(28)), + ... , + short-macroENB-ID BIT STRING (SIZE(18)), + long-macroENB-ID BIT STRING (SIZE(21)) +} + +En-gNB-ID ::= BIT STRING (SIZE(22..32, ...)) + +GERAN-Cell-ID ::= SEQUENCE { + lAI LAI, + rAC RAC, + cI CI, + iE-Extensions ProtocolExtensionContainer { { GERAN-Cell-ID-ExtIEs} } OPTIONAL, + ... +} + +GERAN-Cell-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Global-ENB-ID ::= SEQUENCE { + pLMNidentity PLMNidentity, + eNB-ID ENB-ID, + iE-Extensions ProtocolExtensionContainer { {GlobalENB-ID-ExtIEs} } OPTIONAL, + ... +} + +GlobalENB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Global-en-gNB-ID ::= SEQUENCE { + pLMNidentity PLMNidentity, + en-gNB-ID En-gNB-ID, + iE-Extensions ProtocolExtensionContainer { {Global-en-gNB-ID-ExtIEs} } OPTIONAL, + ... +} + +Global-en-gNB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +GUMMEIList::= SEQUENCE (SIZE (1.. maxnoofMMECs)) OF GUMMEI + +ENB-StatusTransfer-TransparentContainer ::= SEQUENCE { + bearers-SubjectToStatusTransferList Bearers-SubjectToStatusTransferList, + iE-Extensions ProtocolExtensionContainer { {ENB-StatusTransfer-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +ENB-StatusTransfer-TransparentContainer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ENB-UE-S1AP-ID ::= INTEGER (0..16777215) + +ENBname ::= PrintableString (SIZE (1..150,...)) + +ENBX2TLAs ::= SEQUENCE (SIZE(1.. maxnoofeNBX2TLAs)) OF TransportLayerAddress + +EncryptionAlgorithms ::= BIT STRING (SIZE (16,...)) + +EN-DCSONConfigurationTransfer ::= SEQUENCE { + transfertype EN-DCSONTransferType, + sONInformation SONInformation, + x2TNLConfigInfo X2TNLConfigurationInfo OPTIONAL, + -- This IE shall be present if the SON Information IE contains the SON Information Request IE and the SON Information Request IE is set to X2TNL Configuration Info -- + iE-Extensions ProtocolExtensionContainer { {EN-DCSONConfigurationTransfer-ExtIEs} } OPTIONAL, +... +} + +EN-DCSONConfigurationTransfer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EN-DCSONTransferType ::= CHOICE { + request EN-DCTransferTypeRequest, + reply EN-DCTransferTypeReply, + ... +} + +EN-DCTransferTypeRequest ::= SEQUENCE { + sourceeNB EN-DCSONeNBIdentification, + targetengNB EN-DCSONengNBIdentification, + targeteNB EN-DCSONeNBIdentification OPTIONAL, + associatedTAI TAI OPTIONAL, + broadcast5GSTAI FiveGSTAI OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {EN-DCTransferTypeRequest-ExtIEs} } OPTIONAL, +... +} + +EN-DCTransferTypeRequest-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EN-DCTransferTypeReply ::= SEQUENCE { + sourceengNB EN-DCSONengNBIdentification, + targeteNB EN-DCSONeNBIdentification, + iE-Extensions ProtocolExtensionContainer { {EN-DCTransferTypeReply-ExtIEs} } OPTIONAL, +... +} + +EN-DCTransferTypeReply-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EN-DCSONeNBIdentification ::= SEQUENCE { + globaleNBID Global-ENB-ID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { {EN-DCSONeNBIdentification-ExtIEs} } OPTIONAL, +... +} + +EN-DCSONeNBIdentification-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EN-DCSONengNBIdentification ::= SEQUENCE { + globalengNBID Global-en-gNB-ID, + selectedTAI TAI, + iE-Extensions ProtocolExtensionContainer { {EN-DCSONengNBIdentification-ExtIEs} } OPTIONAL, +... +} + +EN-DCSONengNBIdentification-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EndIndication ::= ENUMERATED { + no-further-data, + further-data-exists, + ... +} + +EnhancedCoverageRestricted ::= ENUMERATED { + restricted, + ... +} + +CE-ModeBRestricted ::= ENUMERATED { + restricted, + not-restricted, + ... +} + +EPLMNs ::= SEQUENCE (SIZE(1..maxnoofEPLMNs)) OF PLMNidentity +EventType ::= ENUMERATED { + direct, + change-of-serve-cell, + stop-change-of-serve-cell, + ... +} + +E-RAB-ID ::= INTEGER (0..15, ...) + +E-RABInformationList ::= SEQUENCE (SIZE (1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { { E-RABInformationListIEs } } + +E-RABInformationListIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABInformationListItem CRITICALITY ignore TYPE E-RABInformationListItem PRESENCE mandatory }, + ... +} + +E-RABInformationListItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + dL-Forwarding DL-Forwarding OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABInformationListItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABInformationListItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-DAPSRequestInfo CRITICALITY ignore EXTENSION DAPSRequestInfo PRESENCE optional }, + ... +} + +E-RABList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {E-RABItemIEs} } + +E-RABItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABItem CRITICALITY ignore TYPE E-RABItem PRESENCE mandatory }, + ... +} + +E-RABItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + cause Cause, + iE-Extensions ProtocolExtensionContainer { {E-RABItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +E-RABLevelQoSParameters ::= SEQUENCE { + qCI QCI, + allocationRetentionPriority AllocationAndRetentionPriority, + gbrQosInformation GBR-QosInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {E-RABQoSParameters-ExtIEs} } OPTIONAL, + ... +} + +E-RABUsageReportList ::= SEQUENCE (SIZE(1..maxnooftimeperiods)) OF ProtocolIE-SingleContainer { {E-RABUsageReportItemIEs} } + +E-RABUsageReportItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-E-RABUsageReportItem CRITICALITY ignore TYPE E-RABUsageReportItem PRESENCE mandatory }, + ... +} + +E-RABUsageReportItem ::= SEQUENCE { + startTimestamp OCTET STRING (SIZE(4)), + endTimestamp OCTET STRING (SIZE(4)), + usageCountUL INTEGER (0..18446744073709551615), + usageCountDL INTEGER (0..18446744073709551615), + iE-Extensions ProtocolExtensionContainer { { E-RABUsageReportItem-ExtIEs} } OPTIONAL, + ... +} + +E-RABUsageReportItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +E-RABQoSParameters-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extended for introduction of downlink and uplink packet loss rate for enhanced Voice performance - + { ID id-DownlinkPacketLossRate CRITICALITY ignore EXTENSION Packet-LossRate PRESENCE optional}| + { ID id-UplinkPacketLossRate CRITICALITY ignore EXTENSION Packet-LossRate PRESENCE optional}, + ... +} + +Ethernet-Type ::= ENUMERATED { + true, + ... +} + +EUTRAN-CGI ::= SEQUENCE { + pLMNidentity PLMNidentity, + cell-ID CellIdentity, + iE-Extensions ProtocolExtensionContainer { {EUTRAN-CGI-ExtIEs} } OPTIONAL, + ... +} + +EUTRAN-CGI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +EUTRANRoundTripDelayEstimationInfo ::= INTEGER (0..2047) + +ExpectedUEBehaviour ::= SEQUENCE { + expectedActivity ExpectedUEActivityBehaviour OPTIONAL, + expectedHOInterval ExpectedHOInterval OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ExpectedUEBehaviour-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEBehaviour-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ExpectedUEActivityBehaviour ::= SEQUENCE { + expectedActivityPeriod ExpectedActivityPeriod OPTIONAL, + expectedIdlePeriod ExpectedIdlePeriod OPTIONAL, + sourceofUEActivityBehaviourInformation SourceOfUEActivityBehaviourInformation OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ExpectedUEActivityBehaviour-ExtIEs} } OPTIONAL, + ... +} + +ExpectedUEActivityBehaviour-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ExpectedActivityPeriod ::= INTEGER (1..30|40|50|60|80|100|120|150|180|181,...) + +ExpectedIdlePeriod ::= INTEGER (1..30|40|50|60|80|100|120|150|180|181,...) + +SourceOfUEActivityBehaviourInformation ::= ENUMERATED { + subscription-information, + statistics, + ... +} + +ExpectedHOInterval ::= ENUMERATED { + sec15, sec30, sec60, sec90, sec120, sec180, long-time, + ... +} + +ExtendedBitRate ::= INTEGER (10000000001..4000000000000, ...) + +ExtendedRNC-ID ::= INTEGER (4096..65535) + +ExtendedRepetitionPeriod ::= INTEGER (4096..131071) + +Extended-UEIdentityIndexValue ::= BIT STRING (SIZE (14)) + +-- F + +FiveGSTAC ::= OCTET STRING (SIZE (3)) + +FiveGSTAI ::= SEQUENCE { + pLMNidentity PLMNidentity, + fiveGSTAC FiveGSTAC, + iE-Extensions ProtocolExtensionContainer { {FiveGSTAI-ExtIEs} } OPTIONAL, + ... +} + +FiveGSTAI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +FiveQI ::= INTEGER (0..255, ...) + +ForbiddenInterRATs ::= ENUMERATED { + all, + geran, + utran, + cdma2000, + ..., + geranandutran, + cdma2000andutran + +} + +ForbiddenTAs ::= SEQUENCE (SIZE(1.. maxnoofEPLMNsPlusOne)) OF ForbiddenTAs-Item + +ForbiddenTAs-Item ::= SEQUENCE { + pLMN-Identity PLMNidentity, + forbiddenTACs ForbiddenTACs, + iE-Extensions ProtocolExtensionContainer { {ForbiddenTAs-Item-ExtIEs} } OPTIONAL, + ... +} + +ForbiddenTAs-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ForbiddenTACs ::= SEQUENCE (SIZE(1..maxnoofForbTACs)) OF TAC + +ForbiddenLAs ::= SEQUENCE (SIZE(1..maxnoofEPLMNsPlusOne)) OF ForbiddenLAs-Item + +ForbiddenLAs-Item ::= SEQUENCE { + pLMN-Identity PLMNidentity, + forbiddenLACs ForbiddenLACs, + iE-Extensions ProtocolExtensionContainer { {ForbiddenLAs-Item-ExtIEs} } OPTIONAL, + ... +} + +ForbiddenLAs-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ForbiddenLACs ::= SEQUENCE (SIZE(1..maxnoofForbLACs)) OF LAC + +-- G + +GBR-QosInformation ::= SEQUENCE { + e-RAB-MaximumBitrateDL BitRate, + e-RAB-MaximumBitrateUL BitRate, + e-RAB-GuaranteedBitrateDL BitRate, + e-RAB-GuaranteedBitrateUL BitRate, + iE-Extensions ProtocolExtensionContainer { { GBR-QosInformation-ExtIEs} } OPTIONAL, + ... +} + +GBR-QosInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for maximum bitrate > 10G bps -- + { ID id-extended-e-RAB-MaximumBitrateDL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}| + { ID id-extended-e-RAB-MaximumBitrateUL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}| + { ID id-extended-e-RAB-GuaranteedBitrateDL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}| + { ID id-extended-e-RAB-GuaranteedBitrateUL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}, + ...} + + +GTP-TEID ::= OCTET STRING (SIZE (4)) + +GUMMEI ::= SEQUENCE { + pLMN-Identity PLMNidentity, + mME-Group-ID MME-Group-ID, + mME-Code MME-Code, + iE-Extensions ProtocolExtensionContainer { {GUMMEI-ExtIEs} } OPTIONAL, + ... +} + +GUMMEI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +GUMMEIType ::= ENUMERATED { + native, + mapped, + ..., + mappedFrom5G +} + +GWContextReleaseIndication ::= ENUMERATED { + true, + ... +} + +-- H + +HandoverFlag ::= ENUMERATED { + handoverPreparation, + ... +} + + +HandoverRestrictionList ::= SEQUENCE { + servingPLMN PLMNidentity, + equivalentPLMNs EPLMNs OPTIONAL, + forbiddenTAs ForbiddenTAs OPTIONAL, + forbiddenLAs ForbiddenLAs OPTIONAL, + forbiddenInterRATs ForbiddenInterRATs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {HandoverRestrictionList-ExtIEs} } OPTIONAL, + ... +} + +HandoverRestrictionList-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-NRrestrictioninEPSasSecondaryRAT CRITICALITY ignore EXTENSION NRrestrictioninEPSasSecondaryRAT PRESENCE optional}| + { ID id-UnlicensedSpectrumRestriction CRITICALITY ignore EXTENSION UnlicensedSpectrumRestriction PRESENCE optional}| + { ID id-CNTypeRestrictions CRITICALITY ignore EXTENSION CNTypeRestrictions PRESENCE optional}| + { ID id-NRrestrictionin5GS CRITICALITY ignore EXTENSION NRrestrictionin5GS PRESENCE optional}| + { ID id-LastNG-RANPLMNIdentity CRITICALITY ignore EXTENSION PLMNidentity PRESENCE optional}, + ... +} + +HandoverType ::= ENUMERATED { + intralte, + ltetoutran, + ltetogeran, + utrantolte, + gerantolte, + ..., + eps-to-5gs, + fivegs-to-eps +} + +HFN ::= INTEGER (0..1048575) + +HFNModified ::= INTEGER (0..131071) + +HFNforPDCP-SNlength18 ::= INTEGER (0..16383) + +-- I + +Masked-IMEISV ::= BIT STRING (SIZE (64)) + +ImmediateMDT ::= SEQUENCE { + measurementsToActivate MeasurementsToActivate, + m1reportingTrigger M1ReportingTrigger, + m1thresholdeventA2 M1ThresholdEventA2 OPTIONAL, +-- Included in case of event-triggered, or event-triggered periodic reporting for measurement M1 + m1periodicReporting M1PeriodicReporting OPTIONAL, +-- Included in case of periodic or event-triggered periodic reporting + iE-Extensions ProtocolExtensionContainer { { ImmediateMDT-ExtIEs} } OPTIONAL, + ... +} + +ImmediateMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-M3Configuration CRITICALITY ignore EXTENSION M3Configuration PRESENCE conditional}| + { ID id-M4Configuration CRITICALITY ignore EXTENSION M4Configuration PRESENCE conditional}| + { ID id-M5Configuration CRITICALITY ignore EXTENSION M5Configuration PRESENCE conditional}| + { ID id-MDT-Location-Info CRITICALITY ignore EXTENSION MDT-Location-Info PRESENCE optional}| + { ID id-M6Configuration CRITICALITY ignore EXTENSION M6Configuration PRESENCE conditional}| + { ID id-M7Configuration CRITICALITY ignore EXTENSION M7Configuration PRESENCE conditional}| + { ID id-BluetoothMeasurementConfiguration CRITICALITY ignore EXTENSION BluetoothMeasurementConfiguration PRESENCE optional}| + { ID id-WLANMeasurementConfiguration CRITICALITY ignore EXTENSION WLANMeasurementConfiguration PRESENCE optional}, + ... +} + +IMSI ::= OCTET STRING (SIZE (3..8)) + +InformationOnRecommendedCellsAndENBsForPaging ::= SEQUENCE { + recommendedCellsForPaging RecommendedCellsForPaging, + recommendENBsForPaging RecommendedENBsForPaging, + iE-Extensions ProtocolExtensionContainer { { InformationOnRecommendedCellsAndENBsForPaging-ExtIEs} } OPTIONAL, + ... +} + +InformationOnRecommendedCellsAndENBsForPaging-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +IntegrityProtectionAlgorithms ::= BIT STRING (SIZE (16,...)) + +IntendedNumberOfPagingAttempts ::= INTEGER (1..16, ...) + +InterfacesToTrace ::= BIT STRING (SIZE (8)) + +IntersystemMeasurementConfiguration ::= SEQUENCE { + rSRP INTEGER (0.. 127) OPTIONAL, + rSRQ INTEGER (0.. 127) OPTIONAL, + sINR INTEGER (0.. 127) OPTIONAL, + interSystemMeasurementParameters InterSystemMeasurementParameters, + iE-Extensions ProtocolExtensionContainer { { IntersystemMeasurementConfiguration-ExtIEs} } OPTIONAL, + ... +} +IntersystemMeasurementConfiguration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +InterSystemMeasurementParameters ::= SEQUENCE { + measurementDuration INTEGER (1..100), + interSystemMeasurementList InterSystemMeasurementList OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { InterSystemMeasurementParameters-ExtIEs} } OPTIONAL, + ... +} +InterSystemMeasurementParameters-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +InterSystemMeasurementList ::= SEQUENCE (SIZE(1.. maxnooffrequencies)) OF InterSystemMeasurementItem + +InterSystemMeasurementItem ::= SEQUENCE { + freqBandIndicatorNR INTEGER (1..1024), + sSBfrequencies INTEGER (0..maxNARFCN), + subcarrierSpacingSSB ENUMERATED {kHz15, kHz30, kHz60, kHz120, kHz240, ...}, + maxRSIndexCellQual INTEGER (1..maxRS-IndexCellQual) OPTIONAL, + sMTC OCTET STRING OPTIONAL, + threshRS-Index-r15 OCTET STRING OPTIONAL, + sSBToMeasure OCTET STRING OPTIONAL, + sSRSSIMeasurement OCTET STRING OPTIONAL, + quantityConfigNR-R15 OCTET STRING OPTIONAL, + blackCellsToAddModList OCTET STRING OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { InterSystemMeasurementItem-ExtIEs} } OPTIONAL +} + +InterSystemMeasurementItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +IntersystemSONConfigurationTransfer ::= OCTET STRING + +IMSvoiceEPSfallbackfrom5G ::= ENUMERATED { + true, + ... +} + +IAB-Authorized ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +IAB-Node-Indication ::= ENUMERATED { + true, + ... +} + +IAB-Supported ::= ENUMERATED { + true, + ... +} + +-- J +-- K + +KillAllWarningMessages ::= ENUMERATED {true} + +-- L + + +LAC ::= OCTET STRING (SIZE (2)) + +LAI ::= SEQUENCE { + pLMNidentity PLMNidentity, + lAC LAC, + iE-Extensions ProtocolExtensionContainer { {LAI-ExtIEs} } OPTIONAL, + ... +} + +LAI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +LastVisitedCell-Item ::= CHOICE { + e-UTRAN-Cell LastVisitedEUTRANCellInformation, + uTRAN-Cell LastVisitedUTRANCellInformation, + gERAN-Cell LastVisitedGERANCellInformation, + ..., + nG-RAN-Cell LastVisitedNGRANCellInformation +} +LastVisitedEUTRANCellInformation ::= SEQUENCE { + global-Cell-ID EUTRAN-CGI, + cellType CellType, + time-UE-StayedInCell Time-UE-StayedInCell, + iE-Extensions ProtocolExtensionContainer { { LastVisitedEUTRANCellInformation-ExtIEs} } OPTIONAL, + ... +} +LastVisitedEUTRANCellInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Rel-11 to support enhanced granularity for time UE stayed in cell -- + { ID id-Time-UE-StayedInCell-EnhancedGranularity CRITICALITY ignore EXTENSION Time-UE-StayedInCell-EnhancedGranularity PRESENCE optional}| + { ID id-HO-Cause CRITICALITY ignore EXTENSION Cause PRESENCE optional}, + ... +} + +LastVisitedNGRANCellInformation ::= OCTET STRING + +LastVisitedUTRANCellInformation ::= OCTET STRING + +LastVisitedGERANCellInformation ::= CHOICE { + undefined NULL, + ... +} + +L3-Information ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +LPPa-PDU ::= OCTET STRING + +LHN-ID ::= OCTET STRING(SIZE (32..256)) + +Links-to-log ::= ENUMERATED {uplink, downlink, both-uplink-and-downlink, ...} + +ListeningSubframePattern ::= SEQUENCE { + pattern-period ENUMERATED {ms1280, ms2560, ms5120, ms10240, ...}, + pattern-offset INTEGER (0..10239, ...), + iE-Extensions ProtocolExtensionContainer { { ListeningSubframePattern-ExtIEs} } OPTIONAL, + ... +} + +ListeningSubframePattern-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +... +} + +LoggedMDT ::= SEQUENCE { + loggingInterval LoggingInterval, + loggingDuration LoggingDuration, + iE-Extensions ProtocolExtensionContainer { {LoggedMDT-ExtIEs} } OPTIONAL, + ... +} + +LoggedMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-BluetoothMeasurementConfiguration CRITICALITY ignore EXTENSION BluetoothMeasurementConfiguration PRESENCE optional}| + { ID id-WLANMeasurementConfiguration CRITICALITY ignore EXTENSION WLANMeasurementConfiguration PRESENCE optional}, +... +} + +LoggingInterval ::= ENUMERATED {ms128, ms256, ms512, ms1024, ms2048, ms3072, ms4096, ms6144} + +LoggingDuration ::= ENUMERATED {m10, m20, m40, m60, m90, m120} + +LoggedMBSFNMDT ::= SEQUENCE { + loggingInterval LoggingInterval, + loggingDuration LoggingDuration, + mBSFN-ResultToLog MBSFN-ResultToLog OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { LoggedMBSFNMDT-ExtIEs } } OPTIONAL, + ... +} + +LoggedMBSFNMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +LTE-M-Indication ::= ENUMERATED {lte-m, ... } + +-- M + +M3Configuration ::= SEQUENCE { + m3period M3period, + iE-Extensions ProtocolExtensionContainer { { M3Configuration-ExtIEs} } OPTIONAL, + ... +} + +M3Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M3period ::= ENUMERATED {ms100, ms1000, ms10000, ...,ms1024, ms1280, ms2048, ms2560, ms5120, ms10240, min1 } + +M4Configuration ::= SEQUENCE { + m4period M4period, + m4-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M4Configuration-ExtIEs} } OPTIONAL, + ... +} + +M4Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M4period ::= ENUMERATED {ms1024, ms2048, ms5120, ms10240, min1, ... } + +M5Configuration ::= SEQUENCE { + m5period M5period, + m5-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M5Configuration-ExtIEs} } OPTIONAL, + ... +} + +M5Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M5period ::= ENUMERATED {ms1024, ms2048, ms5120, ms10240, min1, ... } + +M6Configuration ::= SEQUENCE { + m6report-Interval M6report-Interval, + m6delay-threshold M6delay-threshold OPTIONAL, +-- This IE shall be present if the M6 Links to log IE is set to uplink or to both-uplink-and-downlink -- + m6-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M6Configuration-ExtIEs} } OPTIONAL, + ... +} + +M6Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M6report-Interval ::= ENUMERATED { ms1024, ms2048, ms5120, ms10240, ... } + +M6delay-threshold ::= ENUMERATED { ms30, ms40, ms50, ms60, ms70, ms80, ms90, ms100, ms150, ms300, ms500, ms750, ... } + +M7Configuration ::= SEQUENCE { + m7period M7period, + m7-links-to-log Links-to-log, + iE-Extensions ProtocolExtensionContainer { { M7Configuration-ExtIEs} } OPTIONAL, + ... +} + +M7Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +M7period ::= INTEGER(1..60, ...) + +MDT-Activation ::= ENUMERATED { + immediate-MDT-only, + immediate-MDT-and-Trace, + logged-MDT-only, + ..., + logged-MBSFN-MDT +} + +MDT-Location-Info ::= BIT STRING (SIZE (8)) + +MDT-Configuration ::= SEQUENCE { + mdt-Activation MDT-Activation, + areaScopeOfMDT AreaScopeOfMDT, + mDTMode MDTMode, + iE-Extensions ProtocolExtensionContainer { { MDT-Configuration-ExtIEs} } OPTIONAL, + ... +} +MDT-Configuration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-SignallingBasedMDTPLMNList CRITICALITY ignore EXTENSION MDTPLMNList PRESENCE optional }, + ... +} + +ManagementBasedMDTAllowed ::= ENUMERATED {allowed, ...} + +MBSFN-ResultToLog ::= SEQUENCE (SIZE(1..maxnoofMBSFNAreaMDT)) OF MBSFN-ResultToLogInfo + +MBSFN-ResultToLogInfo ::= SEQUENCE { + mBSFN-AreaId INTEGER (0..255) OPTIONAL, + carrierFreq EARFCN, + iE-Extensions ProtocolExtensionContainer { { MBSFN-ResultToLogInfo-ExtIEs} } OPTIONAL, + ... +} + +MBSFN-ResultToLogInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +MDTPLMNList ::= SEQUENCE (SIZE(1..maxnoofMDTPLMNs)) OF PLMNidentity + +PrivacyIndicator ::= ENUMERATED { + immediate-MDT, + logged-MDT, + ... +} + +MDTMode ::= CHOICE { + immediateMDT ImmediateMDT, + loggedMDT LoggedMDT, + ..., + mDTMode-Extension MDTMode-Extension +} + +MDTMode-Extension ::= ProtocolIE-SingleContainer {{ MDTMode-ExtensionIE }} + +MDTMode-ExtensionIE S1AP-PROTOCOL-IES ::= { + { ID id-LoggedMBSFNMDT CRITICALITY ignore TYPE LoggedMBSFNMDT PRESENCE mandatory} +} + +MeasurementsToActivate ::= BIT STRING (SIZE (8)) + +MeasurementThresholdA2 ::= CHOICE { + threshold-RSRP Threshold-RSRP, + threshold-RSRQ Threshold-RSRQ, + ... +} + +MessageIdentifier ::= BIT STRING (SIZE (16)) + +MobilityInformation ::= BIT STRING (SIZE(32)) + +MMEname ::= PrintableString (SIZE (1..150,...)) + +MMEPagingTarget ::= CHOICE { + global-ENB-ID Global-ENB-ID, + tAI TAI, + ... +} + +MMERelaySupportIndicator ::= ENUMERATED {true, ...} + +MME-Group-ID ::= OCTET STRING (SIZE (2)) + +MME-Code ::= OCTET STRING (SIZE (1)) + +MME-UE-S1AP-ID ::= INTEGER (0..4294967295) +M-TMSI ::= OCTET STRING (SIZE (4)) + +MSClassmark2 ::= OCTET STRING +MSClassmark3 ::= OCTET STRING + +MutingAvailabilityIndication ::= ENUMERATED { + available, + unavailable, + ... +} + + +MutingPatternInformation ::= SEQUENCE { + muting-pattern-period ENUMERATED {ms0, ms1280, ms2560, ms5120, ms10240, ...}, + muting-pattern-offset INTEGER (0..10239, ...) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {MutingPatternInformation-ExtIEs} } OPTIONAL, + ... +} + +MutingPatternInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +MDT-ConfigurationNR ::= OCTET STRING + +-- N + +NAS-PDU ::= OCTET STRING + +NASSecurityParametersfromE-UTRAN ::= OCTET STRING + +NASSecurityParameterstoE-UTRAN ::= OCTET STRING + +NB-IoT-DefaultPagingDRX ::= ENUMERATED { + v128, + v256, + v512, + v1024, + ... + } + +NB-IoT-PagingDRX ::= ENUMERATED { v32, v64, v128, v256, v512, v1024,...} + +NB-IoT-Paging-eDRXInformation ::= SEQUENCE { + nB-IoT-paging-eDRX-Cycle NB-IoT-Paging-eDRX-Cycle, + nB-IoT-pagingTimeWindow NB-IoT-PagingTimeWindow OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { NB-IoT-Paging-eDRXInformation-ExtIEs} } OPTIONAL, + ... +} + +NB-IoT-Paging-eDRXInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +NB-IoT-Paging-eDRX-Cycle ::= ENUMERATED{hf2, hf4, hf6, hf8, hf10, hf12, hf14, hf16, hf32, hf64, hf128, hf256, hf512, hf1024, ...} + +NB-IoT-PagingTimeWindow ::= ENUMERATED{s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15, s16, ...} + +NB-IoT-RLF-Report-Container ::= OCTET STRING + +NB-IoT-UEIdentityIndexValue ::= BIT STRING (SIZE (12)) + +NextPagingAreaScope ::= ENUMERATED { + same, + changed, + ... +} + +NotifySourceeNB ::= ENUMERATED { + notifySource, + ... +} + +NRCellIdentity ::= BIT STRING (SIZE(36)) + +NR-CGI ::= SEQUENCE { + pLMNIdentity PLMNidentity, + nRCellIdentity NRCellIdentity, + iE-Extensions ProtocolExtensionContainer { {NR-CGI-ExtIEs} } OPTIONAL, + ... +} + +NR-CGI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +NRencryptionAlgorithms ::= BIT STRING (SIZE (16,...)) +NRintegrityProtectionAlgorithms ::= BIT STRING (SIZE (16,...)) + +NRrestrictioninEPSasSecondaryRAT ::= ENUMERATED { + nRrestrictedinEPSasSecondaryRAT, + ... +} + +NRrestrictionin5GS ::= ENUMERATED { + nRrestrictedin5GS, + ... +} + +NRUESecurityCapabilities ::= SEQUENCE { + nRencryptionAlgorithms NRencryptionAlgorithms, + nRintegrityProtectionAlgorithms NRintegrityProtectionAlgorithms, + iE-Extensions ProtocolExtensionContainer { { NRUESecurityCapabilities-ExtIEs} } OPTIONAL, +... +} + +NRUESecurityCapabilities-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +NumberofBroadcastRequest ::= INTEGER (0..65535) + +NumberOfBroadcasts ::= INTEGER (0..65535) + +NRV2XServicesAuthorized ::= SEQUENCE { + vehicleUE VehicleUE OPTIONAL, + pedestrianUE PedestrianUE OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {NRV2XServicesAuthorized-ExtIEs} } OPTIONAL, + ... +} + +NRV2XServicesAuthorized-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +NRUESidelinkAggregateMaximumBitrate ::= SEQUENCE { + uEaggregateMaximumBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { {NRUESidelinkAggregateMaximumBitrate-ExtIEs} } OPTIONAL, + ... +} + +NRUESidelinkAggregateMaximumBitrate-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- O +OldBSS-ToNewBSS-Information ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +OverloadAction ::= ENUMERATED { + reject-non-emergency-mo-dt, + reject-rrc-cr-signalling, + permit-emergency-sessions-and-mobile-terminated-services-only, + ..., + permit-high-priority-sessions-and-mobile-terminated-services-only, + reject-delay-tolerant-access, + permit-high-priority-sessions-and-exception-reporting-and-mobile-terminated-services-only, + not-accept-mo-data-or-delay-tolerant-access-from-CP-CIoT + +} + +OverloadResponse ::= CHOICE { + overloadAction OverloadAction, + ... +} + + +-- P + +Packet-LossRate ::= INTEGER(0..1000) + +PagingAttemptInformation ::= SEQUENCE { + pagingAttemptCount PagingAttemptCount, + intendedNumberOfPagingAttempts IntendedNumberOfPagingAttempts, + nextPagingAreaScope NextPagingAreaScope OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PagingAttemptInformation-ExtIEs} } OPTIONAL, + ... +} + +PagingAttemptInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +PagingAttemptCount ::= INTEGER (1..16, ...) + +Paging-eDRXInformation ::= SEQUENCE { + paging-eDRX-Cycle Paging-eDRX-Cycle, + pagingTimeWindow PagingTimeWindow OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { Paging-eDRXInformation-ExtIEs} } OPTIONAL, + ... +} + +Paging-eDRXInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Paging-eDRX-Cycle ::= ENUMERATED{hfhalf, hf1, hf2, hf4, hf6, hf8, hf10, hf12, hf14, hf16, hf32, hf64, hf128, hf256, ...} + +PagingTimeWindow ::= ENUMERATED{s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15, s16, ...} + +PagingDRX ::= ENUMERATED { + v32, + v64, + v128, + v256, + ... + } + +PagingPriority ::= ENUMERATED { + priolevel1, + priolevel2, + priolevel3, + priolevel4, + priolevel5, + priolevel6, + priolevel7, + priolevel8, + ... +} + +PagingProbabilityInformation ::= ENUMERATED {p00, p05, p10, p15, p20, p25, p30, p35, p40, p45, p50, p55, p60, p65, p70, p75, p80, p85, p90, p95, p100, ...} + +PC5QoSParameters ::= SEQUENCE { + pc5QoSFlowList PC5QoSFlowList, + pc5LinkAggregatedBitRates BitRate OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PC5QoSParameters-ExtIEs} } OPTIONAL, + ... +} + +PC5QoSParameters-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +PC5QoSFlowList ::= SEQUENCE (SIZE(1..maxnoofPC5QoSFlows)) OF PC5QoSFlowItem + +PC5QoSFlowItem::= SEQUENCE { + pQI FiveQI, + pc5FlowBitRates PC5FlowBitRates OPTIONAL, + range Range OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { PC5QoSFlowItem-ExtIEs} } OPTIONAL, + ... +} + +PC5QoSFlowItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +PC5FlowBitRates ::= SEQUENCE { + guaranteedFlowBitRate BitRate, + maximumFlowBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { { PC5FlowBitRates-ExtIEs} } OPTIONAL, + ... +} + +PC5FlowBitRates-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +... +} +PDCP-SN ::= INTEGER (0..4095) + +PDCP-SNExtended ::= INTEGER (0..32767) + +PDCP-SNlength18 ::= INTEGER (0..262143) + +PendingDataIndication ::= ENUMERATED { + true, + ... +} + +M1PeriodicReporting ::= SEQUENCE { + reportInterval ReportIntervalMDT, + reportAmount ReportAmountMDT, + iE-Extensions ProtocolExtensionContainer { { M1PeriodicReporting-ExtIEs} } OPTIONAL, + ... +} + +M1PeriodicReporting-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +PLMNidentity ::= TBCD-STRING + +PLMNAreaBasedQMC ::= SEQUENCE { + plmnListforQMC PLMNListforQMC, + iE-Extensions ProtocolExtensionContainer { {PLMNAreaBasedQMC-ExtIEs} } OPTIONAL, + ... +} + +PLMNAreaBasedQMC-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +PLMNListforQMC ::= SEQUENCE (SIZE(1..maxnoofPLMNforQMC)) OF PLMNidentity + +Port-Number ::= OCTET STRING (SIZE (2)) + +Pre-emptionCapability ::= ENUMERATED { + shall-not-trigger-pre-emption, + may-trigger-pre-emption +} + +Pre-emptionVulnerability ::= ENUMERATED { + not-pre-emptable, + pre-emptable +} + +PriorityLevel ::= INTEGER { spare (0), highest (1), lowest (14), no-priority (15) } (0..15) + +ProSeAuthorized ::= SEQUENCE { + proSeDirectDiscovery ProSeDirectDiscovery OPTIONAL, + proSeDirectCommunication ProSeDirectCommunication OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {ProSeAuthorized-ExtIEs} } OPTIONAL, + ... +} + +ProSeAuthorized-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-ProSeUEtoNetworkRelaying CRITICALITY ignore EXTENSION ProSeUEtoNetworkRelaying PRESENCE optional}, + ... +} + +ProSeDirectDiscovery ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +ProSeUEtoNetworkRelaying ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +ProSeDirectCommunication ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +PS-ServiceNotAvailable ::= ENUMERATED { + ps-service-not-available, + ... +} + +PSCellInformation ::= SEQUENCE { + nCGI NR-CGI, + iE-Extensions ProtocolExtensionContainer { { PSCellInformation-ExtIEs} } OPTIONAL, + ... +} + +PSCellInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- Q + +QCI ::= INTEGER (0..255) + +-- R + +RAN-UE-NGAP-ID ::= INTEGER (0..4294967295) + +Range ::= ENUMERATED {m50, m80, m180, m200, m350, m400, m500, m700, m1000, ...} + +ReceiveStatusofULPDCPSDUs ::= BIT STRING (SIZE(4096)) + +ReceiveStatusOfULPDCPSDUsExtended ::= BIT STRING (SIZE(1..16384)) + +ReceiveStatusOfULPDCPSDUsPDCP-SNlength18 ::= BIT STRING (SIZE(1..131072)) + +RecommendedCellsForPaging ::= SEQUENCE { + recommendedCellList RecommendedCellList, + iE-Extensions ProtocolExtensionContainer { { RecommendedCellsForPaging-ExtIEs} } OPTIONAL, + ... +} + +RecommendedCellsForPaging-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedCellList ::= SEQUENCE (SIZE(1.. maxnoofRecommendedCells)) OF ProtocolIE-SingleContainer { { RecommendedCellItemIEs } } + +RecommendedCellItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-RecommendedCellItem CRITICALITY ignore TYPE RecommendedCellItem PRESENCE mandatory }, + ... +} + +RecommendedCellItem::= SEQUENCE { + eUTRAN-CGI EUTRAN-CGI, + timeStayedInCell INTEGER (0..4095) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { RecommendedCellsForPagingItem-ExtIEs} } OPTIONAL, + ... +} + +RecommendedCellsForPagingItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedENBsForPaging ::= SEQUENCE { + recommendedENBList RecommendedENBList, + iE-Extensions ProtocolExtensionContainer { { RecommendedENBsForPaging-ExtIEs} } OPTIONAL, + ... +} + +RecommendedENBsForPaging-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RecommendedENBList::= SEQUENCE (SIZE(1.. maxnoofRecommendedENBs)) OF ProtocolIE-SingleContainer { { RecommendedENBItemIEs } } + +RecommendedENBItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-RecommendedENBItem CRITICALITY ignore TYPE RecommendedENBItem PRESENCE mandatory }, + ... +} + +RecommendedENBItem ::= SEQUENCE { + mMEPagingTarget MMEPagingTarget, + iE-Extensions ProtocolExtensionContainer { { RecommendedENBItem-ExtIEs} } OPTIONAL, + ... +} + +RecommendedENBItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RelativeMMECapacity ::= INTEGER (0..255) + +RelayNode-Indicator ::= ENUMERATED { + true, + ... +} + +RAC ::= OCTET STRING (SIZE (1)) + +RAT-Type ::= ENUMERATED { + nbiot, + ... +} + +ReportAmountMDT ::= ENUMERATED{r1, r2, r4, r8, r16, r32, r64, rinfinity} + +ReportIntervalMDT ::= ENUMERATED {ms120, ms240, ms480, ms640, ms1024, ms2048, ms5120, ms10240, min1, min6, min12, min30, min60} + +M1ReportingTrigger ::= ENUMERATED{ + periodic, + a2eventtriggered, + ..., + a2eventtriggered-periodic +} + +RequestType ::= SEQUENCE { + eventType EventType, + reportArea ReportArea, + iE-Extensions ProtocolExtensionContainer { { RequestType-ExtIEs} } OPTIONAL, + ... +} + + +RequestType-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-RequestTypeAdditionalInfo CRITICALITY ignore EXTENSION RequestTypeAdditionalInfo PRESENCE optional }, + ... +} + +RequestTypeAdditionalInfo ::= ENUMERATED { + includePSCell, + ... +} + +RIMTransfer ::= SEQUENCE { + rIMInformation RIMInformation, + rIMRoutingAddress RIMRoutingAddress OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { RIMTransfer-ExtIEs} } OPTIONAL, + ... +} + +RIMTransfer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +RIMInformation ::= OCTET STRING + +RIMRoutingAddress ::= CHOICE { + gERAN-Cell-ID GERAN-Cell-ID, + ..., + targetRNC-ID TargetRNC-ID, + eHRPD-Sector-ID OCTET STRING (SIZE(16)) +} + +ReportArea ::= ENUMERATED { + ecgi, + ... +} + +RepetitionPeriod ::= INTEGER (0..4095) + +RLFReportInformation ::= SEQUENCE { + uE-RLF-Report-Container UE-RLF-Report-Container, + uE-RLF-Report-Container-for-extended-bands UE-RLF-Report-Container-for-extended-bands OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{ RLFReportInformation-ExtIEs}} OPTIONAL, + ... +} + +RLFReportInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + {ID id-NB-IoT-RLF-Report-Container CRITICALITY ignore EXTENSION NB-IoT-RLF-Report-Container PRESENCE optional}, + ... +} + +RNC-ID ::= INTEGER (0..4095) + +RRC-Container ::= OCTET STRING + +RRC-Establishment-Cause ::= ENUMERATED { + emergency, + highPriorityAccess, + mt-Access, + mo-Signalling, + mo-Data, + ..., + delay-TolerantAccess, + mo-VoiceCall, + mo-ExceptionData +} + +ECGIListForRestart ::= SEQUENCE (SIZE(1..maxnoofCellsforRestart)) OF EUTRAN-CGI + +Routing-ID ::= INTEGER (0..255) + +-- S + + +SecurityKey ::= BIT STRING (SIZE(256)) + + + +SecurityContext ::= SEQUENCE { + nextHopChainingCount INTEGER (0..7), + nextHopParameter SecurityKey, + iE-Extensions ProtocolExtensionContainer { { SecurityContext-ExtIEs} } OPTIONAL, + ... +} + + +SecurityContext-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SecondaryRATType ::= ENUMERATED { + nR, + ..., + unlicensed +} + + +SecondaryRATDataUsageRequest ::= ENUMERATED { + requested, + ... +} + +SecondaryRATDataUsageReportList ::= SEQUENCE (SIZE(1.. maxnoofE-RABs)) OF ProtocolIE-SingleContainer { {SecondaryRATDataUsageReportItemIEs} } + +SecondaryRATDataUsageReportItemIEs S1AP-PROTOCOL-IES ::= { + { ID id-SecondaryRATDataUsageReportItem CRITICALITY ignore TYPE SecondaryRATDataUsageReportItem PRESENCE mandatory }, + ... +} + +SecondaryRATDataUsageReportItem ::= SEQUENCE { + e-RAB-ID E-RAB-ID, + secondaryRATType SecondaryRATType, + e-RABUsageReportList E-RABUsageReportList, + iE-Extensions ProtocolExtensionContainer { { SecondaryRATDataUsageReportItem-ExtIEs} } OPTIONAL, + ... +} + +SecondaryRATDataUsageReportItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SerialNumber ::= BIT STRING (SIZE (16)) + +ServiceType ::= ENUMERATED{ + qMC-for-streaming-service, + qMC-for-MTSI-service, + ... +} + +SONInformation ::= CHOICE{ + sONInformationRequest SONInformationRequest, + sONInformationReply SONInformationReply, + ..., + sONInformation-Extension SONInformation-Extension +} + +SONInformation-Extension ::= ProtocolIE-SingleContainer {{ SONInformation-ExtensionIE }} + +SONInformation-ExtensionIE S1AP-PROTOCOL-IES ::= { + { ID id-SON-Information-Report CRITICALITY ignore TYPE SONInformationReport PRESENCE mandatory} +} + +SONInformationRequest ::= ENUMERATED { + x2TNL-Configuration-Info, + ..., + time-Synchronisation-Info, + activate-Muting, + deactivate-Muting} + +SONInformationReply ::= SEQUENCE { + x2TNLConfigurationInfo X2TNLConfigurationInfo OPTIONAL, + iE-Extensions ProtocolExtensionContainer {{SONInformationReply-ExtIEs}} OPTIONAL, + ... +} + +SONInformationReply-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Release 9 to transfer Time synchronisation information -- + {ID id-Time-Synchronisation-Info CRITICALITY ignore EXTENSION TimeSynchronisationInfo PRESENCE optional}, + ..., + {ID id-Muting-Pattern-Information CRITICALITY ignore EXTENSION MutingPatternInformation PRESENCE optional} +} + +SONInformationReport ::= CHOICE{ + rLFReportInformation RLFReportInformation, + ... +} + +SONConfigurationTransfer ::= SEQUENCE { + targeteNB-ID TargeteNB-ID, + sourceeNB-ID SourceeNB-ID, + sONInformation SONInformation, + iE-Extensions ProtocolExtensionContainer { { SONConfigurationTransfer-ExtIEs} } OPTIONAL, +... +} + +SONConfigurationTransfer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Release 10 to transfer the IP addresses of the eNB initiating the ANR action -- + {ID id-x2TNLConfigurationInfo CRITICALITY ignore EXTENSION X2TNLConfigurationInfo PRESENCE conditional + -- This IE shall be present if the SON Information IE contains the SON Information Request IE and the SON Information Request IE is set to X2TNL Configuration Info --}| +-- Extension for Release 12 to transfer information concerning the source cell of synchronisation and the aggressor cell -- + {ID id-Synchronisation-Information CRITICALITY ignore EXTENSION SynchronisationInformation PRESENCE conditional + -- This IE shall be present if the SON Information IE contains the SON Information Request IE set to Activate Muting --}, + ... +} + + +SynchronisationInformation ::= SEQUENCE { + sourceStratumLevel StratumLevel OPTIONAL, + listeningSubframePattern ListeningSubframePattern OPTIONAL, + aggressoreCGI-List ECGI-List OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {SynchronisationInformation-ExtIEs} } OPTIONAL, + ... +} + +SynchronisationInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +Source-ToTarget-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the source RAN node to the target RAN node. +-- The octets of the OCTET STRING are encoded according to the specifications of the target system. + +SourceBSS-ToTargetBSS-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +SourceeNB-ID ::= SEQUENCE { + global-ENB-ID Global-ENB-ID, + selected-TAI TAI, + iE-Extensions ProtocolExtensionContainer { {SourceeNB-ID-ExtIEs} } OPTIONAL +} + +SourceeNB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SRVCCOperationNotPossible ::= ENUMERATED { + notPossible, + ... +} + +SRVCCOperationPossible ::= ENUMERATED { + possible, + ... +} + +SRVCCHOIndication ::= ENUMERATED { + pSandCS, + cSonly, + ... +} + +SourceNodeID ::= CHOICE { + sourceNgRanNode-ID SourceNgRanNode-ID, + sourceNodeID-Extension SourceNodeID-Extension +} + +SourceNodeID-Extension ::= ProtocolIE-SingleContainer {{ SourceNodeID-ExtensionIE }} + +SourceNodeID-ExtensionIE S1AP-PROTOCOL-IES ::= { +... +} + +SourceeNB-ToTargeteNB-TransparentContainer ::= SEQUENCE { + rRC-Container RRC-Container, + e-RABInformationList E-RABInformationList OPTIONAL, + targetCell-ID EUTRAN-CGI, + subscriberProfileIDforRFP SubscriberProfileIDforRFP OPTIONAL, + uE-HistoryInformation UE-HistoryInformation, + iE-Extensions ProtocolExtensionContainer { {SourceeNB-ToTargeteNB-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +SourceeNB-ToTargeteNB-TransparentContainer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + {ID id-MobilityInformation CRITICALITY ignore EXTENSION MobilityInformation PRESENCE optional}| + {ID id-uE-HistoryInformationFromTheUE CRITICALITY ignore EXTENSION UE-HistoryInformationFromTheUE PRESENCE optional}| + {ID id-IMSvoiceEPSfallbackfrom5G CRITICALITY ignore EXTENSION IMSvoiceEPSfallbackfrom5G PRESENCE optional}| + {ID id-AdditionalRRMPriorityIndex CRITICALITY ignore EXTENSION AdditionalRRMPriorityIndex PRESENCE optional}| + {ID id-ContextatSource CRITICALITY ignore EXTENSION ContextatSource PRESENCE optional}| + {ID id-IntersystemMeasurementConfiguration CRITICALITY ignore EXTENSION IntersystemMeasurementConfiguration PRESENCE optional}| + {ID id-SourceNodeID CRITICALITY ignore EXTENSION SourceNodeID PRESENCE optional}| + {ID id-EmergencyIndicator CRITICALITY ignore EXTENSION EmergencyIndicator PRESENCE optional}, + ... +} + +SourceNgRanNode-ID ::= SEQUENCE { + global-RAN-NODE-ID Global-RAN-NODE-ID, + selected-TAI FiveGSTAI, + iE-Extensions ProtocolExtensionContainer { { SourceNgRanNode-ID-ExtIEs} } OPTIONAL, + ... +} + +SourceNgRanNode-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SourceRNC-ToTargetRNC-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +SourceNgRanNode-ToTargetNgRanNode-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +ServedGUMMEIs ::= SEQUENCE (SIZE (1.. maxnoofRATs)) OF ServedGUMMEIsItem + +ServedGUMMEIsItem ::= SEQUENCE { + servedPLMNs ServedPLMNs, + servedGroupIDs ServedGroupIDs, + servedMMECs ServedMMECs, + iE-Extensions ProtocolExtensionContainer { {ServedGUMMEIsItem-ExtIEs} } OPTIONAL, + ... +} + +ServedGUMMEIsItem-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + {ID id-GUMMEIType CRITICALITY ignore EXTENSION GUMMEIType PRESENCE optional}, + ... +} + +ServedGroupIDs ::= SEQUENCE (SIZE(1.. maxnoofGroupIDs)) OF MME-Group-ID +ServedMMECs ::= SEQUENCE (SIZE(1.. maxnoofMMECs)) OF MME-Code + +ServedPLMNs ::= SEQUENCE (SIZE(1.. maxnoofPLMNsPerMME)) OF PLMNidentity + +SubscriberProfileIDforRFP ::= INTEGER (1..256) + +Subscription-Based-UE-DifferentiationInfo ::= SEQUENCE { + periodicCommunicationIndicator ENUMERATED {periodically, ondemand, ...} OPTIONAL, + periodicTime INTEGER (1..3600, ...) OPTIONAL, + scheduledCommunicationTime ScheduledCommunicationTime OPTIONAL, + stationaryIndication ENUMERATED {stationary, mobile, ...} OPTIONAL, + trafficProfile ENUMERATED {single-packet, dual-packets, multiple-packets, ...} OPTIONAL, + batteryIndication ENUMERATED {battery-powered, battery-powered-not-rechargeable-or-replaceable, not-battery-powered, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { Subscription-Based-UE-DifferentiationInfo-ExtIEs} } OPTIONAL, + ... +} + +Subscription-Based-UE-DifferentiationInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ScheduledCommunicationTime ::= SEQUENCE { + dayofWeek BIT STRING (SIZE(7)) OPTIONAL, + timeofDayStart INTEGER (0..86399, ...) OPTIONAL, + timeofDayEnd INTEGER (0..86399, ...) OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ScheduledCommunicationTime-ExtIEs}} OPTIONAL, + ... +} + +ScheduledCommunicationTime-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +SupportedTAs ::= SEQUENCE (SIZE(1.. maxnoofTACs)) OF SupportedTAs-Item + +SupportedTAs-Item ::= SEQUENCE { + tAC TAC, + broadcastPLMNs BPLMNs, + iE-Extensions ProtocolExtensionContainer { {SupportedTAs-Item-ExtIEs} } OPTIONAL, + ... +} + +SupportedTAs-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + -- Extension for Release 13 to transfer RAT-Type per TAC -- + {ID id-RAT-Type CRITICALITY reject EXTENSION RAT-Type PRESENCE optional}, + ... +} + +StratumLevel ::= INTEGER (0..3, ...) + +SynchronisationStatus ::= ENUMERATED { synchronous, asynchronous, ... } + +TimeSynchronisationInfo ::= SEQUENCE { + stratumLevel StratumLevel, + synchronisationStatus SynchronisationStatus, + iE-Extensions ProtocolExtensionContainer { { TimeSynchronisationInfo-ExtIEs} } OPTIONAL, + ... +} + +TimeSynchronisationInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + -- Extension for Release 12 to transfer Muting Availability Indication -- + {ID id-Muting-Availability-Indication CRITICALITY ignore EXTENSION MutingAvailabilityIndication PRESENCE optional}, + ... +} + +S-TMSI ::= SEQUENCE { + mMEC MME-Code, + m-TMSI M-TMSI, + iE-Extensions ProtocolExtensionContainer { {S-TMSI-ExtIEs} } OPTIONAL, + ... +} + +S-TMSI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- T + +TAC ::= OCTET STRING (SIZE (2)) + +TAIBasedMDT ::= SEQUENCE { + tAIListforMDT TAIListforMDT, + iE-Extensions ProtocolExtensionContainer { {TAIBasedMDT-ExtIEs} } OPTIONAL, + ... +} + +TAIBasedMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListforMDT ::= SEQUENCE (SIZE(1..maxnoofTAforMDT)) OF TAI + +TAIListforWarning ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAI + +TAI ::= SEQUENCE { + pLMNidentity PLMNidentity, + tAC TAC, + iE-Extensions ProtocolExtensionContainer { {TAI-ExtIEs} } OPTIONAL, + ... +} + +TAI-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAI-Broadcast ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAI-Broadcast-Item + +TAI-Broadcast-Item ::= SEQUENCE { + tAI TAI, + completedCellinTAI CompletedCellinTAI, + iE-Extensions ProtocolExtensionContainer { {TAI-Broadcast-Item-ExtIEs} } OPTIONAL, + ... +} + +TAI-Broadcast-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAI-Cancelled ::= SEQUENCE (SIZE(1..maxnoofTAIforWarning)) OF TAI-Cancelled-Item + +TAI-Cancelled-Item ::= SEQUENCE { + tAI TAI, + cancelledCellinTAI CancelledCellinTAI, + iE-Extensions ProtocolExtensionContainer { {TAI-Cancelled-Item-ExtIEs} } OPTIONAL, + ... +} + +TAI-Cancelled-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TABasedMDT ::= SEQUENCE { + tAListforMDT TAListforMDT, + iE-Extensions ProtocolExtensionContainer { {TABasedMDT-ExtIEs} } OPTIONAL, + ... +} + +TABasedMDT-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAListforMDT ::= SEQUENCE (SIZE(1..maxnoofTAforMDT)) OF TAC + +TABasedQMC ::= SEQUENCE { + tAListforQMC TAListforQMC, + iE-Extensions ProtocolExtensionContainer { {TABasedQMC-ExtIEs} } OPTIONAL, + ... +} + +TABasedQMC-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAListforQMC ::= SEQUENCE (SIZE(1..maxnoofTAforQMC)) OF TAC + +TAIBasedQMC ::= SEQUENCE { + tAIListforQMC TAIListforQMC, + iE-Extensions ProtocolExtensionContainer { {TAIBasedQMC-ExtIEs} } OPTIONAL, + ... +} + +TAIBasedQMC-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TAIListforQMC ::= SEQUENCE (SIZE(1..maxnoofTAforQMC)) OF TAI + +CompletedCellinTAI ::= SEQUENCE (SIZE(1..maxnoofCellinTAI)) OF CompletedCellinTAI-Item + +CompletedCellinTAI-Item ::= SEQUENCE{ + eCGI EUTRAN-CGI, + iE-Extensions ProtocolExtensionContainer { {CompletedCellinTAI-Item-ExtIEs} } OPTIONAL, + ... +} + +CompletedCellinTAI-Item-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TBCD-STRING ::= OCTET STRING (SIZE (3)) + +TargetID ::= CHOICE { + targeteNB-ID TargeteNB-ID, + targetRNC-ID TargetRNC-ID, + cGI CGI, + ..., + targetgNgRanNode-ID TargetNgRanNode-ID +} + +TargeteNB-ID ::= SEQUENCE { + global-ENB-ID Global-ENB-ID, + selected-TAI TAI, + iE-Extensions ProtocolExtensionContainer { {TargeteNB-ID-ExtIEs} } OPTIONAL, + ... +} + +TargeteNB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetRNC-ID ::= SEQUENCE { + lAI LAI, + rAC RAC OPTIONAL, + rNC-ID RNC-ID, + extendedRNC-ID ExtendedRNC-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {TargetRNC-ID-ExtIEs} } OPTIONAL, + ... + } + + +TargetRNC-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TargetNgRanNode-ID ::= SEQUENCE { + global-RAN-NODE-ID Global-RAN-NODE-ID, + selected-TAI FiveGSTAI, + iE-Extensions ProtocolExtensionContainer { { TargetNgRanNode-ID-ExtIEs} } OPTIONAL, + ... +} + +TargetNgRanNode-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Global-RAN-NODE-ID::= CHOICE { + gNB GNB, + ng-eNB NG-eNB, + ... +} + +GNB ::= SEQUENCE { + global-gNB-ID Global-GNB-ID, + iE-Extensions ProtocolExtensionContainer { {GNB-ExtIEs} } OPTIONAL, + ... +} + +GNB-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Global-GNB-ID ::= SEQUENCE { + pLMN-Identity PLMNidentity, + gNB-ID GNB-Identity, + iE-Extensions ProtocolExtensionContainer { { Global-GNB-ID-ExtIEs} } OPTIONAL, + ... +} + +Global-GNB-ID-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +GNB-Identity ::= CHOICE { + gNB-ID GNB-ID, + ... +} + +NG-eNB ::= SEQUENCE { + global-ng-eNB-ID Global-ENB-ID, + iE-Extensions ProtocolExtensionContainer { { NG-eNB-ExtIEs} } OPTIONAL, + ... +} + +NG-eNB-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +GNB-ID ::= BIT STRING (SIZE(22..32)) + +TargeteNB-ToSourceeNB-TransparentContainer ::= SEQUENCE { + rRC-Container RRC-Container, + iE-Extensions ProtocolExtensionContainer { {TargeteNB-ToSourceeNB-TransparentContainer-ExtIEs} } OPTIONAL, + ... +} + +TargeteNB-ToSourceeNB-TransparentContainer-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-DAPSResponseInfoList CRITICALITY ignore EXTENSION DAPSResponseInfoList PRESENCE optional}, + ... +} + +Target-ToSource-TransparentContainer ::= OCTET STRING +-- This IE includes a transparent container from the target RAN node to the source RAN node. +-- The octets of the OCTET STRING are coded according to the specifications of the target system. + +TargetRNC-ToSourceRNC-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +TargetBSS-ToSourceBSS-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +TargetNgRanNode-ToSourceNgRanNode-TransparentContainer ::= OCTET STRING +-- This is a dummy IE used only as a reference to the actual definition in relevant specification. + +M1ThresholdEventA2 ::= SEQUENCE { + measurementThreshold MeasurementThresholdA2, + iE-Extensions ProtocolExtensionContainer { { M1ThresholdEventA2-ExtIEs} } OPTIONAL, + ... +} + +M1ThresholdEventA2-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +Threshold-RSRP ::= INTEGER(0..97) + +Threshold-RSRQ ::= INTEGER(0..34) + +TimeToWait ::= ENUMERATED {v1s, v2s, v5s, v10s, v20s, v60s, ...} + +Time-UE-StayedInCell ::= INTEGER (0..4095) + +Time-UE-StayedInCell-EnhancedGranularity ::= INTEGER (0..40950) + +TimeSinceSecondaryNodeRelease ::= OCTET STRING (SIZE(4)) + +TransportInformation ::= SEQUENCE { + transportLayerAddress TransportLayerAddress, + uL-GTP-TEID GTP-TEID, + ... +} + +TransportLayerAddress ::= BIT STRING (SIZE(1..160, ...)) + +TraceActivation ::= SEQUENCE { + e-UTRAN-Trace-ID E-UTRAN-Trace-ID, + interfacesToTrace InterfacesToTrace, +traceDepth TraceDepth, +traceCollectionEntityIPAddress TransportLayerAddress, + iE-Extensions ProtocolExtensionContainer { { TraceActivation-ExtIEs} } OPTIONAL, + ... +} + +TraceActivation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Rel-10 to support MDT -- + { ID id-MDTConfiguration CRITICALITY ignore EXTENSION MDT-Configuration PRESENCE optional }| +-- Extension for Rel-15 to support QMC + { ID id-UEAppLayerMeasConfig CRITICALITY ignore EXTENSION UEAppLayerMeasConfig PRESENCE optional }| + { ID id-MDTConfigurationNR CRITICALITY ignore EXTENSION MDT-ConfigurationNR PRESENCE optional }| + { ID id-TraceCollectionEntityURI CRITICALITY ignore EXTENSION URI-Address PRESENCE optional }, + ... +} + +TraceDepth ::= ENUMERATED { + minimum, + medium, + maximum, + minimumWithoutVendorSpecificExtension, + mediumWithoutVendorSpecificExtension, + maximumWithoutVendorSpecificExtension, + ... +} + +E-UTRAN-Trace-ID ::= OCTET STRING (SIZE (8)) + +TrafficLoadReductionIndication ::= INTEGER (1..99) + +TunnelInformation ::= SEQUENCE { + transportLayerAddress TransportLayerAddress, + uDP-Port-Number Port-Number OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {Tunnel-Information-ExtIEs} } OPTIONAL, + ... +} + +Tunnel-Information-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +TypeOfError ::= ENUMERATED { + not-understood, + missing, + ... +} + +TAIListForRestart ::= SEQUENCE (SIZE(1..maxnoofRestartTAIs)) OF TAI + +-- U + +UEAggregateMaximumBitrate ::= SEQUENCE { + uEaggregateMaximumBitRateDL BitRate, + uEaggregateMaximumBitRateUL BitRate, + iE-Extensions ProtocolExtensionContainer { {UEAggregate-MaximumBitrates-ExtIEs} } OPTIONAL, + ... +} + +UEAggregate-MaximumBitrates-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for maximum bitrate > 10G bps -- + { ID id-extended-uEaggregateMaximumBitRateDL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}| + { ID id-extended-uEaggregateMaximumBitRateUL CRITICALITY ignore EXTENSION ExtendedBitRate PRESENCE optional}, + ... +} + +UEAppLayerMeasConfig ::= SEQUENCE { + containerForAppLayerMeasConfig OCTET STRING (SIZE(1..1000)), + areaScopeOfQMC AreaScopeOfQMC, + iE-Extensions ProtocolExtensionContainer { {UEAppLayerMeasConfig-ExtIEs} } OPTIONAL, + ... +} + +UEAppLayerMeasConfig-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + {ID id-serviceType CRITICALITY ignore EXTENSION ServiceType PRESENCE optional}, + ... +} + +UECapabilityInfoRequest ::= ENUMERATED { + requested, + ... +} + +UE-RetentionInformation ::= ENUMERATED { + ues-retained, + ...} + +UE-S1AP-IDs ::= CHOICE{ + uE-S1AP-ID-pair UE-S1AP-ID-pair, + mME-UE-S1AP-ID MME-UE-S1AP-ID, + ... +} + +UE-S1AP-ID-pair ::= SEQUENCE{ + mME-UE-S1AP-ID MME-UE-S1AP-ID, + eNB-UE-S1AP-ID ENB-UE-S1AP-ID, + iE-Extensions ProtocolExtensionContainer { {UE-S1AP-ID-pair-ExtIEs} } OPTIONAL, + ... +} +UE-S1AP-ID-pair-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + + +UE-associatedLogicalS1-ConnectionItem ::= SEQUENCE { + mME-UE-S1AP-ID MME-UE-S1AP-ID OPTIONAL, + eNB-UE-S1AP-ID ENB-UE-S1AP-ID OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { UE-associatedLogicalS1-ConnectionItemExtIEs} } OPTIONAL, + ... +} + + +UE-associatedLogicalS1-ConnectionItemExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +UEIdentityIndexValue ::= BIT STRING (SIZE (10)) + +UE-HistoryInformation ::= SEQUENCE (SIZE(1..maxnoofCellsinUEHistoryInfo)) OF LastVisitedCell-Item + +UE-HistoryInformationFromTheUE ::= OCTET STRING +-- This IE is a transparent container and shall be encoded as the VisitedCellInfoList field contained in the UEInformationResponse message as defined in TS 36.331 [16] + +UEPagingID ::= CHOICE { + s-TMSI S-TMSI, + iMSI IMSI, + ... + } + +UERadioCapability ::= OCTET STRING + +UERadioCapabilityForPaging ::= OCTET STRING + +UERadioCapabilityID ::= OCTET STRING + +UE-RLF-Report-Container ::= OCTET STRING +-- This IE is a transparent container and shall be encoded as the rlf-Report-r9 field contained in the UEInformationResponse message as defined in TS 36.331 [16] + +UE-RLF-Report-Container-for-extended-bands ::= OCTET STRING +-- This IE is a transparent container and shall be encoded as the rlf-Report-v9e0 contained in the UEInformationResponse message as defined in TS 36.331 [16] + +UESecurityCapabilities ::= SEQUENCE { + encryptionAlgorithms EncryptionAlgorithms, + integrityProtectionAlgorithms IntegrityProtectionAlgorithms, + iE-Extensions ProtocolExtensionContainer { { UESecurityCapabilities-ExtIEs} } OPTIONAL, +... +} + +UESecurityCapabilities-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +UESidelinkAggregateMaximumBitrate ::= SEQUENCE { + uESidelinkAggregateMaximumBitRate BitRate, + iE-Extensions ProtocolExtensionContainer { {UE-Sidelink-Aggregate-MaximumBitrates-ExtIEs} } OPTIONAL, + ... +} + +UE-Sidelink-Aggregate-MaximumBitrates-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +UE-Usage-Type ::= INTEGER (0..255) + +UL-CP-SecurityInformation ::= SEQUENCE { + ul-NAS-MAC UL-NAS-MAC, + ul-NAS-Count UL-NAS-Count, + iE-Extensions ProtocolExtensionContainer { { UL-CP-SecurityInformation-ExtIEs} } OPTIONAL, + ... +} + +UL-CP-SecurityInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +UL-NAS-MAC ::= BIT STRING (SIZE (16)) + +UL-NAS-Count ::= BIT STRING (SIZE (5)) + +UnlicensedSpectrumRestriction ::= ENUMERATED { + unlicensed-restricted, + ... +} + + +URI-Address ::= VisibleString + +UserLocationInformation ::= SEQUENCE { + eutran-cgi EUTRAN-CGI, + tai TAI, + iE-Extensions ProtocolExtensionContainer { { UserLocationInformation-ExtIEs} } OPTIONAL, + ... +} + +UserLocationInformation-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + { ID id-PSCellInformation CRITICALITY ignore EXTENSION PSCellInformation PRESENCE optional}, + ... +} + +UEUserPlaneCIoTSupportIndicator ::= ENUMERATED { + supported, + ... +} + +UE-Application-Layer-Measurement-Capability ::= BIT STRING (SIZE (8)) + +-- First bit: QoE Measurement for streaming service +-- Second bit: QoE Measurement for MTSI service + +-- Note that undefined bits are considered as a spare bit and spare bits shall be set to 0 by the transmitter and shall be ignored by the receiver. + +-- V + +VoiceSupportMatchIndicator ::= ENUMERATED { + supported, + not-supported, + ... +} + +V2XServicesAuthorized ::= SEQUENCE { + vehicleUE VehicleUE OPTIONAL, + pedestrianUE PedestrianUE OPTIONAL, + iE-Extensions ProtocolExtensionContainer { {V2XServicesAuthorized-ExtIEs} } OPTIONAL, + ... +} + +V2XServicesAuthorized-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +VehicleUE ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +PedestrianUE ::= ENUMERATED { + authorized, + not-authorized, + ... +} + +-- W + +WarningAreaCoordinates ::= OCTET STRING (SIZE(1..1024)) + +WarningAreaList ::= CHOICE { + cellIDList ECGIList, + trackingAreaListforWarning TAIListforWarning, + emergencyAreaIDList EmergencyAreaIDList, + ... +} + + +WarningType ::= OCTET STRING (SIZE (2)) + +WarningSecurityInfo ::= OCTET STRING (SIZE (50)) + + +WarningMessageContents ::= OCTET STRING (SIZE(1..9600)) + +WLANMeasurementConfiguration ::= SEQUENCE { + wlanMeasConfig WLANMeasConfig, + wlanMeasConfigNameList WLANMeasConfigNameList OPTIONAL, + wlan-rssi ENUMERATED {true, ...} OPTIONAL, + wlan-rtt ENUMERATED {true, ...} OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { WLANMeasurementConfiguration-ExtIEs } } OPTIONAL, + ... +} + +WLANMeasurementConfiguration-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +WLANMeasConfigNameList ::= SEQUENCE (SIZE(1..maxnoofWLANName)) OF WLANName + +WLANMeasConfig::= ENUMERATED {setup,...} + +WLANName ::= OCTET STRING (SIZE (1..32)) + +WUS-Assistance-Information ::= SEQUENCE { + pagingProbabilityInformation PagingProbabilityInformation, + iE-Extensions ProtocolExtensionContainer { { WUS-Assistance-Information-ExtIEs } } OPTIONAL, + ... +} + +WUS-Assistance-Information-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +-- X + + +X2TNLConfigurationInfo ::= SEQUENCE { + eNBX2TransportLayerAddresses ENBX2TLAs, + iE-Extensions ProtocolExtensionContainer { { X2TNLConfigurationInfo-ExtIEs} } OPTIONAL, + ... +} + +X2TNLConfigurationInfo-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { +-- Extension for Release 10 to transfer the IPsec and U-plane addresses during ANR action -- + {ID id-eNBX2ExtendedTransportLayerAddresses CRITICALITY ignore EXTENSION ENBX2ExtTLAs PRESENCE optional}| +-- Extension for Release 12 to transfer the IP addresses of the X2 GW -- + {ID id-eNBIndirectX2TransportLayerAddresses CRITICALITY ignore EXTENSION ENBIndirectX2TransportLayerAddresses PRESENCE optional}, + ... +} + +ENBX2ExtTLAs ::= SEQUENCE (SIZE(1.. maxnoofeNBX2ExtTLAs)) OF ENBX2ExtTLA + +ENBX2ExtTLA ::= SEQUENCE { + iPsecTLA TransportLayerAddress OPTIONAL, + gTPTLAa ENBX2GTPTLAs OPTIONAL, + iE-Extensions ProtocolExtensionContainer { { ENBX2ExtTLA-ExtIEs} } OPTIONAL, + ... +} + +ENBX2ExtTLA-ExtIEs S1AP-PROTOCOL-EXTENSION ::= { + ... +} + +ENBX2GTPTLAs ::= SEQUENCE (SIZE(1.. maxnoofeNBX2GTPTLAs)) OF TransportLayerAddress + +ENBIndirectX2TransportLayerAddresses ::= SEQUENCE (SIZE(1..maxnoofeNBX2TLAs)) OF TransportLayerAddress + +-- Y +-- Z + +END + +9.3.5 Common Definitions +-- ************************************************************** +-- +-- Common definitions +-- +-- ************************************************************** + +S1AP-CommonDataTypes { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-CommonDataTypes (3) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +Criticality ::= ENUMERATED { reject, ignore, notify } + +Presence ::= ENUMERATED { optional, conditional, mandatory } + +PrivateIE-ID ::= CHOICE { + local INTEGER (0..65535), + global OBJECT IDENTIFIER +} + +ProcedureCode ::= INTEGER (0..255) + +ProtocolExtensionID ::= INTEGER (0..65535) + +ProtocolIE-ID ::= INTEGER (0..65535) + +TriggeringMessage ::= ENUMERATED { initiating-message, successful-outcome, unsuccessfull-outcome } + +END + +9.3.6 Constant Definitions +-- ************************************************************** +-- +-- Constant definitions +-- +-- ************************************************************** + +S1AP-Constants { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-Constants (4) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + ProcedureCode, + ProtocolIE-ID + +FROM S1AP-CommonDataTypes; + + +-- ************************************************************** +-- +-- Elementary Procedures +-- +-- ************************************************************** + +id-HandoverPreparation ProcedureCode ::= 0 +id-HandoverResourceAllocation ProcedureCode ::= 1 +id-HandoverNotification ProcedureCode ::= 2 +id-PathSwitchRequest ProcedureCode ::= 3 +id-HandoverCancel ProcedureCode ::= 4 +id-E-RABSetup ProcedureCode ::= 5 +id-E-RABModify ProcedureCode ::= 6 +id-E-RABRelease ProcedureCode ::= 7 +id-E-RABReleaseIndication ProcedureCode ::= 8 +id-InitialContextSetup ProcedureCode ::= 9 +id-Paging ProcedureCode ::= 10 +id-downlinkNASTransport ProcedureCode ::= 11 +id-initialUEMessage ProcedureCode ::= 12 +id-uplinkNASTransport ProcedureCode ::= 13 +id-Reset ProcedureCode ::= 14 +id-ErrorIndication ProcedureCode ::= 15 +id-NASNonDeliveryIndication ProcedureCode ::= 16 +id-S1Setup ProcedureCode ::= 17 +id-UEContextReleaseRequest ProcedureCode ::= 18 +id-DownlinkS1cdma2000tunnelling ProcedureCode ::= 19 +id-UplinkS1cdma2000tunnelling ProcedureCode ::= 20 +id-UEContextModification ProcedureCode ::= 21 +id-UECapabilityInfoIndication ProcedureCode ::= 22 +id-UEContextRelease ProcedureCode ::= 23 +id-eNBStatusTransfer ProcedureCode ::= 24 +id-MMEStatusTransfer ProcedureCode ::= 25 +id-DeactivateTrace ProcedureCode ::= 26 +id-TraceStart ProcedureCode ::= 27 +id-TraceFailureIndication ProcedureCode ::= 28 +id-ENBConfigurationUpdate ProcedureCode ::= 29 +id-MMEConfigurationUpdate ProcedureCode ::= 30 +id-LocationReportingControl ProcedureCode ::= 31 +id-LocationReportingFailureIndication ProcedureCode ::= 32 +id-LocationReport ProcedureCode ::= 33 +id-OverloadStart ProcedureCode ::= 34 +id-OverloadStop ProcedureCode ::= 35 +id-WriteReplaceWarning ProcedureCode ::= 36 +id-eNBDirectInformationTransfer ProcedureCode ::= 37 +id-MMEDirectInformationTransfer ProcedureCode ::= 38 +id-PrivateMessage ProcedureCode ::= 39 +id-eNBConfigurationTransfer ProcedureCode ::= 40 +id-MMEConfigurationTransfer ProcedureCode ::= 41 +id-CellTrafficTrace ProcedureCode ::= 42 +id-Kill ProcedureCode ::= 43 +id-downlinkUEAssociatedLPPaTransport ProcedureCode ::= 44 +id-uplinkUEAssociatedLPPaTransport ProcedureCode ::= 45 +id-downlinkNonUEAssociatedLPPaTransport ProcedureCode ::= 46 +id-uplinkNonUEAssociatedLPPaTransport ProcedureCode ::= 47 +id-UERadioCapabilityMatch ProcedureCode ::= 48 +id-PWSRestartIndication ProcedureCode ::= 49 +id-E-RABModificationIndication ProcedureCode ::= 50 +id-PWSFailureIndication ProcedureCode ::= 51 +id-RerouteNASRequest ProcedureCode ::= 52 +id-UEContextModificationIndication ProcedureCode ::= 53 +id-ConnectionEstablishmentIndication ProcedureCode ::= 54 +id-UEContextSuspend ProcedureCode ::= 55 +id-UEContextResume ProcedureCode ::= 56 +id-NASDeliveryIndication ProcedureCode ::= 57 +id-RetrieveUEInformation ProcedureCode ::= 58 +id-UEInformationTransfer ProcedureCode ::= 59 +id-eNBCPRelocationIndication ProcedureCode ::= 60 +id-MMECPRelocationIndication ProcedureCode ::= 61 +id-SecondaryRATDataUsageReport ProcedureCode ::= 62 +id-UERadioCapabilityIDMapping ProcedureCode ::= 63 +id-HandoverSuccess ProcedureCode ::= 64 +id-eNBEarlyStatusTransfer ProcedureCode ::= 65 +id-MMEEarlyStatusTransfer ProcedureCode ::= 66 + +-- ************************************************************** +-- +-- Extension constants +-- +-- ************************************************************** + +maxPrivateIEs INTEGER ::= 65535 +maxProtocolExtensions INTEGER ::= 65535 +maxProtocolIEs INTEGER ::= 65535 +-- ************************************************************** +-- +-- Lists +-- +-- ************************************************************** + +maxnoofCSGs INTEGER ::= 256 +maxnoofE-RABs INTEGER ::= 256 +maxnoofTAIs INTEGER ::= 256 +maxnoofTACs INTEGER ::= 256 +maxnoofErrors INTEGER ::= 256 +maxnoofBPLMNs INTEGER ::= 6 +maxnoofPLMNsPerMME INTEGER ::= 32 +maxnoofEPLMNs INTEGER ::= 15 +maxnoofEPLMNsPlusOne INTEGER ::= 16 +maxnoofForbLACs INTEGER ::= 4096 +maxnoofForbTACs INTEGER ::= 4096 +maxnoofIndividualS1ConnectionsToReset INTEGER ::= 256 +maxnoofCellsinUEHistoryInfo INTEGER ::= 16 +maxnoofCellsineNB INTEGER ::= 256 +maxnoofTAIforWarning INTEGER ::= 65535 +maxnoofCellID INTEGER ::= 65535 +maxnoofDCNs INTEGER ::= 32 +maxnoofEmergencyAreaID INTEGER ::= 65535 +maxnoofCellinTAI INTEGER ::= 65535 +maxnoofCellinEAI INTEGER ::= 65535 +maxnoofeNBX2TLAs INTEGER ::= 2 +maxnoofeNBX2ExtTLAs INTEGER ::= 16 +maxnoofeNBX2GTPTLAs INTEGER ::= 16 +maxnoofRATs INTEGER ::= 8 +maxnoofGroupIDs INTEGER ::= 65535 +maxnoofMMECs INTEGER ::= 256 +maxnoofCellIDforMDT INTEGER ::= 32 +maxnoofTAforMDT INTEGER ::= 8 +maxnoofMDTPLMNs INTEGER ::= 16 +maxnoofCellsforRestart INTEGER ::= 256 +maxnoofRestartTAIs INTEGER ::= 2048 +maxnoofRestartEmergencyAreaIDs INTEGER ::= 256 +maxEARFCN INTEGER ::= 262143 +maxnoofMBSFNAreaMDT INTEGER ::= 8 +maxnoofRecommendedCells INTEGER ::= 16 +maxnoofRecommendedENBs INTEGER ::= 16 +maxnooftimeperiods INTEGER ::= 2 +maxnoofCellIDforQMC INTEGER ::= 32 +maxnoofTAforQMC INTEGER ::= 8 +maxnoofPLMNforQMC INTEGER ::= 16 +maxnoofBluetoothName INTEGER ::= 4 +maxnoofWLANName INTEGER ::= 4 +maxnoofConnectedengNBs INTEGER ::= 256 +maxnoofPC5QoSFlows INTEGER ::= 2048 +maxnooffrequencies INTEGER ::= 64 +maxNARFCN INTEGER ::= 32 +maxRS-IndexCellQual INTEGER ::= 16 + + +-- ************************************************************** +-- +-- IEs +-- +-- ************************************************************** + +id-MME-UE-S1AP-ID ProtocolIE-ID ::= 0 +id-HandoverType ProtocolIE-ID ::= 1 +id-Cause ProtocolIE-ID ::= 2 +id-SourceID ProtocolIE-ID ::= 3 +id-TargetID ProtocolIE-ID ::= 4 +id-eNB-UE-S1AP-ID ProtocolIE-ID ::= 8 +id-E-RABSubjecttoDataForwardingList ProtocolIE-ID ::= 12 +id-E-RABtoReleaseListHOCmd ProtocolIE-ID ::= 13 +id-E-RABDataForwardingItem ProtocolIE-ID ::= 14 +id-E-RABReleaseItemBearerRelComp ProtocolIE-ID ::= 15 +id-E-RABToBeSetupListBearerSUReq ProtocolIE-ID ::= 16 +id-E-RABToBeSetupItemBearerSUReq ProtocolIE-ID ::= 17 +id-E-RABAdmittedList ProtocolIE-ID ::= 18 +id-E-RABFailedToSetupListHOReqAck ProtocolIE-ID ::= 19 +id-E-RABAdmittedItem ProtocolIE-ID ::= 20 +id-E-RABFailedtoSetupItemHOReqAck ProtocolIE-ID ::= 21 +id-E-RABToBeSwitchedDLList ProtocolIE-ID ::= 22 +id-E-RABToBeSwitchedDLItem ProtocolIE-ID ::= 23 +id-E-RABToBeSetupListCtxtSUReq ProtocolIE-ID ::= 24 +id-TraceActivation ProtocolIE-ID ::= 25 +id-NAS-PDU ProtocolIE-ID ::= 26 +id-E-RABToBeSetupItemHOReq ProtocolIE-ID ::= 27 +id-E-RABSetupListBearerSURes ProtocolIE-ID ::= 28 +id-E-RABFailedToSetupListBearerSURes ProtocolIE-ID ::= 29 +id-E-RABToBeModifiedListBearerModReq ProtocolIE-ID ::= 30 +id-E-RABModifyListBearerModRes ProtocolIE-ID ::= 31 +id-E-RABFailedToModifyList ProtocolIE-ID ::= 32 +id-E-RABToBeReleasedList ProtocolIE-ID ::= 33 +id-E-RABFailedToReleaseList ProtocolIE-ID ::= 34 +id-E-RABItem ProtocolIE-ID ::= 35 +id-E-RABToBeModifiedItemBearerModReq ProtocolIE-ID ::= 36 +id-E-RABModifyItemBearerModRes ProtocolIE-ID ::= 37 +id-E-RABReleaseItem ProtocolIE-ID ::= 38 +id-E-RABSetupItemBearerSURes ProtocolIE-ID ::= 39 +id-SecurityContext ProtocolIE-ID ::= 40 +id-HandoverRestrictionList ProtocolIE-ID ::= 41 +id-UEPagingID ProtocolIE-ID ::= 43 +id-pagingDRX ProtocolIE-ID ::= 44 +id-TAIList ProtocolIE-ID ::= 46 +id-TAIItem ProtocolIE-ID ::= 47 +id-E-RABFailedToSetupListCtxtSURes ProtocolIE-ID ::= 48 +id-E-RABReleaseItemHOCmd ProtocolIE-ID ::= 49 +id-E-RABSetupItemCtxtSURes ProtocolIE-ID ::= 50 +id-E-RABSetupListCtxtSURes ProtocolIE-ID ::= 51 +id-E-RABToBeSetupItemCtxtSUReq ProtocolIE-ID ::= 52 +id-E-RABToBeSetupListHOReq ProtocolIE-ID ::= 53 +id-GERANtoLTEHOInformationRes ProtocolIE-ID ::= 55 +id-UTRANtoLTEHOInformationRes ProtocolIE-ID ::= 57 +id-CriticalityDiagnostics ProtocolIE-ID ::= 58 +id-Global-ENB-ID ProtocolIE-ID ::= 59 +id-eNBname ProtocolIE-ID ::= 60 +id-MMEname ProtocolIE-ID ::= 61 +id-ServedPLMNs ProtocolIE-ID ::= 63 +id-SupportedTAs ProtocolIE-ID ::= 64 +id-TimeToWait ProtocolIE-ID ::= 65 +id-uEaggregateMaximumBitrate ProtocolIE-ID ::= 66 +id-TAI ProtocolIE-ID ::= 67 +id-E-RABReleaseListBearerRelComp ProtocolIE-ID ::= 69 +id-cdma2000PDU ProtocolIE-ID ::= 70 +id-cdma2000RATType ProtocolIE-ID ::= 71 +id-cdma2000SectorID ProtocolIE-ID ::= 72 +id-SecurityKey ProtocolIE-ID ::= 73 +id-UERadioCapability ProtocolIE-ID ::= 74 +id-GUMMEI-ID ProtocolIE-ID ::= 75 +id-E-RABInformationListItem ProtocolIE-ID ::= 78 +id-Direct-Forwarding-Path-Availability ProtocolIE-ID ::= 79 +id-UEIdentityIndexValue ProtocolIE-ID ::= 80 +id-cdma2000HOStatus ProtocolIE-ID ::= 83 +id-cdma2000HORequiredIndication ProtocolIE-ID ::= 84 +id-E-UTRAN-Trace-ID ProtocolIE-ID ::= 86 +id-RelativeMMECapacity ProtocolIE-ID ::= 87 +id-SourceMME-UE-S1AP-ID ProtocolIE-ID ::= 88 +id-Bearers-SubjectToStatusTransfer-Item ProtocolIE-ID ::= 89 +id-eNB-StatusTransfer-TransparentContainer ProtocolIE-ID ::= 90 +id-UE-associatedLogicalS1-ConnectionItem ProtocolIE-ID ::= 91 +id-ResetType ProtocolIE-ID ::= 92 +id-UE-associatedLogicalS1-ConnectionListResAck ProtocolIE-ID ::= 93 +id-E-RABToBeSwitchedULItem ProtocolIE-ID ::= 94 +id-E-RABToBeSwitchedULList ProtocolIE-ID ::= 95 +id-S-TMSI ProtocolIE-ID ::= 96 +id-cdma2000OneXRAND ProtocolIE-ID ::= 97 +id-RequestType ProtocolIE-ID ::= 98 +id-UE-S1AP-IDs ProtocolIE-ID ::= 99 +id-EUTRAN-CGI ProtocolIE-ID ::= 100 +id-OverloadResponse ProtocolIE-ID ::= 101 +id-cdma2000OneXSRVCCInfo ProtocolIE-ID ::= 102 +id-E-RABFailedToBeReleasedList ProtocolIE-ID ::= 103 +id-Source-ToTarget-TransparentContainer ProtocolIE-ID ::= 104 +id-ServedGUMMEIs ProtocolIE-ID ::= 105 +id-SubscriberProfileIDforRFP ProtocolIE-ID ::= 106 +id-UESecurityCapabilities ProtocolIE-ID ::= 107 +id-CSFallbackIndicator ProtocolIE-ID ::= 108 +id-CNDomain ProtocolIE-ID ::= 109 +id-E-RABReleasedList ProtocolIE-ID ::= 110 +id-MessageIdentifier ProtocolIE-ID ::= 111 +id-SerialNumber ProtocolIE-ID ::= 112 +id-WarningAreaList ProtocolIE-ID ::= 113 +id-RepetitionPeriod ProtocolIE-ID ::= 114 +id-NumberofBroadcastRequest ProtocolIE-ID ::= 115 +id-WarningType ProtocolIE-ID ::= 116 +id-WarningSecurityInfo ProtocolIE-ID ::= 117 +id-DataCodingScheme ProtocolIE-ID ::= 118 +id-WarningMessageContents ProtocolIE-ID ::= 119 +id-BroadcastCompletedAreaList ProtocolIE-ID ::= 120 +id-Inter-SystemInformationTransferTypeEDT ProtocolIE-ID ::= 121 +id-Inter-SystemInformationTransferTypeMDT ProtocolIE-ID ::= 122 +id-Target-ToSource-TransparentContainer ProtocolIE-ID ::= 123 +id-SRVCCOperationPossible ProtocolIE-ID ::= 124 +id-SRVCCHOIndication ProtocolIE-ID ::= 125 +id-NAS-DownlinkCount ProtocolIE-ID ::= 126 +id-CSG-Id ProtocolIE-ID ::= 127 +id-CSG-IdList ProtocolIE-ID ::= 128 +id-SONConfigurationTransferECT ProtocolIE-ID ::= 129 +id-SONConfigurationTransferMCT ProtocolIE-ID ::= 130 +id-TraceCollectionEntityIPAddress ProtocolIE-ID ::= 131 +id-MSClassmark2 ProtocolIE-ID ::= 132 +id-MSClassmark3 ProtocolIE-ID ::= 133 +id-RRC-Establishment-Cause ProtocolIE-ID ::= 134 +id-NASSecurityParametersfromE-UTRAN ProtocolIE-ID ::= 135 +id-NASSecurityParameterstoE-UTRAN ProtocolIE-ID ::= 136 +id-DefaultPagingDRX ProtocolIE-ID ::= 137 +id-Source-ToTarget-TransparentContainer-Secondary ProtocolIE-ID ::= 138 +id-Target-ToSource-TransparentContainer-Secondary ProtocolIE-ID ::= 139 +id-EUTRANRoundTripDelayEstimationInfo ProtocolIE-ID ::= 140 +id-BroadcastCancelledAreaList ProtocolIE-ID ::= 141 +id-ConcurrentWarningMessageIndicator ProtocolIE-ID ::= 142 +id-Data-Forwarding-Not-Possible ProtocolIE-ID ::= 143 +id-ExtendedRepetitionPeriod ProtocolIE-ID ::= 144 +id-CellAccessMode ProtocolIE-ID ::= 145 +id-CSGMembershipStatus ProtocolIE-ID ::= 146 +id-LPPa-PDU ProtocolIE-ID ::= 147 +id-Routing-ID ProtocolIE-ID ::= 148 +id-Time-Synchronisation-Info ProtocolIE-ID ::= 149 +id-PS-ServiceNotAvailable ProtocolIE-ID ::= 150 +id-PagingPriority ProtocolIE-ID ::= 151 +id-x2TNLConfigurationInfo ProtocolIE-ID ::= 152 +id-eNBX2ExtendedTransportLayerAddresses ProtocolIE-ID ::= 153 +id-GUMMEIList ProtocolIE-ID ::= 154 +id-GW-TransportLayerAddress ProtocolIE-ID ::= 155 +id-Correlation-ID ProtocolIE-ID ::= 156 +id-SourceMME-GUMMEI ProtocolIE-ID ::= 157 +id-MME-UE-S1AP-ID-2 ProtocolIE-ID ::= 158 +id-RegisteredLAI ProtocolIE-ID ::= 159 +id-RelayNode-Indicator ProtocolIE-ID ::= 160 +id-TrafficLoadReductionIndication ProtocolIE-ID ::= 161 +id-MDTConfiguration ProtocolIE-ID ::= 162 +id-MMERelaySupportIndicator ProtocolIE-ID ::= 163 +id-GWContextReleaseIndication ProtocolIE-ID ::= 164 +id-ManagementBasedMDTAllowed ProtocolIE-ID ::= 165 +id-PrivacyIndicator ProtocolIE-ID ::= 166 +id-Time-UE-StayedInCell-EnhancedGranularity ProtocolIE-ID ::= 167 +id-HO-Cause ProtocolIE-ID ::= 168 +id-VoiceSupportMatchIndicator ProtocolIE-ID ::= 169 +id-GUMMEIType ProtocolIE-ID ::= 170 +id-M3Configuration ProtocolIE-ID ::= 171 +id-M4Configuration ProtocolIE-ID ::= 172 +id-M5Configuration ProtocolIE-ID ::= 173 +id-MDT-Location-Info ProtocolIE-ID ::= 174 +id-MobilityInformation ProtocolIE-ID ::= 175 +id-Tunnel-Information-for-BBF ProtocolIE-ID ::= 176 +id-ManagementBasedMDTPLMNList ProtocolIE-ID ::= 177 +id-SignallingBasedMDTPLMNList ProtocolIE-ID ::= 178 +id-ULCOUNTValueExtended ProtocolIE-ID ::= 179 +id-DLCOUNTValueExtended ProtocolIE-ID ::= 180 +id-ReceiveStatusOfULPDCPSDUsExtended ProtocolIE-ID ::= 181 +id-ECGIListForRestart ProtocolIE-ID ::= 182 +id-SIPTO-Correlation-ID ProtocolIE-ID ::= 183 +id-SIPTO-L-GW-TransportLayerAddress ProtocolIE-ID ::= 184 +id-TransportInformation ProtocolIE-ID ::= 185 +id-LHN-ID ProtocolIE-ID ::= 186 +id-AdditionalCSFallbackIndicator ProtocolIE-ID ::= 187 +id-TAIListForRestart ProtocolIE-ID ::= 188 +id-UserLocationInformation ProtocolIE-ID ::= 189 +id-EmergencyAreaIDListForRestart ProtocolIE-ID ::= 190 +id-KillAllWarningMessages ProtocolIE-ID ::= 191 +id-Masked-IMEISV ProtocolIE-ID ::= 192 +id-eNBIndirectX2TransportLayerAddresses ProtocolIE-ID ::= 193 +id-uE-HistoryInformationFromTheUE ProtocolIE-ID ::= 194 +id-ProSeAuthorized ProtocolIE-ID ::= 195 +id-ExpectedUEBehaviour ProtocolIE-ID ::= 196 +id-LoggedMBSFNMDT ProtocolIE-ID ::= 197 +id-UERadioCapabilityForPaging ProtocolIE-ID ::= 198 +id-E-RABToBeModifiedListBearerModInd ProtocolIE-ID ::= 199 +id-E-RABToBeModifiedItemBearerModInd ProtocolIE-ID ::= 200 +id-E-RABNotToBeModifiedListBearerModInd ProtocolIE-ID ::= 201 +id-E-RABNotToBeModifiedItemBearerModInd ProtocolIE-ID ::= 202 +id-E-RABModifyListBearerModConf ProtocolIE-ID ::= 203 +id-E-RABModifyItemBearerModConf ProtocolIE-ID ::= 204 +id-E-RABFailedToModifyListBearerModConf ProtocolIE-ID ::= 205 +id-SON-Information-Report ProtocolIE-ID ::= 206 +id-Muting-Availability-Indication ProtocolIE-ID ::= 207 +id-Muting-Pattern-Information ProtocolIE-ID ::= 208 +id-Synchronisation-Information ProtocolIE-ID ::= 209 +id-E-RABToBeReleasedListBearerModConf ProtocolIE-ID ::= 210 +id-AssistanceDataForPaging ProtocolIE-ID ::= 211 +id-CellIdentifierAndCELevelForCECapableUEs ProtocolIE-ID ::= 212 +id-InformationOnRecommendedCellsAndENBsForPaging ProtocolIE-ID ::= 213 +id-RecommendedCellItem ProtocolIE-ID ::= 214 +id-RecommendedENBItem ProtocolIE-ID ::= 215 +id-ProSeUEtoNetworkRelaying ProtocolIE-ID ::= 216 +id-ULCOUNTValuePDCP-SNlength18 ProtocolIE-ID ::= 217 +id-DLCOUNTValuePDCP-SNlength18 ProtocolIE-ID ::= 218 +id-ReceiveStatusOfULPDCPSDUsPDCP-SNlength18 ProtocolIE-ID ::= 219 +id-M6Configuration ProtocolIE-ID ::= 220 +id-M7Configuration ProtocolIE-ID ::= 221 +id-PWSfailedECGIList ProtocolIE-ID ::= 222 +id-MME-Group-ID ProtocolIE-ID ::= 223 +id-Additional-GUTI ProtocolIE-ID ::= 224 +id-S1-Message ProtocolIE-ID ::= 225 +id-CSGMembershipInfo ProtocolIE-ID ::= 226 +id-Paging-eDRXInformation ProtocolIE-ID ::= 227 +id-UE-RetentionInformation ProtocolIE-ID ::= 228 +id-UE-Usage-Type ProtocolIE-ID ::= 230 +id-extended-UEIdentityIndexValue ProtocolIE-ID ::= 231 +id-RAT-Type ProtocolIE-ID ::= 232 +id-BearerType ProtocolIE-ID ::= 233 +id-NB-IoT-DefaultPagingDRX ProtocolIE-ID ::= 234 +id-E-RABFailedToResumeListResumeReq ProtocolIE-ID ::= 235 +id-E-RABFailedToResumeItemResumeReq ProtocolIE-ID ::= 236 +id-E-RABFailedToResumeListResumeRes ProtocolIE-ID ::= 237 +id-E-RABFailedToResumeItemResumeRes ProtocolIE-ID ::= 238 +id-NB-IoT-Paging-eDRXInformation ProtocolIE-ID ::= 239 +id-V2XServicesAuthorized ProtocolIE-ID ::= 240 +id-UEUserPlaneCIoTSupportIndicator ProtocolIE-ID ::= 241 +id-CE-mode-B-SupportIndicator ProtocolIE-ID ::= 242 +id-SRVCCOperationNotPossible ProtocolIE-ID ::= 243 +id-NB-IoT-UEIdentityIndexValue ProtocolIE-ID ::= 244 +id-RRC-Resume-Cause ProtocolIE-ID ::= 245 +id-DCN-ID ProtocolIE-ID ::= 246 +id-ServedDCNs ProtocolIE-ID ::= 247 +id-UESidelinkAggregateMaximumBitrate ProtocolIE-ID ::= 248 +id-DLNASPDUDeliveryAckRequest ProtocolIE-ID ::= 249 +id-Coverage-Level ProtocolIE-ID ::= 250 +id-EnhancedCoverageRestricted ProtocolIE-ID ::= 251 +id-UE-Level-QoS-Parameters ProtocolIE-ID ::= 252 +id-DL-CP-SecurityInformation ProtocolIE-ID ::= 253 +id-UL-CP-SecurityInformation ProtocolIE-ID ::= 254 +id-extended-e-RAB-MaximumBitrateDL ProtocolIE-ID ::= 255 +id-extended-e-RAB-MaximumBitrateUL ProtocolIE-ID ::= 256 +id-extended-e-RAB-GuaranteedBitrateDL ProtocolIE-ID ::= 257 +id-extended-e-RAB-GuaranteedBitrateUL ProtocolIE-ID ::= 258 +id-extended-uEaggregateMaximumBitRateDL ProtocolIE-ID ::= 259 +id-extended-uEaggregateMaximumBitRateUL ProtocolIE-ID ::= 260 +id-NRrestrictioninEPSasSecondaryRAT ProtocolIE-ID ::= 261 +id-UEAppLayerMeasConfig ProtocolIE-ID ::= 262 +id-UE-Application-Layer-Measurement-Capability ProtocolIE-ID ::= 263 +id-SecondaryRATDataUsageReportList ProtocolIE-ID ::= 264 +id-SecondaryRATDataUsageReportItem ProtocolIE-ID ::= 265 +id-HandoverFlag ProtocolIE-ID ::= 266 +id-E-RABUsageReportItem ProtocolIE-ID ::= 267 +id-SecondaryRATDataUsageRequest ProtocolIE-ID ::= 268 +id-NRUESecurityCapabilities ProtocolIE-ID ::= 269 +id-UnlicensedSpectrumRestriction ProtocolIE-ID ::= 270 +id-CE-ModeBRestricted ProtocolIE-ID ::= 271 +id-LTE-M-Indication ProtocolIE-ID ::= 272 +id-DownlinkPacketLossRate ProtocolIE-ID ::= 273 +id-UplinkPacketLossRate ProtocolIE-ID ::= 274 +id-UECapabilityInfoRequest ProtocolIE-ID ::= 275 +id-serviceType ProtocolIE-ID ::= 276 +id-AerialUEsubscriptionInformation ProtocolIE-ID ::= 277 +id-Subscription-Based-UE-DifferentiationInfo ProtocolIE-ID ::= 278 +id-EndIndication ProtocolIE-ID ::= 280 +id-EDT-Session ProtocolIE-ID ::= 281 +id-CNTypeRestrictions ProtocolIE-ID ::= 282 +id-PendingDataIndication ProtocolIE-ID ::= 283 +id-BluetoothMeasurementConfiguration ProtocolIE-ID ::= 284 +id-WLANMeasurementConfiguration ProtocolIE-ID ::= 285 +id-WarningAreaCoordinates ProtocolIE-ID ::= 286 +id-NRrestrictionin5GS ProtocolIE-ID ::= 287 +id-PSCellInformation ProtocolIE-ID ::= 288 +id-LastNG-RANPLMNIdentity ProtocolIE-ID ::= 290 +id-ConnectedengNBList ProtocolIE-ID ::= 291 +id-ConnectedengNBToAddList ProtocolIE-ID ::= 292 +id-ConnectedengNBToRemoveList ProtocolIE-ID ::= 293 +id-EN-DCSONConfigurationTransfer-ECT ProtocolIE-ID ::= 294 +id-EN-DCSONConfigurationTransfer-MCT ProtocolIE-ID ::= 295 +id-IMSvoiceEPSfallbackfrom5G ProtocolIE-ID ::= 296 +id-TimeSinceSecondaryNodeRelease ProtocolIE-ID ::= 297 +id-RequestTypeAdditionalInfo ProtocolIE-ID ::= 298 +id-AdditionalRRMPriorityIndex ProtocolIE-ID ::= 299 +id-ContextatSource ProtocolIE-ID ::= 300 +id-IAB-Authorized ProtocolIE-ID ::= 301 +id-IAB-Node-Indication ProtocolIE-ID ::= 302 +id-IAB-Supported ProtocolIE-ID ::= 303 +id-DataSize ProtocolIE-ID ::= 304 +id-Ethernet-Type ProtocolIE-ID ::= 305 +id-NRV2XServicesAuthorized ProtocolIE-ID ::= 306 +id-NRUESidelinkAggregateMaximumBitrate ProtocolIE-ID ::= 307 +id-PC5QoSParameters ProtocolIE-ID ::= 308 +id-IntersystemSONConfigurationTransferMCT ProtocolIE-ID ::= 309 +id-IntersystemSONConfigurationTransferECT ProtocolIE-ID ::= 310 +id-IntersystemMeasurementConfiguration ProtocolIE-ID ::= 311 +id-SourceNodeID ProtocolIE-ID ::= 312 +id-NB-IoT-RLF-Report-Container ProtocolIE-ID ::= 313 +id-UERadioCapabilityID ProtocolIE-ID ::= 314 +id-UERadioCapability-NR-Format ProtocolIE-ID ::= 315 +id-MDTConfigurationNR ProtocolIE-ID ::= 316 +id-DAPSRequestInfo ProtocolIE-ID ::= 317 +id-DAPSResponseInfoList ProtocolIE-ID ::= 318 +id-DAPSResponseInfoItem ProtocolIE-ID ::= 319 +id-NotifySourceeNB ProtocolIE-ID ::= 320 +id-eNB-EarlyStatusTransfer-TransparentContainer ProtocolIE-ID ::= 321 +id-Bearers-SubjectToEarlyStatusTransfer-Item ProtocolIE-ID ::= 322 +id-WUS-Assistance-Information ProtocolIE-ID ::= 323 +id-NB-IoT-PagingDRX ProtocolIE-ID ::= 324 +id-TraceCollectionEntityURI ProtocolIE-ID ::= 325 +id-EmergencyIndicator ProtocolIE-ID ::= 326 + +END + +9.3.7 Container Definitions +-- ************************************************************** +-- +-- Container definitions +-- +-- ************************************************************** + +S1AP-Containers { +itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) +eps-Access (21) modules (3) s1ap (1) version1 (1) s1ap-Containers (5) } + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +-- ************************************************************** +-- +-- IE parameter types from other modules. +-- +-- ************************************************************** + +IMPORTS + Criticality, + Presence, + PrivateIE-ID, + ProtocolExtensionID, + ProtocolIE-ID +FROM S1AP-CommonDataTypes + + maxPrivateIEs, + maxProtocolExtensions, + maxProtocolIEs +FROM S1AP-Constants; + +-- ************************************************************** +-- +-- Class Definition for Protocol IEs +-- +-- ************************************************************** + +S1AP-PROTOCOL-IES ::= CLASS { + &id ProtocolIE-ID UNIQUE, + &criticality Criticality, + &Value, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + TYPE &Value + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Protocol IEs +-- +-- ************************************************************** + +S1AP-PROTOCOL-IES-PAIR ::= CLASS { + &id ProtocolIE-ID UNIQUE, + &firstCriticality Criticality, + &FirstValue, + &secondCriticality Criticality, + &SecondValue, + &presence Presence +} +WITH SYNTAX { + ID &id + FIRST CRITICALITY &firstCriticality + FIRST TYPE &FirstValue + SECOND CRITICALITY &secondCriticality + SECOND TYPE &SecondValue + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Protocol Extensions +-- +-- ************************************************************** + +S1AP-PROTOCOL-EXTENSION ::= CLASS { + &id ProtocolExtensionID UNIQUE, + &criticality Criticality, + &Extension, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + EXTENSION &Extension + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Class Definition for Private IEs +-- +-- ************************************************************** + +S1AP-PRIVATE-IES ::= CLASS { + &id PrivateIE-ID, + &criticality Criticality, + &Value, + &presence Presence +} +WITH SYNTAX { + ID &id + CRITICALITY &criticality + TYPE &Value + PRESENCE &presence +} + +-- ************************************************************** +-- +-- Container for Protocol IEs +-- +-- ************************************************************** + +ProtocolIE-Container {S1AP-PROTOCOL-IES : IEsSetParam} ::= + SEQUENCE (SIZE (0..maxProtocolIEs)) OF + ProtocolIE-Field {{IEsSetParam}} + +ProtocolIE-SingleContainer {S1AP-PROTOCOL-IES : IEsSetParam} ::= + ProtocolIE-Field {{IEsSetParam}} + +ProtocolIE-Field {S1AP-PROTOCOL-IES : IEsSetParam} ::= SEQUENCE { + id S1AP-PROTOCOL-IES.&id ({IEsSetParam}), + criticality S1AP-PROTOCOL-IES.&criticality ({IEsSetParam}{@id}), + value S1AP-PROTOCOL-IES.&Value ({IEsSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container for Protocol IE Pairs +-- +-- ************************************************************** + +ProtocolIE-ContainerPair {S1AP-PROTOCOL-IES-PAIR : IEsSetParam} ::= + SEQUENCE (SIZE (0..maxProtocolIEs)) OF + ProtocolIE-FieldPair {{IEsSetParam}} + +ProtocolIE-FieldPair {S1AP-PROTOCOL-IES-PAIR : IEsSetParam} ::= SEQUENCE { + id S1AP-PROTOCOL-IES-PAIR.&id ({IEsSetParam}), + firstCriticality S1AP-PROTOCOL-IES-PAIR.&firstCriticality ({IEsSetParam}{@id}), + firstValue S1AP-PROTOCOL-IES-PAIR.&FirstValue ({IEsSetParam}{@id}), + secondCriticality S1AP-PROTOCOL-IES-PAIR.&secondCriticality ({IEsSetParam}{@id}), + secondValue S1AP-PROTOCOL-IES-PAIR.&SecondValue ({IEsSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container Lists for Protocol IE Containers +-- +-- ************************************************************** + +ProtocolIE-ContainerList {INTEGER : lowerBound, INTEGER : upperBound, S1AP-PROTOCOL-IES : IEsSetParam} ::= + SEQUENCE (SIZE (lowerBound..upperBound)) OF + ProtocolIE-SingleContainer {{IEsSetParam}} + +ProtocolIE-ContainerPairList {INTEGER : lowerBound, INTEGER : upperBound, S1AP-PROTOCOL-IES-PAIR : IEsSetParam} ::= + SEQUENCE (SIZE (lowerBound..upperBound)) OF + ProtocolIE-ContainerPair {{IEsSetParam}} + +-- ************************************************************** +-- +-- Container for Protocol Extensions +-- +-- ************************************************************** + +ProtocolExtensionContainer {S1AP-PROTOCOL-EXTENSION : ExtensionSetParam} ::= + SEQUENCE (SIZE (1..maxProtocolExtensions)) OF + ProtocolExtensionField {{ExtensionSetParam}} + +ProtocolExtensionField {S1AP-PROTOCOL-EXTENSION : ExtensionSetParam} ::= SEQUENCE { + id S1AP-PROTOCOL-EXTENSION.&id ({ExtensionSetParam}), + criticality S1AP-PROTOCOL-EXTENSION.&criticality ({ExtensionSetParam}{@id}), + extensionValue S1AP-PROTOCOL-EXTENSION.&Extension ({ExtensionSetParam}{@id}) +} + +-- ************************************************************** +-- +-- Container for Private IEs +-- +-- ************************************************************** + +PrivateIE-Container {S1AP-PRIVATE-IES : IEsSetParam } ::= + SEQUENCE (SIZE (1.. maxPrivateIEs)) OF + PrivateIE-Field {{IEsSetParam}} + +PrivateIE-Field {S1AP-PRIVATE-IES : IEsSetParam} ::= SEQUENCE { + id S1AP-PRIVATE-IES.&id ({IEsSetParam}), + criticality S1AP-PRIVATE-IES.&criticality ({IEsSetParam}{@id}), + value S1AP-PRIVATE-IES.&Value ({IEsSetParam}{@id}) +} + +END diff --git a/lib/core/meson.build b/lib/core/meson.build index bb623c2d8..2b6b4cd9c 100644 --- a/lib/core/meson.build +++ b/lib/core/meson.build @@ -304,15 +304,17 @@ endif libcore_inc = include_directories('.') +libtalloc_dep = dependency('talloc') + libcore = library('ogscore', sources : libcore_sources, version : libogslib_version, c_args : '-DOGS_CORE_COMPILATION', include_directories : [libcore_inc, libinc], - dependencies : [threads, librt, libexecinfo, libsocket], + dependencies : [threads, librt, libexecinfo, libsocket, libtalloc_dep], install : true) libcore_dep = declare_dependency( link_with : libcore, include_directories : [libcore_inc, libinc], - dependencies : [threads, librt, libexecinfo, libsocket]) + dependencies : [threads, librt, libexecinfo, libsocket, libtalloc_dep]) diff --git a/lib/core/ogs-core.c b/lib/core/ogs-core.c index fa2e7ce9f..3341df616 100644 --- a/lib/core/ogs-core.c +++ b/lib/core/ogs-core.c @@ -40,6 +40,7 @@ void ogs_core_initialize(void) { ogs_log_init(); ogs_pkbuf_init(); + ogs_mem_init(); ogs_socket_init(); ogs_tlv_init(); @@ -55,6 +56,7 @@ void ogs_core_terminate(void) { ogs_tlv_final(); ogs_socket_final(); + ogs_mem_final(); ogs_pkbuf_final(); ogs_log_final(); } diff --git a/lib/core/ogs-hash.c b/lib/core/ogs-hash.c index 13cec62ba..79d8e151e 100644 --- a/lib/core/ogs-hash.c +++ b/lib/core/ogs-hash.c @@ -284,8 +284,15 @@ static ogs_hash_entry_t **find_entry(ogs_hash_t *ht, /* add a new entry for non-NULL values */ if ((he = ht->free) != NULL) ht->free = he->next; - else + else { +#if OGS_USE_TALLOC + he = ogs_talloc_size(__ogs_talloc_core, + sizeof(*he), file_line); + ogs_assert(he); +#else he = ogs_malloc_debug(sizeof(*he), file_line, true); +#endif + } he->next = NULL; he->hash = hash; he->key = key; diff --git a/lib/core/ogs-memory.c b/lib/core/ogs-memory.c index 37fb52f0e..944ac8cc9 100644 --- a/lib/core/ogs-memory.c +++ b/lib/core/ogs-memory.c @@ -22,6 +22,93 @@ #undef OGS_LOG_DOMAIN #define OGS_LOG_DOMAIN __ogs_mem_domain +/***************************************** + * Memory Pool - Use talloc library + *****************************************/ + +void *__ogs_talloc_asn1c; +void *__ogs_talloc_core; + +static ogs_thread_mutex_t mutex; + +void ogs_mem_init(void) +{ + ogs_thread_mutex_init(&mutex); + +#define TALLOC_MEMSIZE 1 + __ogs_talloc_core = talloc_named_const(NULL, TALLOC_MEMSIZE, "core"); + __ogs_talloc_asn1c = talloc_named_const(NULL, TALLOC_MEMSIZE, "asn1c"); +} + +void ogs_mem_final(void) +{ + if (talloc_total_size(__ogs_talloc_asn1c) != TALLOC_MEMSIZE) + talloc_report_full(__ogs_talloc_asn1c, stderr); + if (talloc_total_size(__ogs_talloc_core) != TALLOC_MEMSIZE) + talloc_report_full(__ogs_talloc_core, stderr); + + talloc_free(__ogs_talloc_asn1c); + talloc_free(__ogs_talloc_core); + + ogs_thread_mutex_destroy(&mutex); +} + +void *ogs_talloc_size(const void *ctx, size_t size, const char *name) +{ + void *ptr = NULL; + + ogs_thread_mutex_lock(&mutex); + + ptr = talloc_named_const(ctx, size, name); + ogs_expect(ptr); + + ogs_thread_mutex_unlock(&mutex); + + return ptr; +} + +void *ogs_talloc_zero_size(const void *ctx, size_t size, const char *name) +{ + void *ptr = NULL; + + ogs_thread_mutex_lock(&mutex); + + ptr = _talloc_zero(ctx, size, name); + ogs_expect(ptr); + + ogs_thread_mutex_unlock(&mutex); + + return ptr; +} + +void *ogs_talloc_realloc_size( + const void *context, void *oldptr, size_t size, const char *name) +{ + void *ptr = NULL; + + ogs_thread_mutex_lock(&mutex); + + ptr = _talloc_realloc(context, oldptr, size, name); + ogs_expect(ptr); + + ogs_thread_mutex_unlock(&mutex); + + return ptr; +} + +int ogs_talloc_free(void *ptr, const char *location) +{ + int ret; + + ogs_thread_mutex_lock(&mutex); + + ret = _talloc_free(ptr, location); + + ogs_thread_mutex_unlock(&mutex); + + return ret; +} + void *ogs_malloc_debug(size_t size, const char *file_line, bool abort) { size_t headroom = 0; @@ -44,19 +131,21 @@ void *ogs_malloc_debug(size_t size, const char *file_line, bool abort) return pkbuf->data; } -void ogs_free(void *ptr) +int ogs_free_debug(void *ptr) { size_t headroom; ogs_pkbuf_t *pkbuf = NULL; if (!ptr) - return; + return OGS_ERROR; headroom = sizeof(ogs_pkbuf_t *); memcpy(&pkbuf, (unsigned char*)ptr - headroom, headroom); ogs_assert(pkbuf); ogs_pkbuf_free(pkbuf); + + return OGS_OK; } void *ogs_calloc_debug( diff --git a/lib/core/ogs-memory.h b/lib/core/ogs-memory.h index 3df380273..bc2e91b62 100644 --- a/lib/core/ogs-memory.h +++ b/lib/core/ogs-memory.h @@ -28,6 +28,11 @@ extern "C" { #endif +#define OGS_USE_TALLOC 0 + +void ogs_mem_init(void); +void ogs_mem_final(void); + #define OGS_MEM_CLEAR(__dATA) \ do { \ if ((__dATA)) { \ @@ -36,23 +41,61 @@ extern "C" { } \ } while(0) +#include + +extern void *__ogs_talloc_asn1c; +extern void *__ogs_talloc_core; + +void *ogs_talloc_size(const void *ctx, size_t size, const char *name); +void *ogs_talloc_zero_size(const void *ctx, size_t size, const char *name); +void *ogs_talloc_realloc_size( + const void *context, void *oldptr, size_t size, const char *name); +int ogs_talloc_free(void *ptr, const char *location); + +void *ogs_malloc_debug(size_t size, const char *file_line, bool abort); +void *ogs_calloc_debug( + size_t nmemb, size_t size, const char *file_line, bool abort); +void *ogs_realloc_debug( + void *ptr, size_t size, const char *file_line, bool abort); +int ogs_free_debug(void *ptr); + +#if OGS_USE_TALLOC + +/***************************************** + * Memory Pool - Use talloc library + *****************************************/ + +#define ogs_malloc(size) \ + ogs_talloc_size(__ogs_talloc_core, size, __location__) +#define ogs_calloc(nmemb, size) \ + ogs_talloc_zero_size(__ogs_talloc_core, (nmemb) * (size), __location__) +#define ogs_realloc(oldptr, size) \ + ogs_talloc_realloc_size(__ogs_talloc_core, oldptr, size, __location__) +#define ogs_malloc_or_assert(size) ogs_malloc(size) +#define ogs_calloc_or_assert(nmemb, size) ogs_calloc(nmemb, size) +#define ogs_realloc_or_assert(ptr, size) ogs_realloc(ptr, size) +#define ogs_free(ptr) ogs_talloc_free(ptr, __location__) + +#else + +/***************************************** + * Memory Pool - Use pkbuf library + *****************************************/ + #define ogs_malloc(size) ogs_malloc_debug(size, OGS_FILE_LINE, false) #define ogs_malloc_or_assert(size) \ ogs_malloc_debug(size, OGS_FILE_LINE, true) -void *ogs_malloc_debug(size_t size, const char *file_line, bool abort); -void ogs_free(void *ptr); #define ogs_calloc(nmemb, size) \ ogs_calloc_debug(nmemb, size, OGS_FILE_LINE, false) #define ogs_calloc_or_assert(nmemb, size) \ ogs_calloc_debug(nmemb, size, OGS_FILE_LINE, true) -void *ogs_calloc_debug( - size_t nmemb, size_t size, const char *file_line, bool abort); #define ogs_realloc(ptr, size) \ ogs_realloc_debug(ptr, size, OGS_FILE_LINE, false) #define ogs_realloc_or_assert(ptr, size) \ ogs_realloc_debug(ptr, size, OGS_FILE_LINE, true) -void *ogs_realloc_debug( - void *ptr, size_t size, const char *file_line, bool abort); +#define ogs_free(ptr) ogs_free_debug(ptr) + +#endif #ifdef __cplusplus } diff --git a/lib/core/ogs-strings.c b/lib/core/ogs-strings.c index 10758336f..861aa52bc 100644 --- a/lib/core/ogs-strings.c +++ b/lib/core/ogs-strings.c @@ -130,6 +130,7 @@ char *ogs_strdup_debug(const char *s, const char *file_line, bool abort) len = strlen(s) + 1; res = ogs_memdup_debug(s, len, file_line, abort); + if (abort == true) ogs_assert(res); ogs_expect_or_return_val(res, res); return res; } @@ -146,7 +147,11 @@ char *ogs_strndup_debug( end = memchr(s, '\0', n); if (end != NULL) n = end - s; +#if OGS_USE_TALLOC + res = ogs_talloc_size(__ogs_talloc_core, n + 1, file_line); +#else res = ogs_malloc_debug(n + 1, file_line, abort); +#endif ogs_expect_or_return_val(res, res); memcpy(res, s, n); res[n] = '\0'; @@ -161,7 +166,11 @@ void *ogs_memdup_debug( if (m == NULL) return NULL; +#if OGS_USE_TALLOC + res = ogs_talloc_size(__ogs_talloc_core, n, file_line); +#else res = ogs_malloc_debug(n, file_line, abort); +#endif ogs_expect_or_return_val(res, res); memcpy(res, m, n); return res; @@ -212,7 +221,12 @@ char *ogs_msprintf_debug( in some architectures, vsnprintf can modify argp */ out_len = vsnprintf(NULL, 0, message, argp); +#if OGS_USE_TALLOC + out = ogs_talloc_size(__ogs_talloc_core, + out_len + sizeof(char), file_line); +#else out = ogs_malloc_debug(out_len + sizeof(char), file_line, abort); +#endif if (out == NULL) { va_end(argp); va_end(argp_cpy); @@ -257,7 +271,12 @@ char *ogs_mstrcatf_debug( in some architectures, vsnprintf can modify argp */ out_len = vsnprintf(NULL, 0, message, argp); +#if OGS_USE_TALLOC + out = ogs_talloc_size(__ogs_talloc_core, + out_len + sizeof(char), file_line); +#else out = ogs_malloc_debug(out_len+sizeof(char), file_line, abort); +#endif if (out != NULL) { vsnprintf(out, (out_len+sizeof(char)), message, argp_cpy); } diff --git a/lib/ngap/ogs-ngap.h b/lib/ngap/ogs-ngap.h index d8bb1fbee..f8ea0710c 100644 --- a/lib/ngap/ogs-ngap.h +++ b/lib/ngap/ogs-ngap.h @@ -629,6 +629,12 @@ #include "NGAP_XnTLAs.h" #include "NGAP_XnTNLConfigurationInfo.h" #include "NGAP_EXTERNAL.h" +#include "NGAP_ExtendedUEIdentityIndexValue.h" +#include "NGAP_MicoAllPLMN.h" +#include "NGAP_QosFlowFeedbackItem.h" +#include "NGAP_QosFlowFeedbackList.h" +#include "NGAP_UpdateFeedback.h" + #include "asn1c/util/conv.h" #include "asn1c/util/message.h" diff --git a/lib/s1ap/ogs-s1ap.h b/lib/s1ap/ogs-s1ap.h index 3a2d0ecee..2f76b882d 100644 --- a/lib/s1ap/ogs-s1ap.h +++ b/lib/s1ap/ogs-s1ap.h @@ -541,6 +541,7 @@ #include "S1AP_X2TNLConfigurationInfo.h" #include "S1AP_asn_constant.h" #include "S1AP_EXTERNAL.h" +#include "S1AP_EmergencyIndicator.h" #include "asn1c/util/conv.h" #include "asn1c/util/message.h" diff --git a/src/amf/ngap-handler.c b/src/amf/ngap-handler.c index 1257b5b49..e62569b9a 100644 --- a/src/amf/ngap-handler.c +++ b/src/amf/ngap-handler.c @@ -305,7 +305,7 @@ void ngap_handle_ng_setup_request(amf_gnb_t *gnb, ogs_ngap_message_t *message) ogs_warn("NG-Setup failure:"); ogs_warn(" Cannot find Served TAI. Check 'amf.tai' configuration"); group = NGAP_Cause_PR_misc; - cause = NGAP_CauseMisc_unknown_PLMN; + cause = NGAP_CauseMisc_unknown_PLMN_or_SNPN; ogs_assert(OGS_OK == ngap_send_ng_setup_failure(gnb, group, cause)); @@ -3793,7 +3793,7 @@ void ngap_handle_ran_configuration_update( ogs_warn(" Cannot find Served TAI. " "Check 'amf.tai' configuration"); group = NGAP_Cause_PR_misc; - cause = NGAP_CauseMisc_unknown_PLMN; + cause = NGAP_CauseMisc_unknown_PLMN_or_SNPN; ogs_assert(OGS_OK == ngap_send_ran_configuration_update_failure(gnb, group, cause));