summaryrefslogtreecommitdiffstats
path: root/source4/smbd/service_stream.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-12-08 09:13:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:47:12 -0500
commit7eb3fc533d7016bc0f20adbc805a0fd926c783b4 (patch)
tree1e815fa035ebea2355c25fd77ec51e88c3a8ecfd /source4/smbd/service_stream.h
parent91cf3943d3a6f327f831377ea9b335002e10e055 (diff)
downloadsamba-7eb3fc533d7016bc0f20adbc805a0fd926c783b4.tar.gz
samba-7eb3fc533d7016bc0f20adbc805a0fd926c783b4.tar.xz
samba-7eb3fc533d7016bc0f20adbc805a0fd926c783b4.zip
r12125: make the deferred connection termination the default,
so that I can remove all the other versions of it metze (This used to be commit 82de98b8e9f3030449225634935a71a3dd7e117c)
Diffstat (limited to 'source4/smbd/service_stream.h')
-rw-r--r--source4/smbd/service_stream.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/source4/smbd/service_stream.h b/source4/smbd/service_stream.h
index 3ae71074195..6f1a9672373 100644
--- a/source4/smbd/service_stream.h
+++ b/source4/smbd/service_stream.h
@@ -23,10 +23,10 @@
/* modules can use the following to determine if the interface has changed
* please increment the version number after each interface change
- * with a comment and maybe update struct process_model_critical_sizes.
+ * with a comment and maybe update struct stream_connection_critical_sizes.
*/
-/* version 1 - initial version - metze */
-#define SERVER_SERVICE_VERSION 1
+/* version 0 - initial version - metze */
+#define SERVER_SERVICE_VERSION 0
/*
top level context for an established stream connection
@@ -44,6 +44,9 @@ struct stream_connection {
struct socket_context *socket;
struct messaging_context *msg_ctx;
+
+ BOOL processing;
+ const char *terminate;
};