r25446: Merge some changes I made on the way home from SFO:
[jra/samba/.git] / source4 / smbd / process_model.c
index d3e5eeaa48b78303b09d24e283fc1db765d91e45..bb4d3a53bbfc1fb635ed7982bef75582e99d8c9e 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,
    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/>.
 */
 
 #include "includes.h"
-#include "lib/events/events.h"
-#include "smb_server/smb_server.h"
+#include "smbd/process_model.h"
+#include "build.h"
+#include "param/param.h"
 
 /*
   setup the events for the chosen process model
 */
-const struct model_ops *process_model_startup(struct event_context *ev, const char *model)
+_PUBLIC_ const struct model_ops *process_model_startup(struct event_context *ev, const char *model)
 {
        const struct model_ops *ops;
 
@@ -53,7 +53,7 @@ static int num_models;
   The 'name' can be later used by other backends to find the operations
   structure for this backend.  
 */
-NTSTATUS register_process_model(const void *_ops)
+_PUBLIC_ NTSTATUS register_process_model(const void *_ops)
 {
        const struct model_ops *ops = _ops;
 
@@ -80,6 +80,19 @@ NTSTATUS register_process_model(const void *_ops)
        return NT_STATUS_OK;
 }
 
+NTSTATUS process_model_init(void)
+{
+       init_module_fn static_init[] = STATIC_process_model_MODULES;
+       init_module_fn *shared_init = load_samba_modules(NULL, global_loadparm, "process_model");
+
+       run_init_functions(static_init);
+       run_init_functions(shared_init);
+
+       talloc_free(shared_init);
+       
+       return NT_STATUS_OK;
+}
+
 /*
   return the operations structure for a named backend of the specified type
 */