Merge branch 'master' of ssh://git.samba.org/data/git/samba into regsrv
[kai/samba-autobuild/.git] / source3 / lib / dummysmbd.c
index c97dec5ef3ebceefb1ba67a1534d021ebe94e7f6..5c624bdebfb9e86cbe67506e8c8b47ee7ede58d5 100644 (file)
@@ -6,7 +6,7 @@
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
@@ -15,8 +15,7 @@
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 /* Stupid dummy functions required due to the horrible dependency mess
 
 #include "includes.h"
 
+int get_client_fd(void)
+{
+       return -1;
+}
+
 int find_service(fstring service)
 {
        return -1;
 }
 
-BOOL conn_snum_used(int snum)
+bool conn_snum_used(int snum)
 {
        return False;
 }
@@ -38,22 +42,27 @@ void cancel_pending_lock_requests_by_fid(files_struct *fsp, struct byte_range_lo
 {
 }
 
-NTSTATUS dptr_create(connection_struct *conn, pstring path, BOOL old_handle, BOOL expect_close,uint16 spid,
-                               const char *wcard, BOOL wcard_has_wild, uint32 attr, struct dptr_struct **dptr_ret)
+void send_stat_cache_delete_message(const char *name)
+{
+}
+
+NTSTATUS can_delete_directory(struct connection_struct *conn,
+                               const char *dirname)
 {
        return NT_STATUS_OK;
 }
 
-int dptr_CloseDir(struct dptr_struct *dptr)
+bool change_to_root_user(void)
 {
-       return 0;
+       return false;
 }
 
-const char *dptr_ReadDirName(struct dptr_struct *dptr, long *poffset, SMB_STRUCT_STAT *pst)
+struct event_context *smbd_event_context(void)
 {
        return NULL;
 }
 
-void send_stat_cache_delete_message(const char *name)
+struct messaging_context *smbd_messaging_context(void)
 {
+       return NULL;
 }