summaryrefslogtreecommitdiff
path: root/apps/Gateway
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-02 14:33:57 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-02 14:33:57 +0000
commit537b86cceedccea23bad6650bb05160e6f5ee410 (patch)
treeccd202dd920b50dd00f78748f22c4d7065156d71 /apps/Gateway
parent2872a90cd40df7030519c3a7d66605ac9f369041 (diff)
downloadATCD-537b86cceedccea23bad6650bb05160e6f5ee410.tar.gz
(Options ctor): reordered initializers to match declaration order.
Diffstat (limited to 'apps/Gateway')
-rw-r--r--apps/Gateway/Gateway/Options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/Gateway/Gateway/Options.cpp b/apps/Gateway/Gateway/Options.cpp
index d4ee425caf3..48f4834bfe9 100644
--- a/apps/Gateway/Gateway/Options.cpp
+++ b/apps/Gateway/Gateway/Options.cpp
@@ -27,8 +27,8 @@ Options::Options (void)
threading_strategy_ (REACTIVE),
options_ (0),
supplier_acceptor_port_ (DEFAULT_PEER_SUPPLIER_PORT),
- consumer_connector_port_ (DEFAULT_GATEWAY_CONSUMER_PORT),
supplier_connector_port_ (DEFAULT_GATEWAY_SUPPLIER_PORT),
+ consumer_connector_port_ (DEFAULT_GATEWAY_CONSUMER_PORT),
max_timeout_ (MAX_TIMEOUT)
{
ACE_OS::strcpy (this->proxy_config_file_, "proxy_config");
@@ -70,7 +70,7 @@ Options::max_timeout (void) const
return this->max_timeout_;
}
-int
+int
Options::blocking_semantics (void) const
{
return this->blocking_semantics_;