aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/ulp/ULP.asn
blob: e5b9753dc6945aba1c0ae5cac5ebcd0fc8287367 (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
40
41
42
43
44
45
46
47
48
49
50
-- UPL.asn
--
-- Taken from OMA UserPlane Location Protocol Candidate Version 1.0 – 22 Jan 2007
-- http://www.openmobilealliance.org/release_program/docs/SUPL/V1_0-20070122-C/OMA-TS-ULP-V1_0-20070122-C.pdf
--
-- 8.1 Common Part
--

ULP DEFINITIONS AUTOMATIC TAGS ::= 
BEGIN 
 
IMPORTS 
  Version, SessionID 
  FROM ULP-Components 
  SUPLINIT 
  FROM SUPL-INIT 
  SUPLSTART 
  FROM SUPL-START 
  SUPLRESPONSE 
  FROM SUPL-RESPONSE 
  SUPLPOSINIT 
  FROM SUPL-POS-INIT 
  SUPLPOS 
  FROM SUPL-POS 
  SUPLEND 
  FROM SUPL-END 
  SUPLAUTHREQ 
  FROM SUPL-AUTH-REQ 
  SUPLAUTHRESP 
  FROM SUPL-AUTH-RESP; 
 
-- general ULP PDU layout; 
ULP-PDU ::= SEQUENCE { 
  length     INTEGER(0..65535), 
  version    Version, 
  sessionID  SessionID, 
  message    UlpMessage} 
 
UlpMessage ::= CHOICE { 
  msSUPLINIT      SUPLINIT, 
  msSUPLSTART     SUPLSTART, 
  msSUPLRESPONSE  SUPLRESPONSE, 
  msSUPLPOSINIT   SUPLPOSINIT, 
  msSUPLPOS       SUPLPOS, 
  msSUPLEND       SUPLEND, 
  msSUPLAUTHREQ   SUPLAUTHREQ, 
  msSUPLAUTHRESP  SUPLAUTHRESP, 
  ...} 
 
END