r12608: Remove some unused #include lines.
[kai/samba-autobuild/.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 "smb_server/smb2/smb2_server.h"
24
25 void smb2srv_create_recv(struct smb2srv_request *req)
26 {
27         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
28 }
29
30 void smb2srv_close_recv(struct smb2srv_request *req)
31 {
32         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
33 }
34
35 void smb2srv_flush_recv(struct smb2srv_request *req)
36 {
37         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
38 }
39
40 void smb2srv_read_recv(struct smb2srv_request *req)
41 {
42         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
43 }
44
45 void smb2srv_write_recv(struct smb2srv_request *req)
46 {
47         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
48 }
49
50 void smb2srv_lock_recv(struct smb2srv_request *req)
51 {
52         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
53 }
54
55 void smb2srv_ioctl_recv(struct smb2srv_request *req)
56 {
57         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
58 }
59
60 void smb2srv_cancel_recv(struct smb2srv_request *req)
61 {
62         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
63 }
64
65 void smb2srv_find_recv(struct smb2srv_request *req)
66 {
67         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
68 }
69
70 void smb2srv_notify_recv(struct smb2srv_request *req)
71 {
72         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
73 }
74
75 void smb2srv_getinfo_recv(struct smb2srv_request *req)
76 {
77         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
78 }
79
80 void smb2srv_setinfo_recv(struct smb2srv_request *req)
81 {
82         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
83 }
84
85 void smb2srv_break_recv(struct smb2srv_request *req)
86 {
87         smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
88 }