summaryrefslogtreecommitdiff
path: root/qpid/extras/dispatch/src/dispatch_private.h
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2013-06-11 14:13:11 +0000
committerTed Ross <tross@apache.org>2013-06-11 14:13:11 +0000
commita155aa356400c8b73be5cb079e39091194672df7 (patch)
tree02581cc384805207fba5028d755e38f87070053e /qpid/extras/dispatch/src/dispatch_private.h
parent1dc04d1335a76abd84bbaabd04af518a3d2e3c71 (diff)
downloadqpid-python-a155aa356400c8b73be5cb079e39091194672df7.tar.gz
QPID_4913 - Work in progress
- Added configuration handling of listeners (basic, still needs ssl, sasl, etc.) - Updated the server tests to use the configuration file rather than hard-coded settings. - Fixed a bug in the CMake file regarding the use of the PYTHON include path. - Made changes to accomodate older compilers. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1491805 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/extras/dispatch/src/dispatch_private.h')
-rw-r--r--qpid/extras/dispatch/src/dispatch_private.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/extras/dispatch/src/dispatch_private.h b/qpid/extras/dispatch/src/dispatch_private.h
index 699e3a2be4..ef93441776 100644
--- a/qpid/extras/dispatch/src/dispatch_private.h
+++ b/qpid/extras/dispatch/src/dispatch_private.h
@@ -20,6 +20,7 @@
*/
#include "server_private.h"
+#include "config_private.h"
typedef struct dx_container_t dx_container_t;
typedef struct dx_router_t dx_router_t;
@@ -30,6 +31,7 @@ struct dx_dispatch_t {
dx_container_t *container;
dx_router_t *router;
dx_agent_t *agent;
+ dx_config_t *config;
};
#endif