summaryrefslogtreecommitdiff
path: root/source4/include
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-06-28 07:41:15 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:48 -0500
commitd4ae6ae74d712b74800e360590052d318d2fd101 (patch)
tree501cd87429114ba59612ffa9633117a5f40fc83c /source4/include
parentf18fa1dfdbd1ca2d721d146522c7efdfae638e7f (diff)
downloadsamba-d4ae6ae74d712b74800e360590052d318d2fd101.tar.gz
samba-d4ae6ae74d712b74800e360590052d318d2fd101.tar.bz2
samba-d4ae6ae74d712b74800e360590052d318d2fd101.zip
r1277: rename struct server_context to smbsrv_ontext
because I need server_context fot the generic server infastructure metze (This used to be commit 0712f9f30797e65362c99423c0cf158a2f539000)
Diffstat (limited to 'source4/include')
-rw-r--r--source4/include/context.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/source4/include/context.h b/source4/include/context.h
index 8c19419a8c..68ae3ffc88 100644
--- a/source4/include/context.h
+++ b/source4/include/context.h
@@ -53,7 +53,7 @@ struct tcon_context {
struct tcon_context *next, *prev;
/* the server context that this was created on */
- struct server_context *smb;
+ struct smbsrv_context *smb_ctx;
/* a talloc context for all data in this structure */
TALLOC_CTX *mem_ctx;
@@ -81,7 +81,7 @@ struct tcon_context {
functions */
struct request_context {
/* the server_context contains all context specific to this SMB socket */
- struct server_context *smb;
+ struct smbsrv_context *smb_ctx;
/* conn is only set for operations that have a valid TID */
struct tcon_context *conn;
@@ -338,9 +338,9 @@ struct signing_context {
#include "smbd/process_model.h"
-/* smb context structure. This should contain all the state
+/* smb server context structure. This should contain all the state
* information associated with a SMB server */
-struct server_context {
+struct smbsrv_context {
/* a talloc context for all data in this structure */
TALLOC_CTX *mem_ctx;
@@ -373,5 +373,3 @@ struct server_context {
/* process model specific operations */
const struct model_ops *model_ops;
};
-
-