From c61089219b82ff94f83e1fb428e8b47ad778c868 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 2 Feb 2004 13:43:03 +0000 Subject: - we now specify the object files in the subsystems config.m4 file I plan to convert all objectfile group to use SMB_SUBSYSTEM later I'll add a SMB_BINARY() and SMB_LIBRARY(), then there will be no more need to touch Makefile.in, because all make rules will be autogenerated by configure - convert the PROCESS_MODEL subsystem to this new scheme and move the pthread test to smbd/process_model.m4 - convert the CHARSET subsystem to this new scheme and move the iconv test to lib/iconv.m4 (This used to be commit 2e57ee884ebea194ee79ac20e84e385481b56aa2) --- source4/include/context.h | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) (limited to 'source4/include') diff --git a/source4/include/context.h b/source4/include/context.h index 4cfe6c302b..7b156ed382 100644 --- a/source4/include/context.h +++ b/source4/include/context.h @@ -326,32 +326,7 @@ struct timers_context { time_t last_smb_conf_reload; }; - -/* the process model operations structure - contains function pointers to - the model-specific implementations of each operation */ -struct model_ops { - /* called at startup when the model is selected */ - void (*model_startup)(void); - - /* function to accept new connection */ - void (*accept_connection)(struct event_context *, struct fd_event *, time_t, uint16); - - /* function to accept new rpc over tcp connection */ - void (*accept_rpc_connection)(struct event_context *, struct fd_event *, time_t, uint16); - - /* function to terminate a connection */ - void (*terminate_connection)(struct server_context *smb, const char *reason); - - /* function to terminate a connection */ - void (*terminate_rpc_connection)(void *r, const char *reason); - - /* function to exit server */ - void (*exit_server)(struct server_context *smb, const char *reason); - - /* returns process or thread id */ - int (*get_id)(struct request_context *req); -}; - +#include "smbd/process_model.h" /* smb context structure. This should contain all the state * information associated with a SMB server */ -- cgit