~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/asn1/examples/RANAPextract1.asn

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
  CRITICALITY           notify
48
48
}
49
49
 
 
50
testObject RANAP-ELEMENTARY-PROCEDURE ::= {
 
51
  INITIATING MESSAGE    Iu-ReleaseCommand
 
52
  SUCCESSFUL OUTCOME    Iu-ReleaseComplete
 
53
  PROCEDURE CODE        id-test
 
54
  CRITICALITY           notify
 
55
}
 
56
 
 
57
testObject2 RANAP-ELEMENTARY-PROCEDURE ::= {
 
58
  INITIATING MESSAGE    Iu-ReleaseCommand
 
59
  SUCCESSFUL OUTCOME    Iu-ReleaseComplete
 
60
  PROCEDURE CODE        id-test2
 
61
  CRITICALITY           notify
 
62
}
 
63
 
50
64
RANAP-ELEMENTARY-PROCEDURES RANAP-ELEMENTARY-PROCEDURE ::= {
51
65
  iu-Release         |
52
66
  relocationPreparation ,
53
67
  ...
54
68
}
55
69
 
 
70
RANAP-ELEMENTARY-PROCEDURES2 RANAP-ELEMENTARY-PROCEDURE ::= {
 
71
  {INITIATING MESSAGE   Iu-ReleaseCommand
 
72
  SUCCESSFUL OUTCOME    Iu-ReleaseComplete
 
73
  PROCEDURE CODE        id-test
 
74
  CRITICALITY           notify}
 
75
 
76
 
 
77
RANAP-ELEMENTARY-PROCEDURES3 RANAP-ELEMENTARY-PROCEDURE ::= {
 
78
  iu-Release|
 
79
  testObject,
 
80
  ...,
 
81
  relocationPreparation |
 
82
  testObject2
 
83
}
 
84
 
56
85
Iu-ReleaseCommand  ::= SEQUENCE {
57
86
  first     INTEGER,
58
87
  second    BOOLEAN
64
93
Criticality        ::= ENUMERATED { reject, ignore, notify }
65
94
id-Iu-Release             INTEGER ::= 1
66
95
id-relocationPreparation  INTEGER ::= 2
 
96
id-test   INTEGER ::= 3
 
97
id-test2   INTEGER ::= 4
67
98
 
68
99
END
69
100