1 /* begin include file - access_audit_names.incl.pl1 */
 2 
 3 /* Modified 84-11-19 by EJ Sharpe to add "None" as a level name */
 4 /* Modified 84-11-30 by EJ Sharpe to split into Long and Short format arrays */
 5 
 6 /* The order of the names in these arrays must be the same as the
 7 ordering of the respective items in the audit_flags structure in
 8 access_audit_flags.incl.pl1 */
 9 
10 dcl Long_Object_Names (6) char (32) int static options (constant)
11      init (
12           "File_System_Object",
13           "File_System_Attribute",
14           "RCP_Object",
15           "Administrative_Object",
16           "Special_Object",
17           "Other_Object");
18 
19 dcl Short_Object_Names (6) char (8) int static options (constant)
20      init (
21           "fsobj",
22           "fsattr",
23           "rcp",
24           "admin",
25           "special",
26           "other");
27 
28 dcl Long_Level_Names (0:3) char (16) int static options (constant)
29      init (
30           "No_Audit",
31           "Modify_Access",
32           "Modify",
33           "Read");
34 
35 dcl Short_Level_Names (0:3) char (2) int static options (constant)
36      init (
37           "N",
38           "MA",
39           "M",
40           "R");
41 
42 dcl Long_Flag_Names (5) char (32) int static options (constant)
43      init (
44           "Administrative_Operation",
45           "Privileged_Operation",
46           "ACV/IPR_Fault",
47           "Small_Covert_Channel",       /* 1-10 bps */
48           "Moderate_Covert_Channel");   /* 10-100 bps */
49 
50 dcl Short_Flag_Names (5) char (12) int static options (constant)
51      init (
52           "admin_op",
53           "priv_op",
54           "fault",
55           "small_cc",
56           "moderate_cc");
57 
58 /* The order of the names in the following arrays must be the same
59 as the ordering of the respective itmes in the event_flags structure
60 in access_audit_eventflags.incl.pl1 */
61 
62 dcl Long_Event_Names (7) char (32) int static options (constant)
63      init (
64           "Special_Operation",
65           "Operation_Granted",
66           "Administrative_Operation",
67           "Privileged_Operation",
68           "Small_Covert_Channel",
69           "Moderate_Covert_Channel",
70           "Receiver_On_Covert_Channel");
71 
72 dcl Short_Event_Names (7) char (12) int static options (constant)
73      init (
74           "special_op",
75           "granted",
76           "admin_op",
77           "priv_op",
78           "small_cc",
79           "moderate_cc",
80           "receiver");
81 
82 /* end include files - access_audit_names.incl.pl1 */