summaryrefslogtreecommitdiff
path: root/source4/include
diff options
context:
space:
mode:
Diffstat (limited to 'source4/include')
-rw-r--r--source4/include/context.h3
-rw-r--r--source4/include/local.h4
2 files changed, 7 insertions, 0 deletions
diff --git a/source4/include/context.h b/source4/include/context.h
index 9ec5d2d8dd..4cfe6c302b 100644
--- a/source4/include/context.h
+++ b/source4/include/context.h
@@ -341,6 +341,9 @@ struct model_ops {
/* 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);
diff --git a/source4/include/local.h b/source4/include/local.h
index 57aac01ca8..81dd7e8b20 100644
--- a/source4/include/local.h
+++ b/source4/include/local.h
@@ -227,4 +227,8 @@
/* size of listen() backlog in smbd */
#define SMBD_LISTEN_BACKLOG 10
+/* the range of ports to try for decrpc over tcp endpoints */
+#define DCERPC_TCP_LOW_PORT 1024
+#define DCERPC_TCP_HIGH_PORT 1300
+
#endif