forked from eabalea/1609dot2-asn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwsa-ssp.asn
executable file
·63 lines (49 loc) · 1.84 KB
/
wsa-ssp.asn
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
51
52
53
54
55
56
57
58
59
60
61
62
63
Ieee1609Dot2WsaSsp {iso(1) identified-organization(3) ieee(111)
standards-association-numbered-series-standards(2) wave-stds(1609)
dot2(2) wsa(4) ssp(2) major-version-2 (2)}
DEFINITIONS AUTOMATIC TAGS ::= BEGIN
EXPORTS ALL;
IMPORTS
SequenceOfPsid,
Uint8
FROM IEEE1609dot2BaseTypes {iso(1) identified-organization(3) ieee(111)
standards-association-numbered-series-standards(2) wave-stds(1609)
dot2(2) base(1) base-types(2) major-version-2 (2)}
;
--
WsaSsp::= SEQUENCE {
version Uint8(1),
advertiserPermissions AdvertiserPermissions OPTIONAL,
providerPermissions ProviderPermissions OPTIONAL,
...
}
AdvertiserPermissions ::= SEQUENCE OF ChannelIdentifier
ChannelIdentifier ::= SEQUENCE {
countryString OCTET STRING (SIZE(3)),
operatingClass Uint8,
channelNumber Uint8
}
ProviderPermissions ::= SEQUENCE OF ChannelSpecificProviderPermission
ChannelSpecificProviderPermission ::= SEQUENCE {
channelId ChannelIdentifier,
permittedPsids SequenceOfPsid OPTIONAL,
permittedEdcaParameters SequenceOfEdcaIdentifier OPTIONAL,
maximumTransmitPower Uint8 OPTIONAL,
...
}
EdcaIdentifier ::= CHOICE {
enum EnumeratedEdcaIdentifier,
explicit ExplicitEdcaIdentifier,
...
}
EnumeratedEdcaIdentifier ::= ENUMERATED {us-j2945-bsm (0), ... }
ExplicitEdcaIdentifier ::= SEQUENCE {
qosInfo Uint8,
reserved Uint8,
set1 OCTET STRING (SIZE(4)),
set2 OCTET STRING (SIZE(4)),
set3 OCTET STRING (SIZE(4)),
set4 OCTET STRING (SIZE(4))
}
SequenceOfEdcaIdentifier ::= SEQUENCE OF EdcaIdentifier
END