diff options
author | Luke Leighton <lkcl@samba.org> | 1998-10-16 20:08:56 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-10-16 20:08:56 +0000 |
commit | ff9e919b713f077e811b702db6ec20897a11d5a0 (patch) | |
tree | e71ef7c4bcd58269dda440404d1433f16782f900 | |
parent | 16256f86bf451535c7955b8f51a9b88fc33a8e4d (diff) | |
download | samba-ff9e919b713f077e811b702db6ec20897a11d5a0.tar.gz samba-ff9e919b713f077e811b702db6ec20897a11d5a0.tar.xz samba-ff9e919b713f077e811b702db6ec20897a11d5a0.zip |
oops.
-rw-r--r-- | source/include/proto.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source/include/proto.h b/source/include/proto.h index d563db39338..2a61a05f6d4 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -1259,7 +1259,8 @@ BOOL change_trust_account_password( char *domain, char *remote_machine_list); BOOL rpc_api_pipe_req(struct cli_state *cli, uint8 op_num, prs_struct *data, prs_struct *rdata); -BOOL cli_nt_session_open(struct cli_state *cli, char *pipe_name, BOOL encrypted); +BOOL cli_nt_set_ntlmssp_flgs(struct cli_state *cli, uint32 ntlmssp_flgs); +BOOL cli_nt_session_open(struct cli_state *cli, char *pipe_name); void cli_nt_session_close(struct cli_state *cli); /*The following definitions come from rpc_client/cli_samr.c */ @@ -1872,7 +1873,7 @@ void reset_chain_p(void); void init_rpc_pipe_hnd(void); pipes_struct *open_rpc_pipe_p(char *pipe_name, connection_struct *conn, uint16 vuid); -int write_pipe(pipes_struct *p, char *data, int n); +ssize_t write_pipe(pipes_struct *p, char *data, size_t n); int read_pipe(pipes_struct *p, char *data, uint32 pos, int n); BOOL wait_rpc_pipe_hnd_state(pipes_struct *p, uint16 priority); BOOL set_rpc_pipe_hnd_state(pipes_struct *p, uint16 device_state); @@ -2195,7 +2196,7 @@ void add_session_user(char *user); BOOL smb_password_check(char *password, unsigned char *part_passwd, unsigned char *c8); BOOL smb_password_ok(struct smb_passwd *smb_pass, uchar lm_pass[24], uchar nt_pass[24]); -BOOL password_ok(char *user,char *password, int pwlen, struct passwd *pwd); +BOOL password_ok(char *user, char *password, int pwlen, struct passwd *pwd); BOOL user_ok(char *user,int snum); BOOL authorise_login(int snum,char *user,char *password, int pwlen, BOOL *guest,BOOL *force,uint16 vuid); |