Displaying 10 results from an estimated 10 matches for "set_message".
Did you mean:
get_message
2003 Apr 13
1
disabling version number
Hi there,
is there any possibility of disabling Samba's version number output (e.g.
with smbclient) without having to manually edit it in the source code?
I don't want anyone to see my Samba's version number...
Thanks
Florian
2002 Mar 15
1
W2K and XP Offline files stopped working with 2.2.3a
Hi -
It appears that Samba 2.2.3a broke Windows ability to use offline files from
a Samba share. This used to work fine under 2.2.2. When a user syncs an
offline folder, everything appears to work properly, but once disconnected,
only a small portion of the files are visible in the offline folder, and the
files are not accessible - they give strange error messages about files
being read-only or
1998 Mar 12
0
Code to check Password Server Group Memberships
...d_client < 0) {
DEBUG(1,("%s not connected\n",pserver));
return(False);
}
bzero(inbuf,sizeof(inbuf));
memcpy(outbuf,buf,sizeof(outbuf));
/* send a session setup command */
CVAL(outbuf,smb_flg) = 0x8;
SSVAL(outbuf,smb_flg2,0x1);
CVAL(outbuf,smb_vwv0) = 0xFF;
set_message(outbuf,smb_numwords(outbuf),smb_buflen(outbuf),False);
SCVAL(inbuf,smb_rcls,1);
send_smb(password_client,outbuf);
ret = receive_smb(password_client,inbuf,5000);
if (!ret || CVAL(inbuf,smb_rcls) != 0) {
DEBUG(1,("password server %s rejected the password\n",pserver));
ret...
2007 Mar 28
0
[924] branches/wxruby2/wxwidgets_282: Changes 2.6 -> 2.8 Wx API; remove deprecated methods and update doc
...* "DirDialog#get_path":#DirDialog_getpath
</span><span class="cx"> * "DirDialog#get_message":#DirDialog_getmessage
</span><del>-* "DirDialog#get_style":#DirDialog_getstyle
</del><span class="cx"> * "DirDialog#set_message":#DirDialog_setmessage
</span><span class="cx"> * "DirDialog#set_path":#DirDialog_setpath
</span><del>-* "DirDialog#set_style":#DirDialog_setstyle
</del><span class="cx"> * "DirDialog#show_modal":#DirDialog_s...
2002 Dec 20
1
smbclient and large file support
...libsmb/clireadwrite.c Thu Dec 19 15:48:47 2002
@@ -30,10 +30,15 @@
static BOOL cli_issue_read(struct cli_state *cli, int fnum, off_t offset,
size_t size, int i)
{
+ BOOL bigoffset = False;
+
memset(cli->outbuf,'\0',smb_size);
memset(cli->inbuf,'\0',smb_size);
- set_message(cli->outbuf,10,0,True);
+ if ((SMB_BIG_UINT)offset >> 32)
+ bigoffset = True;
+
+ set_message(cli->outbuf,bigoffset ? 12 : 10,0,True);
SCVAL(cli->outbuf,smb_com,SMBreadX);
SSVAL(cli->outbuf,smb_tid,cli->cnum);
@@ -45,6 +50,9 @@
SSVAL(cli->outbuf,smb_vwv5,size);...
2007 Nov 16
1
3.0.27a out monday.
Just spoke to Jerry, we'll be doing
a 3.0.27a on Monday to fix a regression
that broke smbfs mounts from Linux.
Sorry for the problem.
Jeremy.
2003 Oct 23
1
Samba3+ldapsam+Win9x userlist, Bug596?! sniffing info
>Thereby sorry for being impolite :-(, but at present I'm running samba
>3.0.1pre1 with ldapsam in the production servers, >and Win9x clients
couldn't get list of users and groups from Samba DCs (Bug596). I have 3
>choices:
>- -- Switch back to 2.2.7 (not very nice:-(, I would need group support
for policy)
>- -- Switch to tdbsam with fam/rsync/ssh-ing password and group
2007 Mar 28
0
[925] branches/wxruby2/wxwidgets_282/doc/textile/filedialog.txtl: Improvements to doc from wxWidgets 2.8
...irectory
</span><span class="cx"> * "FileDialog#set_filename":#FileDialog_setfilename
</span><span class="cx"> * "FileDialog#set_filter_index":#FileDialog_setfilterindex
</span><span class="cx"> * "FileDialog#set_message":#FileDialog_setmessage
</span><span class="cx"> * "FileDialog#set_path":#FileDialog_setpath
</span><del>-* "FileDialog#set_style":#FileDialog_setstyle
</del><span class="cx"> * "FileDialog#set_wildcard":#Fil...
2007 Mar 12
7
Capistrano Hanging on Deployment
Hello ~
I am using the Capistrano recipe outlined in this post to restart my
backgroundrb server:
http://rubyforge.org/pipermail/backgroundrb-devel/2007-February/000718.html
My Version:
~~~~~~~~~~~~
task :before_restart, :roles => :app do
restart_backgroundrb
end
task :start_backgroundrb, :roles => :app do
sudo "nohup
2003 Dec 01
0
No subject
...ssize_t nread = -1;
char *data;
START_PROFILE(SMBreadX);
/* If it's an IPC, pass off the pipe handler. */
if (IS_IPC(conn)) {
END_PROFILE(SMBreadX);
return reply_pipe_read_and_X(inbuf,outbuf,length,bufsize);
}
CHECK_FSP(fsp,conn);
CHECK_READ(fsp);
CHECK_ERROR(fsp);
set_message(outbuf,12,0,True);
data = smb_buf(outbuf);
if(CVAL(inbuf,smb_wct) == 12) {
#ifdef LARGE_SMB_OFF_T
/*
* This is a large offset (64 bit) read.
*/
startpos |= (((SMB_OFF_T)IVAL(inbuf,smb_vwv10)) << 32);
#else /* !LARGE_SMB_OFF_T */
/*
* Ensure we haven't bee...