2
Unix SMB/CIFS implementation.
3
client message handling routines
4
Copyright (C) Andrew Tridgell 1994-1998
6
This program is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2 of the License, or
9
(at your option) any later version.
11
This program is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU General Public License for more details.
16
You should have received a copy of the GNU General Public License
17
along with this program; if not, write to the Free Software
18
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24
/****************************************************************************
25
start a message sequence
26
****************************************************************************/
27
int cli_message_start_build(struct cli_state *cli, char *host, char *username)
31
/* construct a SMBsendstrt command */
32
memset(cli->outbuf,'\0',smb_size);
33
set_message(cli->outbuf,0,0,True);
34
SCVAL(cli->outbuf,smb_com,SMBsendstrt);
35
SSVAL(cli->outbuf,smb_tid,cli->cnum);
36
cli_setup_packet(cli);
38
p = smb_buf(cli->outbuf);
40
p += clistr_push(cli, p, username, -1, STR_ASCII|STR_TERMINATE);
42
p += clistr_push(cli, p, host, -1, STR_ASCII|STR_TERMINATE);
44
cli_setup_bcc(cli, p);
46
return(PTR_DIFF(p, cli->outbuf));
49
BOOL cli_message_start(struct cli_state *cli, char *host, char *username,
52
cli_message_start_build(cli, host, username);
56
if (!cli_receive_smb(cli)) {
60
if (cli_is_error(cli)) return False;
62
*grp = SVAL(cli->inbuf,smb_vwv0);
68
/****************************************************************************
70
****************************************************************************/
71
int cli_message_text_build(struct cli_state *cli, char *msg, int len, int grp)
77
memset(cli->outbuf,'\0',smb_size);
78
set_message(cli->outbuf,1,0,True);
79
SCVAL(cli->outbuf,smb_com,SMBsendtxt);
80
SSVAL(cli->outbuf,smb_tid,cli->cnum);
81
cli_setup_packet(cli);
83
SSVAL(cli->outbuf,smb_vwv0,grp);
85
p = smb_buf(cli->outbuf);
88
if ((lendos = (int)convert_string_allocate(NULL,CH_UNIX, CH_DOS, msg,len, (void **)(void *)&msgdos, True)) < 0 || !msgdos) {
89
DEBUG(3,("Conversion failed, sending message in UNIX charset\n"));
90
SSVAL(p, 0, len); p += 2;
94
SSVAL(p, 0, lendos); p += 2;
95
memcpy(p, msgdos, lendos);
100
cli_setup_bcc(cli, p);
102
return(PTR_DIFF(p, cli->outbuf));
105
BOOL cli_message_text(struct cli_state *cli, char *msg, int len, int grp)
107
cli_message_text_build(cli, msg, len, grp);
111
if (!cli_receive_smb(cli)) {
115
if (cli_is_error(cli)) return False;
120
/****************************************************************************
122
****************************************************************************/
123
int cli_message_end_build(struct cli_state *cli, int grp)
127
memset(cli->outbuf,'\0',smb_size);
128
set_message(cli->outbuf,1,0,True);
129
SCVAL(cli->outbuf,smb_com,SMBsendend);
130
SSVAL(cli->outbuf,smb_tid,cli->cnum);
132
SSVAL(cli->outbuf,smb_vwv0,grp);
134
cli_setup_packet(cli);
136
p = smb_buf(cli->outbuf);
138
return(PTR_DIFF(p, cli->outbuf));
141
BOOL cli_message_end(struct cli_state *cli, int grp)
143
cli_message_end_build(cli, grp);
147
if (!cli_receive_smb(cli)) {
151
if (cli_is_error(cli)) return False;