summaryrefslogtreecommitdiff
path: root/source3/smbd/smb2_write.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-11-09 11:47:33 +0100
committerStefan Metzmacher <metze@samba.org>2011-11-15 17:14:13 +0100
commit693cb77b2fdb96205ab83bb2c22b67fe91de61b0 (patch)
treec450abd9297afe0abfa63d05224fee88f97157dd /source3/smbd/smb2_write.c
parent10b285ccc29b106f164a6c18116e237634867717 (diff)
downloadsamba-693cb77b2fdb96205ab83bb2c22b67fe91de61b0.tar.gz
samba-693cb77b2fdb96205ab83bb2c22b67fe91de61b0.tar.bz2
samba-693cb77b2fdb96205ab83bb2c22b67fe91de61b0.zip
s3:smb2_server: always send STATUS_PENDING responses, but delayed by 0.5 milliseconds
In future we'll pass the delay from the caller. metze
Diffstat (limited to 'source3/smbd/smb2_write.c')
-rw-r--r--source3/smbd/smb2_write.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/source3/smbd/smb2_write.c b/source3/smbd/smb2_write.c
index edf6176821..0ddb0b1ef0 100644
--- a/source3/smbd/smb2_write.c
+++ b/source3/smbd/smb2_write.c
@@ -302,14 +302,8 @@ static struct tevent_req *smbd_smb2_write_send(TALLOC_CTX *mem_ctx,
if (NT_STATUS_IS_OK(status)) {
/*
- * Doing an async write. Don't
- * send a "gone async" message
- * as we expect this to be less
- * than the client timeout period.
- * JRA. FIXME for offline files..
- * FIXME - add cancel code..
+ * Doing an async write.
*/
- smb2req->async = true;
return req;
}