blob: 79140e2a2bc059b8ef849d07bccb9e15f1d4098e [file] [log] [blame]
Sylvain Munaut0f914132009-12-22 21:53:22 +01001-- RRLP-Messages.asn
2-- $Id$
3-- Taken from 3GPP TS 44.031 V7.4.0 (2007-03)
4-- http://www.3gpp.org/ftp/Specs/archive/44_series/44.031/44031-740.zip/44031-740.doc
5--
6-- 3.1 General Format of RRLP Message
7--
8
9RRLP-Messages
10-- { RRLP-messages }
11
12DEFINITIONS AUTOMATIC TAGS ::=
13
14BEGIN
15
16IMPORTS
17 MsrPosition-Req, MsrPosition-Rsp, AssistanceData,
18 ProtocolError
19FROM
20 RRLP-Components -- { RRLP-Components }
21;
22
23PDU ::= SEQUENCE {
24 referenceNumber INTEGER (0..7),
25 component RRLP-Component
26}
27
28RRLP-Component ::= CHOICE {
29 msrPositionReq MsrPosition-Req,
30 msrPositionRsp MsrPosition-Rsp,
31 assistanceData AssistanceData,
32 assistanceDataAck NULL,
33 protocolError ProtocolError,
34 ...
35
36}
37
38END