blob: 8c4bdc8445b733d28ef2888de0cb350673a96a25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
-- RRLP-Messages.asn
-- Taken from 3GPP TS 44.031 V11.0.0 (2012-09)
-- http://www.3gpp.org/ftp/Specs/archive/44_series/44.031/44031-b00.zip/44031-b00.doc
--
-- 3.1 General Format of RRLP Message
--
RRLP-Messages
-- { RRLP-messages }
DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
MsrPosition-Req, MsrPosition-Rsp, AssistanceData,
ProtocolError, PosCapability-Req, PosCapability-Rsp
FROM
RRLP-Components -- { RRLP-Components }
;
PDU ::= SEQUENCE {
referenceNumber INTEGER (0..7),
component RRLP-Component
}
RRLP-Component ::= CHOICE {
msrPositionReq MsrPosition-Req,
msrPositionRsp MsrPosition-Rsp,
assistanceData AssistanceData,
assistanceDataAck NULL,
protocolError ProtocolError,
...,
posCapabilityReq PosCapability-Req,
posCapabilityRsp PosCapability-Rsp
}
END
|