diff options
author | Volker Lendecke <vl@samba.org> | 2009-07-28 15:06:11 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-05 03:21:19 -0400 |
commit | 6cf3db91499ebd245b08997a319edf36cfee3365 (patch) | |
tree | a7355f3e0b25e2a13964b7500c77980e94cf2373 /nsswitch | |
parent | ddd13c6816e7d289406948fe2f68db1aba7669d3 (diff) | |
download | samba-6cf3db91499ebd245b08997a319edf36cfee3365.tar.gz samba-6cf3db91499ebd245b08997a319edf36cfee3365.tar.bz2 samba-6cf3db91499ebd245b08997a319edf36cfee3365.zip |
s3:winbind: Add NDR-based parent-child communication to winbind
Diffstat (limited to 'nsswitch')
-rw-r--r-- | nsswitch/winbind_struct_protocol.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nsswitch/winbind_struct_protocol.h b/nsswitch/winbind_struct_protocol.h index 1785c30906..bd144101f2 100644 --- a/nsswitch/winbind_struct_protocol.h +++ b/nsswitch/winbind_struct_protocol.h @@ -169,6 +169,8 @@ enum winbindd_cmd { WINBINDD_DUAL_USERINFO, WINBINDD_DUAL_GETSIDALIASES, + WINBINDD_DUAL_NDRCMD, + /* Complete the challenge phase of the NTLM authentication protocol using cached password. */ WINBINDD_CCACHE_NTLMAUTH, @@ -247,6 +249,7 @@ struct winbindd_request { fstring groupname; /* getgrnam */ uid_t uid; /* getpwuid, uid_to_sid */ gid_t gid; /* getgrgid, gid_to_sid */ + uint32_t ndrcmd; struct { /* We deliberatedly don't split into domain/user to avoid having the client know what the separator |