mirror of
https://github.com/samba-team/samba.git
synced 2025-12-06 16:23:49 +03:00
this is mostly just a tidyup, but also adds the privilege_mask, which I will be using shortly in ACL checking. note that I had to move the definition of struct security_token out of security.idl as pidl doesn't yet handle arrays of pointers, and the usual workaround (to use a intermediate structure) would make things too cumbersome for this structure, especially given we never encode it to NDR.
21 lines
633 B
Makefile
21 lines
633 B
Makefile
#################################
|
|
# Start SUBSYSTEM LIB_SECURITY_NDR
|
|
[SUBSYSTEM::LIB_SECURITY_NDR]
|
|
ADD_OBJ_FILES = librpc/gen_ndr/ndr_security.o
|
|
NOPROTO = YES
|
|
# End SUBSYSTEM LIB_SECURITY_NDR
|
|
#################################
|
|
|
|
#################################
|
|
# Start SUBSYSTEM LIB_SECURITY
|
|
[SUBSYSTEM::LIB_SECURITY]
|
|
ADD_OBJ_FILES = libcli/security/security_token.o \
|
|
libcli/security/security_descriptor.o \
|
|
libcli/security/dom_sid.o \
|
|
libcli/security/access_check.o \
|
|
libcli/security/privilege.o \
|
|
librpc/ndr/ndr_sec.o
|
|
REQUIRED_SUBSYSTEMS = LIB_SECURITY_NDR
|
|
# End SUBSYSTEM LIB_SECURITY
|
|
#################################
|