diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-12 04:44:58 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-12 04:44:58 +0000 |
commit | 708d97e4bd4acf9d7c1bad093d0c3847282b09c2 (patch) | |
tree | f6d6de12f2b778f67d52906c8978578bb278b4e6 /cppe/src/IceE/OutgoingConnectionFactory.cpp | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=439 (diff) | |
download | ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.tar.bz2 ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.tar.xz ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.zip |
ICEE_ -> ICE_
Diffstat (limited to 'cppe/src/IceE/OutgoingConnectionFactory.cpp')
-rwxr-xr-x | cppe/src/IceE/OutgoingConnectionFactory.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cppe/src/IceE/OutgoingConnectionFactory.cpp b/cppe/src/IceE/OutgoingConnectionFactory.cpp index a00d79ec530..c7056215812 100755 --- a/cppe/src/IceE/OutgoingConnectionFactory.cpp +++ b/cppe/src/IceE/OutgoingConnectionFactory.cpp @@ -18,7 +18,7 @@ #include <IceE/RouterInfo.h> #include <IceE/LocalException.h> #include <IceE/Functional.h> -#ifdef ICEE_HAS_ROUTER +#ifdef ICE_HAS_ROUTER # include <IceE/Reference.h> #endif #include <list> @@ -247,7 +247,7 @@ IceInternal::OutgoingConnectionFactory::create(const vector<EndpointPtr>& endpts TransceiverPtr transceiver = connector->connect(timeout); assert(transceiver); -#ifdef ICEE_PURE_CLIENT +#ifdef ICE_PURE_CLIENT connection = new Connection(_instance, transceiver, endpoint); #else connection = new Connection(_instance, transceiver, endpoint, 0); @@ -328,7 +328,7 @@ IceInternal::OutgoingConnectionFactory::create(const vector<EndpointPtr>& endpts return connection; } -#ifdef ICEE_HAS_ROUTER +#ifdef ICE_HAS_ROUTER void IceInternal::OutgoingConnectionFactory::setRouter(const RouterPrx& router) @@ -350,7 +350,7 @@ IceInternal::OutgoingConnectionFactory::setRouter(const RouterPrx& router) // received over such connections. // ObjectPrx proxy = routerInfo->getClientProxy(); -#ifndef ICEE_PURE_CLIENT +#ifndef ICE_PURE_CLIENT ObjectAdapterPtr adapter = routerInfo->getAdapter(); #endif vector<EndpointPtr> endpoints = proxy->__reference()->getEndpoints(); @@ -367,7 +367,7 @@ IceInternal::OutgoingConnectionFactory::setRouter(const RouterPrx& router) endpoint = endpoint->timeout(_instance->defaultsAndOverrides()->overrideTimeoutValue); } -#ifndef ICEE_PURE_CLIENT +#ifndef ICE_PURE_CLIENT pair<multimap<EndpointPtr, ConnectionPtr>::iterator, multimap<EndpointPtr, ConnectionPtr>::iterator> pr = _connections.equal_range(endpoint); @@ -392,7 +392,7 @@ IceInternal::OutgoingConnectionFactory::setRouter(const RouterPrx& router) #endif -#ifdef ICEE_HAS_BATCH +#ifdef ICE_HAS_BATCH void IceInternal::OutgoingConnectionFactory::flushBatchRequests() { @@ -435,7 +435,7 @@ IceInternal::OutgoingConnectionFactory::~OutgoingConnectionFactory() assert(_connections.empty()); } -#ifndef ICEE_PURE_CLIENT +#ifndef ICE_PURE_CLIENT void IceInternal::OutgoingConnectionFactory::removeAdapter(const ObjectAdapterPtr& adapter) |