Newer
Older
garciay
committed
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
/**
* @author ETSI / STF422_EETS
* @version $URL:$
* $Id:$
* @desc Fast service advertisement protocol (ISO 24102-5) PICS
*/
module LibItsIicp_Pics {
group iicpPics {
/**
* @desc Is IUT an host only?
* @see ETSI TS 102 797-1 v0.0.0 C.5/1
*/
modulepar boolean PICS_ROLE_RONLY := false;
/**
* @desc Is IUT a router only?
* @see ETSI TS 102 797-1 v0.0.0 C.5/2
*/
modulepar boolean PICS_ROLE_HONLY := false;
/**
* @desc Is IUT both host and router?
* @see ETSI TS 102 797-1 v0.0.0 C.5/3
*/
modulepar boolean PICS_ROLE_RH := false;
/**
* @desc Does the architecture implement ITS station-internal network?
* @see ETSI TS 102 797-1 v0.0.0 C.6/1
*/
modulepar boolean PICS_ITS_S_INW := false;
// FIXME Upgrade Draft ETSI TS 102 797-1 V<0.0.7> (2011-12) documents
/**
* @desc Is IISC available?
* @see ISO/WD 24102-4
*/
modulepar boolean PICS_IICP_MGM := true;
} // End of group iicpPics
} // End of module LibItsIicp_Pics