diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-04-19 07:00:22 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-04-19 07:00:22 +0000 |
commit | 59f992f12de9a0c6a0bc30f8953b324699623a03 (patch) | |
tree | f065f54f4a80a03c5d5556defcfbc480952d9e27 /source3/include | |
parent | 612682354fa978d7b883028b3aace52a2882adca (diff) | |
download | samba-59f992f12de9a0c6a0bc30f8953b324699623a03.tar.gz samba-59f992f12de9a0c6a0bc30f8953b324699623a03.tar.bz2 samba-59f992f12de9a0c6a0bc30f8953b324699623a03.zip |
patch from luke to split out lanman code from ipc.c into lanman.c
(This used to be commit 95246a8432e04bcdeed962d1a6112dfd90518941)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 8432073915..b4e33652ff 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -568,15 +568,6 @@ smb_ucs2_t *string_truncate_w(smb_ucs2_t *s, size_t length); int cli_set_port(struct cli_state *cli, int port); char *cli_errstr(struct cli_state *cli); -void cli_safe_smb_errstr(struct cli_state *cli, char *msg, size_t len); -BOOL get_safe_rap_errstr(int rap_error, char *err_msg, size_t msglen); -void cli_safe_errstr(struct cli_state *cli, char *err_msg, size_t msglen); -BOOL cli_send_trans(struct cli_state *cli, int trans, - char *name, int pipe_name_len, - int fid, int flags, - uint16 *setup, int lsetup, int msetup, - char *param, int lparam, int mparam, - char *data, int ldata, int mdata); BOOL cli_api_pipe(struct cli_state *cli, char *pipe_name, int pipe_name_len, uint16 *setup, uint32 setup_count, uint32 max_setup_count, char *params, uint32 param_count, uint32 max_param_count, @@ -3036,8 +3027,17 @@ void file_chain_restore(void); /*The following definitions come from smbd/ipc.c */ +void send_trans_reply(char *outbuf, + char *rparam, int rparam_len, + char *rdata, int rdata_len, + BOOL buffer_too_large); int reply_trans(connection_struct *conn, char *inbuf,char *outbuf, int size, int bufsize); +/*The following definitions come from smbd/lanman.c */ + +int api_reply(connection_struct *conn,uint16 vuid,char *outbuf,char *data,char *params, + int tdscnt,int tpscnt,int mdrcnt,int mprcnt); + /*The following definitions come from smbd/mangle.c */ BOOL is_mangled( char *s ); |