summaryrefslogtreecommitdiff
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-11-02 07:18:24 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:05:17 -0500
commitaa34fcebf8aa0660574a7c6976b33b3f37985e27 (patch)
tree2000842de3e3426c9d4b5fbc0baf4d955bcfbc76 /source4/ntvfs
parent8867664ad2aea57d43a8547572af5de6db0968ba (diff)
downloadsamba-aa34fcebf8aa0660574a7c6976b33b3f37985e27.tar.gz
samba-aa34fcebf8aa0660574a7c6976b33b3f37985e27.tar.bz2
samba-aa34fcebf8aa0660574a7c6976b33b3f37985e27.zip
r3466: split out request.h, signing.h, and smb_server.h
(This used to be commit 7c4e6ebf05790dd6e29896dd316db0fff613aa4e)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r--source4/ntvfs/cifs/vfs_cifs.c1
-rw-r--r--source4/ntvfs/ipc/vfs_ipc.c1
-rw-r--r--source4/ntvfs/nbench/vfs_nbench.c1
-rw-r--r--source4/ntvfs/ntvfs_base.c2
-rw-r--r--source4/ntvfs/ntvfs_generic.c2
-rw-r--r--source4/ntvfs/ntvfs_interface.c2
-rw-r--r--source4/ntvfs/ntvfs_util.c2
-rw-r--r--source4/ntvfs/posix/vfs_posix.h2
-rw-r--r--source4/ntvfs/print/vfs_print.c1
-rw-r--r--source4/ntvfs/simple/vfs_simple.c1
-rw-r--r--source4/ntvfs/unixuid/vfs_unixuid.c1
11 files changed, 16 insertions, 0 deletions
diff --git a/source4/ntvfs/cifs/vfs_cifs.c b/source4/ntvfs/cifs/vfs_cifs.c
index 535b529a63..9e3c841dd3 100644
--- a/source4/ntvfs/cifs/vfs_cifs.c
+++ b/source4/ntvfs/cifs/vfs_cifs.c
@@ -27,6 +27,7 @@
#include "includes.h"
#include "libcli/raw/libcliraw.h"
+#include "smb_server/smb_server.h"
/* this is stored in ntvfs_private */
struct cvfs_private {
diff --git a/source4/ntvfs/ipc/vfs_ipc.c b/source4/ntvfs/ipc/vfs_ipc.c
index 8bcf0382f9..dc43dff3aa 100644
--- a/source4/ntvfs/ipc/vfs_ipc.c
+++ b/source4/ntvfs/ipc/vfs_ipc.c
@@ -28,6 +28,7 @@
#include "includes.h"
#include "system/filesys.h"
#include "dlinklist.h"
+#include "smb_server/smb_server.h"
/* this is the private structure used to keep the state of an open
ipc$ connection. It needs to keep information about all open
diff --git a/source4/ntvfs/nbench/vfs_nbench.c b/source4/ntvfs/nbench/vfs_nbench.c
index eef407638b..ef435c5d75 100644
--- a/source4/ntvfs/nbench/vfs_nbench.c
+++ b/source4/ntvfs/nbench/vfs_nbench.c
@@ -25,6 +25,7 @@
*/
#include "includes.h"
+#include "smb_server/smb_server.h"
/* this is stored in ntvfs_private */
struct nbench_private {
diff --git a/source4/ntvfs/ntvfs_base.c b/source4/ntvfs/ntvfs_base.c
index 24470ebd65..cc83b53473 100644
--- a/source4/ntvfs/ntvfs_base.c
+++ b/source4/ntvfs/ntvfs_base.c
@@ -25,6 +25,8 @@
#include "includes.h"
#include "dlinklist.h"
+#include "smb_server/smb_server.h"
+
/* the list of currently registered NTVFS backends, note that there
diff --git a/source4/ntvfs/ntvfs_generic.c b/source4/ntvfs/ntvfs_generic.c
index 8eaa3cf1b2..6e8caf787b 100644
--- a/source4/ntvfs/ntvfs_generic.c
+++ b/source4/ntvfs/ntvfs_generic.c
@@ -32,6 +32,8 @@
*/
#include "includes.h"
+#include "smb_server/smb_server.h"
+
/*
see if a filename ends in EXE COM DLL or SYM. This is needed for the
diff --git a/source4/ntvfs/ntvfs_interface.c b/source4/ntvfs/ntvfs_interface.c
index 95c01a0b50..f1ab217533 100644
--- a/source4/ntvfs/ntvfs_interface.c
+++ b/source4/ntvfs/ntvfs_interface.c
@@ -20,6 +20,8 @@
*/
#include "includes.h"
+#include "smb_server/smb_server.h"
+
/* connect/disconnect */
NTSTATUS ntvfs_connect(struct smbsrv_request *req, const char *sharename)
diff --git a/source4/ntvfs/ntvfs_util.c b/source4/ntvfs/ntvfs_util.c
index bd5a305e20..41e1b04d49 100644
--- a/source4/ntvfs/ntvfs_util.c
+++ b/source4/ntvfs/ntvfs_util.c
@@ -23,6 +23,8 @@
#include "includes.h"
#include "dlinklist.h"
+#include "smb_server/smb_server.h"
+
NTSTATUS ntvfs_async_state_push(struct smbsrv_request *req,
void *private_data,
diff --git a/source4/ntvfs/posix/vfs_posix.h b/source4/ntvfs/posix/vfs_posix.h
index 231d9a2d08..530a2deae3 100644
--- a/source4/ntvfs/posix/vfs_posix.h
+++ b/source4/ntvfs/posix/vfs_posix.h
@@ -23,6 +23,8 @@
#ifndef _VFS_POSIX_H_
#define _VFS_POSIX_H_
+#include "smb_server/smb_server.h"
+
/* this is the private structure for the posix vfs backend. It is used
to hold per-connection (per tree connect) state information */
struct pvfs_state {
diff --git a/source4/ntvfs/print/vfs_print.c b/source4/ntvfs/print/vfs_print.c
index b1155a0761..372f64e982 100644
--- a/source4/ntvfs/print/vfs_print.c
+++ b/source4/ntvfs/print/vfs_print.c
@@ -24,6 +24,7 @@
#include "includes.h"
#include "ioctl.h"
+#include "smb_server/smb_server.h"
/*
connect to a share - used when a tree_connect operation comes
diff --git a/source4/ntvfs/simple/vfs_simple.c b/source4/ntvfs/simple/vfs_simple.c
index 4e9fd4895e..97dd8a7d60 100644
--- a/source4/ntvfs/simple/vfs_simple.c
+++ b/source4/ntvfs/simple/vfs_simple.c
@@ -30,6 +30,7 @@
#include "svfs.h"
#include "system/time.h"
#include "dlinklist.h"
+#include "smb_server/smb_server.h"
#ifndef O_DIRECTORY
#define O_DIRECTORY 0
diff --git a/source4/ntvfs/unixuid/vfs_unixuid.c b/source4/ntvfs/unixuid/vfs_unixuid.c
index 9c74c12f91..9b62c38e13 100644
--- a/source4/ntvfs/unixuid/vfs_unixuid.c
+++ b/source4/ntvfs/unixuid/vfs_unixuid.c
@@ -23,6 +23,7 @@
#include "includes.h"
#include "auth/auth.h"
+#include "smb_server/smb_server.h"
struct unixuid_private {
void *samctx;