diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-06-14 09:31:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:40 -0500 |
commit | a384d2f1a1d54ba25e2a78006e260c99bd7362f4 (patch) | |
tree | 973c7ad92aebb591940199c1aa38d931d4aa3c90 /source4/librpc/idl/netlogon.idl | |
parent | c1e88ab8b27fc58295d489b99b3002e500b81157 (diff) | |
download | samba-a384d2f1a1d54ba25e2a78006e260c99bd7362f4.tar.gz samba-a384d2f1a1d54ba25e2a78006e260c99bd7362f4.tar.bz2 samba-a384d2f1a1d54ba25e2a78006e260c99bd7362f4.zip |
r1139: added IDL and server code for netr_LogonSamLogonWithFlags()
(This used to be commit 4eac7340d8d7a109bed8fe7bb7cf663d6e7f0a56)
Diffstat (limited to 'source4/librpc/idl/netlogon.idl')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index f9516f112e..9e695aafc6 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -1068,7 +1068,20 @@ interface netlogon /****************/ /* Function 0x2d */ - WERROR netr_NETRLOGONSAMLOGONWITHFLAGS(); + + /* this is the ADS varient. I don't yet know what the "flags" are for */ + NTSTATUS netr_LogonSamLogonWithFlags( + [in] unistr *server_name, + [in] unistr *workstation, + [in] netr_Authenticator *credential, + [in][out] netr_Authenticator *return_authenticator, + [in] uint16 logon_level, + [in] [switch_is(logon_level)] netr_LogonLevel logon, + [in] uint16 validation_level, + [out] [switch_is(validation_level)] netr_Validation validation, + [out] uint32 authoritative, + [in,out] uint32 flags + ); /****************/ /* Function 0x2e */ |