summaryrefslogtreecommitdiff
path: root/source4/smb_server/smb_server.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-12-16 12:31:34 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:07:28 -0500
commitcf5cb51bfc7f7c23f366fcb902946d6f4feb2d3b (patch)
treedfeafce16d0cc83747bf33b45f3393a08d015b19 /source4/smb_server/smb_server.c
parent145702b75604be85f71d9e0e5b8fe048da439958 (diff)
downloadsamba-cf5cb51bfc7f7c23f366fcb902946d6f4feb2d3b.tar.gz
samba-cf5cb51bfc7f7c23f366fcb902946d6f4feb2d3b.tar.bz2
samba-cf5cb51bfc7f7c23f366fcb902946d6f4feb2d3b.zip
r4232: added server support for multi-part SMBtrans requests, while
maintaining the async nature of the server. This is done with a SMBtrans request queue for partially completed requests. The smb signing issues with this get a little tricky, but it now seems to work fine (This used to be commit bc0209058b76a947ad27673aeb096d11a168996b)
Diffstat (limited to 'source4/smb_server/smb_server.c')
-rw-r--r--source4/smb_server/smb_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smb_server/smb_server.c b/source4/smb_server/smb_server.c
index d9fa226c8b..2ebb927f1e 100644
--- a/source4/smb_server/smb_server.c
+++ b/source4/smb_server/smb_server.c
@@ -224,7 +224,7 @@ static const struct smb_message_struct
/* 0x23 */ { "SMBgetattrE",reply_getattrE,AS_USER},
/* 0x24 */ { "SMBlockingX",reply_lockingX,AS_USER},
/* 0x25 */ { "SMBtrans",reply_trans,AS_USER},
-/* 0x26 */ { "SMBtranss",NULL,AS_USER},
+/* 0x26 */ { "SMBtranss",reply_transs,AS_USER},
/* 0x27 */ { "SMBioctl",reply_ioctl,0},
/* 0x28 */ { "SMBioctls",NULL,AS_USER},
/* 0x29 */ { "SMBcopy",reply_copy,AS_USER},