1 " BEGIN INCLUDE FILE access_audit_flags.incl.alm
2 "
3 " NOTE: All changes must also be done to access_audit_flags.incl.alm
4 "
5 " Masks for extracting elements of the per-process security
6 " auditing flags pds$audit_flags.
7 "
8 " History:
9 " 85-01-07 EJ Sharpe - cleanup
10 " 84-12-03 EJ Sharpe - created
11 " 85-04-05 KP Loepere - added shift flag
12 "
13
14 " Upper 18 bit definitions
15
16 equ audit_flags.grant_or_deny_shift,2
17 equ audit_flags.grant_deny_shift,32
18
19 bool audit_flags.fsobj_grant_mask,600000
20 bool audit_flags.fsobj_deny_mask,140000
21 bool audit_flags.fsattr_grant_mask,030000
22 bool audit_flags.fsattr_deny_mask,006000
23 bool audit_flags.rcp_grant_mask,001400
24 bool audit_flags.rcp_deny_mask,000300
25 bool audit_flags.admin_grant_mask,000060
26 bool audit_flags.admin_deny_mask,000014
27 bool audit_flags.special_grant_mask,000003
28
29 " Lower 18 bit definitions
30
31 bool audit_flags.special_deny_mask,600000
32 bool audit_flags.other_grant_mask,140000
33 bool audit_flags.other_deny_mask,030000
34
35 bool audit_flags.pad,007740
36
37 bool audit_flags.admin_ops,000020
38 bool audit_flags.priv_ops,000010
39 bool audit_flags.faults,000004
40 bool audit_flags.cc_1_10,000002
41 bool audit_flags.cc_10_100,000001
42
43 " END INCLUDE FILE access_audit_flags.incl.alm