aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/HI2Operations/TS101909201.asn
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-02-28 20:49:06 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-02-28 20:49:06 +0000
commiteb4d702bfacdd9af7a19e98388c36bf7ad09015b (patch)
treec0d0938dc2660178bfa4d0bd600696d57c2c2b5f /asn1/HI2Operations/TS101909201.asn
parent58edf7643332b0474623807cf753dde9ed19bc3f (diff)
From Erwin van Eijk:
Add ETSI ts101671 dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4543 I added dissection of UmtsQos, IMSevent, LDIevent, TARGETACTIVITYMONITOR-1 TARGETACTIVITYMONITORind, TARGETCOMMSMONITORind, TTRAFFICind, CTTRAFFICind And used the original HI2Operations ASN1 file.l svn path=/trunk/; revision=32052
Diffstat (limited to 'asn1/HI2Operations/TS101909201.asn')
-rw-r--r--asn1/HI2Operations/TS101909201.asn77
1 files changed, 77 insertions, 0 deletions
diff --git a/asn1/HI2Operations/TS101909201.asn b/asn1/HI2Operations/TS101909201.asn
new file mode 100644
index 0000000000..159d015b47
--- /dev/null
+++ b/asn1/HI2Operations/TS101909201.asn
@@ -0,0 +1,77 @@
+-- $Id$
+TS101909201 {itu-t (0) identified-organization (4) etsi (0) ts101909 (1909) part20 (20) subpart1(1) interceptVersion (0)}
+
+DEFINITIONS AUTOMATIC TAGS ::=
+
+BEGIN
+
+IMPORTS
+
+CdcPdu FROM
+ PCESP {iso(1) identified-organization(3) dod(6) internet(1) private(4)
+ enterprise(1) cable-Television-Laboratories-Inc(4491) clabProject(2)
+ clabProjPacketCable(2) pktcLawfulIntercept(5) pcesp(1) version-4(4)};
+
+TARGETACTIVITYMONITOR-1 ::= SEQUENCE
+{
+ version INTEGER DEFAULT 1, -- header, version -
+ lIInstanceid LIIDType, -- header, who -
+ timestamp UTCTime, -- header, when -
+ targetLocation LocationType, -- header, where -
+ direction DirectionType,
+ iRITransaction IRITransactionType DEFAULT iRIreport,
+ iRITransactionNumber INTEGER,
+ userSignal UserSignalType, -- Either copy or interpreted signalling
+ cryptoCheckSum BIT STRING OPTIONAL
+}
+
+TTRAFFIC ::= SEQUENCE
+{
+ version INTEGER DEFAULT 1, -- header, version -
+ lIInstanceid LIIDType,
+ iRITransactionNumber INTEGER,
+ trafficPacket BIT STRING,
+ cryptoChecksum BIT STRING OPTIONAL
+}
+
+CTTRAFFIC ::= SEQUENCE
+{
+ version INTEGER DEFAULT 1, -- header, version -
+ lIInstanceid LIIDType,
+ correspondentCount INTEGER,
+ iRITransactionNumber INTEGER,
+ trafficPacket BIT STRING,
+ cryptoChecksum BIT STRING OPTIONAL
+}
+
+DirectionType ::= ENUMERATED
+{
+ toTarget,
+ fromTarget,
+ unknown
+}
+
+UserSignalType ::= CHOICE
+{
+ copySignal BIT STRING,
+ interpretedSignal INTEGER,
+ cdcPdu CdcPdu
+}
+
+IRITransactionType ::= ENUMERATED
+{
+ iRIbegin,
+ iRIcontinue,
+ iRIend,
+ iRIreport
+}
+
+LocationType ::= CHOICE
+{
+ geodeticData BIT STRING,
+ nameAddress PrintableString (SIZE (1..100))
+}
+
+LIIDType ::= INTEGER (0..65535) -- 16 bit integer to identify interception
+
+END \ No newline at end of file