summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-05-18 13:19:38 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-05-18 13:19:38 +0000
commitac03889168cc5b97651ee5e4300ce50210de8800 (patch)
tree3c49d724f783b71051afb832bb08449d6536a4cf /source3/lib
parentbc8f74f9883c164f5802f66126960c5dc2216c68 (diff)
downloadsamba-ac03889168cc5b97651ee5e4300ce50210de8800.tar.gz
samba-ac03889168cc5b97651ee5e4300ce50210de8800.tar.bz2
samba-ac03889168cc5b97651ee5e4300ce50210de8800.zip
Move client_receive_smb to clientgen.c as a static, as proposed by Elrond.
(only function that used it was unused, and this helps bring TNG and HEAD closer) Its also cleaner. Andrew Bartlett (This used to be commit 78f47c83332a6408a718a3dee45645935638b364)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util_sock.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index da75228870..f5d56eb0d4 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -632,40 +632,6 @@ BOOL receive_smb(int fd,char *buffer, unsigned int timeout)
}
/****************************************************************************
- read an smb from a fd ignoring all keepalive packets. Note that the buffer
- *MUST* be of size BUFFER_SIZE+SAFETY_MARGIN.
- The timeout is in milliseconds
-
- This is exactly the same as receive_smb except that it never returns
- a session keepalive packet (just as receive_smb used to do).
- receive_smb was changed to return keepalives as the oplock processing means this call
- should never go into a blocking read.
-****************************************************************************/
-
-BOOL client_receive_smb(int fd,char *buffer, unsigned int timeout)
-{
- BOOL ret;
-
- for(;;)
- {
- ret = receive_smb(fd, buffer, timeout);
-
- if (!ret)
- {
- DEBUG(10,("client_receive_smb failed\n"));
- show_msg(buffer);
- return ret;
- }
-
- /* Ignore session keepalive packets. */
- if(CVAL(buffer,0) != SMBkeepalive)
- break;
- }
- show_msg(buffer);
- return ret;
-}
-
-/****************************************************************************
send an smb to a fd
****************************************************************************/