1 | #ifndef _NTSECPKG_H
|
---|
2 | #define _NTSECPKG_H
|
---|
3 | #if __GNUC__ >=3
|
---|
4 | #pragma GCC system_header
|
---|
5 | #endif
|
---|
6 |
|
---|
7 | #define ISC_REQ_DELEGATE 1
|
---|
8 | #define ISC_REQ_MUTUAL_AUTH 2
|
---|
9 | #define ISC_REQ_REPLAY_DETECT 4
|
---|
10 | #define ISC_REQ_SEQUENCE_DETECT 8
|
---|
11 | #define ISC_REQ_CONFIDENTIALITY 16
|
---|
12 | #define ISC_REQ_USE_SESSION_KEY 32
|
---|
13 | #define ISC_REQ_PROMPT_FOR_CREDS 64
|
---|
14 | #define ISC_REQ_USE_SUPPLIED_CREDS 128
|
---|
15 | #define ISC_REQ_ALLOCATE_MEMORY 256
|
---|
16 | #define ISC_REQ_USE_DCE_STYLE 512
|
---|
17 | #define ISC_REQ_DATAGRAM 1024
|
---|
18 | #define ISC_REQ_CONNECTION 2048
|
---|
19 | #define ISC_REQ_EXTENDED_ERROR 16384
|
---|
20 | #define ISC_REQ_STREAM 32768
|
---|
21 | #define ISC_REQ_INTEGRITY 65536
|
---|
22 | #define ISC_REQ_MANUAL_CRED_VALIDATION 524288
|
---|
23 | #define ISC_REQ_HTTP 268435456
|
---|
24 |
|
---|
25 | #define ISC_RET_EXTENDED_ERROR 16384
|
---|
26 |
|
---|
27 | #define ASC_REQ_DELEGATE 1
|
---|
28 | #define ASC_REQ_MUTUAL_AUTH 2
|
---|
29 | #define ASC_REQ_REPLAY_DETECT 4
|
---|
30 | #define ASC_REQ_SEQUENCE_DETECT 8
|
---|
31 | #define ASC_REQ_CONFIDENTIALITY 16
|
---|
32 | #define ASC_REQ_USE_SESSION_KEY 32
|
---|
33 | #define ASC_REQ_ALLOCATE_MEMORY 256
|
---|
34 | #define ASC_REQ_USE_DCE_STYLE 512
|
---|
35 | #define ASC_REQ_DATAGRAM 1024
|
---|
36 | #define ASC_REQ_CONNECTION 2048
|
---|
37 | #define ASC_REQ_EXTENDED_ERROR 32768
|
---|
38 | #define ASC_REQ_STREAM 65536
|
---|
39 | #define ASC_REQ_INTEGRITY 131072
|
---|
40 |
|
---|
41 | #define SECURITY_NATIVE_DREP 16
|
---|
42 | #define SECURITY_NETWORK_DREP 0
|
---|
43 |
|
---|
44 | #endif /* _NTSECPKG_H */
|
---|