summaryrefslogtreecommitdiff
path: root/source4/smb_server/smb2/fileio.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-12-06 13:26:24 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:47:08 -0500
commit2634f22bfcd5172ae20e9fa0d236aee91c43c1ae (patch)
tree36a16dbf9fb00ee3b1e7b788454022cf947af071 /source4/smb_server/smb2/fileio.c
parente5adca67f255555533934c1eb56268af8bd527a3 (diff)
downloadsamba-2634f22bfcd5172ae20e9fa0d236aee91c43c1ae.tar.gz
samba-2634f22bfcd5172ae20e9fa0d236aee91c43c1ae.tar.bz2
samba-2634f22bfcd5172ae20e9fa0d236aee91c43c1ae.zip
r12092: - add dummy functions for the missing SMB2 opcodes
- implement keepalive and logoff metze (This used to be commit 859ab627f45a5acca1deb66b8abdc38eaf49e5a2)
Diffstat (limited to 'source4/smb_server/smb2/fileio.c')
-rw-r--r--source4/smb_server/smb2/fileio.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/source4/smb_server/smb2/fileio.c b/source4/smb_server/smb2/fileio.c
index 63b02de2c6..ea09c3ce9b 100644
--- a/source4/smb_server/smb2/fileio.c
+++ b/source4/smb_server/smb2/fileio.c
@@ -33,6 +33,11 @@ void smb2srv_close_recv(struct smb2srv_request *req)
smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
}
+void smb2srv_flush_recv(struct smb2srv_request *req)
+{
+ smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
+}
+
void smb2srv_read_recv(struct smb2srv_request *req)
{
smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
@@ -43,6 +48,16 @@ void smb2srv_write_recv(struct smb2srv_request *req)
smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
}
+void smb2srv_lock_recv(struct smb2srv_request *req)
+{
+ smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
+}
+
+void smb2srv_ioctl_recv(struct smb2srv_request *req)
+{
+ smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
+}
+
void smb2srv_cancel_recv(struct smb2srv_request *req)
{
smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);