summaryrefslogtreecommitdiff
path: root/source3/smbd/nttrans.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-12-01 06:53:21 +0000
committerJeremy Allison <jra@samba.org>2003-12-01 06:53:21 +0000
commitd75819ebcf072b7c8d428db413ec492db3f34075 (patch)
tree50602501f6f9b4422536f2f8879492fc8f137354 /source3/smbd/nttrans.c
parent95b77efc1bbe8c8f633676480fced19b9c129c3b (diff)
downloadsamba-d75819ebcf072b7c8d428db413ec492db3f34075.tar.gz
samba-d75819ebcf072b7c8d428db413ec492db3f34075.tar.bz2
samba-d75819ebcf072b7c8d428db413ec492db3f34075.zip
Ensure the server can cope with multiple secondary trans
requests when signing is turned on. Jeremy. (This used to be commit b97596df7834a80b648022e22983cab5dfb0f7dd)
Diffstat (limited to 'source3/smbd/nttrans.c')
-rw-r--r--source3/smbd/nttrans.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c
index 8158c67a5e..25721d99a8 100644
--- a/source3/smbd/nttrans.c
+++ b/source3/smbd/nttrans.c
@@ -2489,6 +2489,7 @@ due to being in oplock break state.\n", (unsigned int)function_code ));
/* We need to send an interim response then receive the rest
of the parameter/data bytes */
outsize = set_message(outbuf,0,0,True);
+ srv_signing_trans_stop();
if (!send_smb(smbd_server_fd(),outbuf))
exit_server("reply_nttrans: send_smb failed.");
@@ -2499,6 +2500,13 @@ due to being in oplock break state.\n", (unsigned int)function_code ));
ret = receive_next_smb(inbuf,bufsize,SMB_SECONDARY_WAIT);
+ /*
+ * The sequence number for the trans reply is always
+ * based on the last secondary received.
+ */
+
+ srv_signing_trans_start(SVAL(inbuf,smb_mid));
+
if((ret && (CVAL(inbuf, smb_com) != SMBnttranss)) || !ret) {
outsize = set_message(outbuf,0,0,True);
if(ret) {