diff options
author | Tim Potter <tpot@samba.org> | 2001-10-20 23:34:40 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-10-20 23:34:40 +0000 |
commit | 7cd889f566ebe352721943e53a055db5b817f12f (patch) | |
tree | 1e58956a4364719e01a683a7bcf1b1c20b28c427 /source3/smbd | |
parent | 88b55f47b4914f7d390939e4394ec3edd42be91f (diff) | |
download | samba-7cd889f566ebe352721943e53a055db5b817f12f.tar.gz samba-7cd889f566ebe352721943e53a055db5b817f12f.tar.bz2 samba-7cd889f566ebe352721943e53a055db5b817f12f.zip |
Converted a bunch of 0x85 constants to SMBkeepalive.
(This used to be commit b16a15a13ed7d267c6366abaeeb3ccafa5776f5e)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 4 | ||||
-rw-r--r-- | source3/smbd/reply.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index a0bfdbb2a2..cf01cd2cf5 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -254,7 +254,7 @@ BOOL receive_next_smb(char *inbuf, int bufsize, int timeout) do { ret = receive_message_or_smb(inbuf,bufsize,timeout); - got_keepalive = (ret && (CVAL(inbuf,0) == 0x85)); + got_keepalive = (ret && (CVAL(inbuf,0) == SMBkeepalive)); } while (ret && got_keepalive); return ret; @@ -867,7 +867,7 @@ void process_smb(char *inbuf, char *outbuf) if (msg_type == 0) show_msg(inbuf); - else if(msg_type == 0x85) + else if(msg_type == SMBkeepalive) return; /* Keepalive packet. */ nread = construct_reply(inbuf,outbuf,nread,max_send); diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 845fabda92..852a2d867b 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -122,7 +122,7 @@ int reply_special(char *inbuf,char *outbuf) case 0x89: /* session keepalive request (some old clients produce this?) */ - CVAL(outbuf,0) = 0x85; + CVAL(outbuf,0) = SMBkeepalive; CVAL(outbuf,3) = 0; break; @@ -132,7 +132,7 @@ int reply_special(char *inbuf,char *outbuf) DEBUG(0,("Unexpected session response\n")); break; - case 0x85: /* session keepalive */ + case SMBkeepalive: /* session keepalive */ default: return(0); } |