diff options
author | Jeremy Allison <jra@samba.org> | 2005-11-30 17:53:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:40 -0500 |
commit | 0af6dcacec1831bad1e901383a2c6458e1b0606f (patch) | |
tree | d74149f23005b6f222f3ffde33d3fcd0bbb238c3 /source3/client | |
parent | d2fff52b913e9ac192163fb615a59aaa3a247afb (diff) | |
download | samba-0af6dcacec1831bad1e901383a2c6458e1b0606f.tar.gz samba-0af6dcacec1831bad1e901383a2c6458e1b0606f.tar.bz2 samba-0af6dcacec1831bad1e901383a2c6458e1b0606f.zip |
r11976: (Slightly modified) Volker fix for #3293. Use SMBecho instead of
chkpath to keep a connection alive.
Jeremy.
(This used to be commit f1c88de7a28942b6aaa634551dde7a8af91f4de3)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 47a45b8a53..7a4f853d54 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3088,7 +3088,12 @@ static void readline_callback(void) goto again; } - cli_chkpath(cli, "\\"); + /* Ping the server to keep the connection alive using SMBecho. */ + { + unsigned char garbage[16]; + memset(garbage, 0xf0, sizeof(garbage)); + cli_echo(cli, garbage, sizeof(garbage)); + } } /**************************************************************************** |