ea09c3ce9bdaef43d38d4d4877dc397d536c0f6f
[ira/wip.git] / source4 / smb_server / smb2 / fileio.c
1 /* 
2    Unix SMB2 implementation.
3    
4    Copyright (C) Stefan Metzmacher      2005
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22 #include "libcli/smb2/smb2.h"
23 #include "libcli/smb2/smb2_calls.h"
24 #include "smb_server/smb2/smb2_server.h"
25
26 void smb2srv_create_recv(struct smb2srv_request *req)
27 {
28         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
29 }
30
31 void smb2srv_close_recv(struct smb2srv_request *req)
32 {
33         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
34 }
35
36 void smb2srv_flush_recv(struct smb2srv_request *req)
37 {
38         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
39 }
40
41 void smb2srv_read_recv(struct smb2srv_request *req)
42 {
43         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
44 }
45
46 void smb2srv_write_recv(struct smb2srv_request *req)
47 {
48         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
49 }
50
51 void smb2srv_lock_recv(struct smb2srv_request *req)
52 {
53         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
54 }
55
56 void smb2srv_ioctl_recv(struct smb2srv_request *req)
57 {
58         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
59 }
60
61 void smb2srv_cancel_recv(struct smb2srv_request *req)
62 {
63         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
64 }
65
66 void smb2srv_find_recv(struct smb2srv_request *req)
67 {
68         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
69 }
70
71 void smb2srv_notify_recv(struct smb2srv_request *req)
72 {
73         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
74 }
75
76 void smb2srv_getinfo_recv(struct smb2srv_request *req)
77 {
78         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
79 }
80
81 void smb2srv_setinfo_recv(struct smb2srv_request *req)
82 {
83         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
84 }
85
86 void smb2srv_break_recv(struct smb2srv_request *req)
87 {
88         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
89 }