mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
libcli:security: Add SELF SID constant
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
26ff87dcfe
commit
cdbb5ab7d0
@ -37,6 +37,7 @@ extern const struct dom_sid global_sid_NT_Authority;
|
||||
extern const struct dom_sid global_sid_Enterprise_DCs;
|
||||
extern const struct dom_sid global_sid_System;
|
||||
extern const struct dom_sid global_sid_NULL;
|
||||
extern const struct dom_sid global_sid_Self;
|
||||
extern const struct dom_sid global_sid_Authenticated_Users;
|
||||
extern const struct dom_sid global_sid_Network;
|
||||
extern const struct dom_sid global_sid_Asserted_Identity;
|
||||
|
@ -61,6 +61,9 @@ const struct dom_sid global_sid_System = /* System */
|
||||
/* S-1-0-0 */
|
||||
const struct dom_sid global_sid_NULL = /* NULL sid */
|
||||
{ 1, 1, {0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}};
|
||||
/* S-1-5-10 */
|
||||
const struct dom_sid global_sid_Self = /* SELF */
|
||||
{ 1, 1, {0,0,0,0,0,5}, {10,0,0,0,0,0,0,0,0,0,0,0,0,0,0}};
|
||||
/* S-1-5-11 */
|
||||
const struct dom_sid global_sid_Authenticated_Users = /* All authenticated rids */
|
||||
{ 1, 1, {0,0,0,0,0,5}, {11,0,0,0,0,0,0,0,0,0,0,0,0,0,0}};
|
||||
|
Loading…
Reference in New Issue
Block a user