Simply our main loop processing. A lot :-). Correctly use events for all the previous...
[ira/wip.git] / source3 / lib / dummysmbd.c
index 087de2fe253f20540ad82c896aee88f6cc003a62..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
@@ -24,9 +23,9 @@
 
 #include "includes.h"
 
-void decrement_smbd_process_count( void )
+int get_client_fd(void)
 {
-       return;
+       return -1;
 }
 
 int find_service(fstring service)
@@ -34,7 +33,7 @@ int find_service(fstring service)
        return -1;
 }
 
-BOOL conn_snum_used(int snum)
+bool conn_snum_used(int snum)
 {
        return False;
 }
@@ -42,3 +41,28 @@ BOOL conn_snum_used(int snum)
 void cancel_pending_lock_requests_by_fid(files_struct *fsp, struct byte_range_lock *br_lck)
 {
 }
+
+void send_stat_cache_delete_message(const char *name)
+{
+}
+
+NTSTATUS can_delete_directory(struct connection_struct *conn,
+                               const char *dirname)
+{
+       return NT_STATUS_OK;
+}
+
+bool change_to_root_user(void)
+{
+       return false;
+}
+
+struct event_context *smbd_event_context(void)
+{
+       return NULL;
+}
+
+struct messaging_context *smbd_messaging_context(void)
+{
+       return NULL;
+}