mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
3f2719c202
Guenther
34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
/* The following definitions come from rpc_client/cli_samr.c */
|
|
|
|
NTSTATUS rpccli_samr_chgpasswd_user(struct rpc_pipe_client *cli,
|
|
TALLOC_CTX *mem_ctx,
|
|
struct policy_handle *user_handle,
|
|
const char *newpassword,
|
|
const char *oldpassword);
|
|
NTSTATUS rpccli_samr_chgpasswd_user2(struct rpc_pipe_client *cli,
|
|
TALLOC_CTX *mem_ctx,
|
|
const char *username,
|
|
const char *newpassword,
|
|
const char *oldpassword);
|
|
NTSTATUS rpccli_samr_chng_pswd_auth_crap(struct rpc_pipe_client *cli,
|
|
TALLOC_CTX *mem_ctx,
|
|
const char *username,
|
|
DATA_BLOB new_nt_password_blob,
|
|
DATA_BLOB old_nt_hash_enc_blob,
|
|
DATA_BLOB new_lm_password_blob,
|
|
DATA_BLOB old_lm_hash_enc_blob);
|
|
NTSTATUS rpccli_samr_chgpasswd_user3(struct rpc_pipe_client *cli,
|
|
TALLOC_CTX *mem_ctx,
|
|
const char *username,
|
|
const char *newpassword,
|
|
const char *oldpassword,
|
|
struct samr_DomInfo1 **dominfo1,
|
|
struct userPwdChangeFailureInformation **reject);
|
|
void get_query_dispinfo_params(int loop_count, uint32 *max_entries,
|
|
uint32 *max_size);
|
|
NTSTATUS rpccli_try_samr_connects(struct rpc_pipe_client *cli,
|
|
TALLOC_CTX *mem_ctx,
|
|
uint32_t access_mask,
|
|
struct policy_handle *connect_pol);
|
|
|