aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/x2ap/X2AP-CommonDataTypes.asn
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2007-12-16 14:26:18 +0000
committerAnders Broman <anders.broman@ericsson.com>2007-12-16 14:26:18 +0000
commit2a7d7da15770f9c51489af0e86c0c16e44c8726f (patch)
tree953094499a137693ec02495302f3a32cb650e33b /asn1/x2ap/X2AP-CommonDataTypes.asn
parentfa34d4685193d15f856182c73e097702be1453e3 (diff)
Initial work on a E-UTRAN X2 Application Protocol (X2AP) packet dissector.
svn path=/trunk/; revision=23886
Diffstat (limited to 'asn1/x2ap/X2AP-CommonDataTypes.asn')
-rw-r--r--asn1/x2ap/X2AP-CommonDataTypes.asn51
1 files changed, 51 insertions, 0 deletions
diff --git a/asn1/x2ap/X2AP-CommonDataTypes.asn b/asn1/x2ap/X2AP-CommonDataTypes.asn
new file mode 100644
index 0000000000..fef4d533d6
--- /dev/null
+++ b/asn1/x2ap/X2AP-CommonDataTypes.asn
@@ -0,0 +1,51 @@
+-- $Id$
+-- 3GPP TS 36.423 V8.0.0 (2007-12)
+-- 9.3.6 Common Definitions
+-- **************************************************************
+--
+-- Common definitions
+--
+-- **************************************************************
+
+X2AP-CommonDataTypes {
+itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
+eps-Access (21) modules (3) x2ap (2) version1 (1) x2ap-CommonDataTypes (3) }
+
+DEFINITIONS AUTOMATIC TAGS ::=
+
+BEGIN
+
+-- **************************************************************
+--
+-- Extension constants
+--
+-- **************************************************************
+
+maxPrivateIEs INTEGER ::= 65535
+maxProtocolExtensions INTEGER ::= 65535
+maxProtocolIEs INTEGER ::= 65535
+
+-- **************************************************************
+--
+-- Common Data Types
+--
+-- **************************************************************
+
+Criticality ::= ENUMERATED { reject, ignore, notify }
+
+Presence ::= ENUMERATED { optional, conditional, mandatory }
+
+PrivateIE-ID ::= CHOICE {
+ local INTEGER (0.. maxPrivateIEs),
+ global OBJECT IDENTIFIER
+}
+
+ProcedureCode ::= INTEGER (0..255)
+
+
+ProtocolIE-ID ::= INTEGER (0..maxProtocolIEs)
+
+
+TriggeringMessage ::= ENUMERATED { initiating-message, successful-outcome, unsuccessful-outcome}
+
+END