diff options
author | Günther Deschner <gd@samba.org> | 2011-01-21 16:58:32 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-01-24 16:56:00 +0100 |
commit | 99437614fa8028d60356ee79611d94051ec756ec (patch) | |
tree | b139d046570a03c4065c022fef704357e8ede0a8 /source3/rpc_client | |
parent | ef0a3903f007cee5a564699fc9750d6e8a472d7d (diff) | |
download | samba-99437614fa8028d60356ee79611d94051ec756ec.tar.gz samba-99437614fa8028d60356ee79611d94051ec756ec.tar.bz2 samba-99437614fa8028d60356ee79611d94051ec756ec.zip |
s3-rpcclient: allow to define validation level for samlogon.
Guenther
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_netlogon.c | 2 | ||||
-rw-r--r-- | source3/rpc_client/cli_netlogon.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_netlogon.c b/source3/rpc_client/cli_netlogon.c index 3046d277ee..914bfd3df6 100644 --- a/source3/rpc_client/cli_netlogon.c +++ b/source3/rpc_client/cli_netlogon.c @@ -159,6 +159,7 @@ NTSTATUS rpccli_netlogon_sam_logon(struct rpc_pipe_client *cli, const char *username, const char *password, const char *workstation, + uint16_t validation_level, int logon_type) { NTSTATUS result = NT_STATUS_UNSUCCESSFUL; @@ -168,7 +169,6 @@ NTSTATUS rpccli_netlogon_sam_logon(struct rpc_pipe_client *cli, union netr_LogonLevel *logon; union netr_Validation validation; uint8_t authoritative; - int validation_level = 3; fstring clnt_name_slash; struct dcerpc_binding_handle *b = cli->binding_handle; diff --git a/source3/rpc_client/cli_netlogon.h b/source3/rpc_client/cli_netlogon.h index 107c222cee..bb38b75b95 100644 --- a/source3/rpc_client/cli_netlogon.h +++ b/source3/rpc_client/cli_netlogon.h @@ -15,6 +15,7 @@ NTSTATUS rpccli_netlogon_sam_logon(struct rpc_pipe_client *cli, const char *username, const char *password, const char *workstation, + uint16_t validation_level, int logon_type); NTSTATUS rpccli_netlogon_sam_network_logon(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, |