diff options
author | Marc Laukien <marc@zeroc.com> | 2004-09-13 18:19:41 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-09-13 18:19:41 +0000 |
commit | e012bfcd0c32c6fd185890aedb5f17e69da8870e (patch) | |
tree | 28dd15cd1a91ee0a244078487ed0d7b799364504 /cpp/src/Ice/ConnectionFactory.cpp | |
parent | adding AMI tests (diff) | |
download | ice-e012bfcd0c32c6fd185890aedb5f17e69da8870e.tar.bz2 ice-e012bfcd0c32c6fd185890aedb5f17e69da8870e.tar.xz ice-e012bfcd0c32c6fd185890aedb5f17e69da8870e.zip |
Connection.ice
Diffstat (limited to 'cpp/src/Ice/ConnectionFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionFactory.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cpp/src/Ice/ConnectionFactory.cpp b/cpp/src/Ice/ConnectionFactory.cpp index 679d60a5c88..9ab1fbd2450 100644 --- a/cpp/src/Ice/ConnectionFactory.cpp +++ b/cpp/src/Ice/ConnectionFactory.cpp @@ -15,7 +15,6 @@ #include <Ice/DefaultsAndOverrides.h> #include <Ice/Properties.h> #include <Ice/Transceiver.h> -#include <Ice/TransportInfo.h> #include <Ice/Connector.h> #include <Ice/Acceptor.h> #include <Ice/ThreadPool.h> @@ -459,7 +458,7 @@ IceInternal::OutgoingConnectionFactory::flushBatchRequests() { try { - (*p)->flushBatchRequest(); + (*p)->flushBatchRequests(); } catch(const LocalException&) { @@ -607,7 +606,7 @@ IceInternal::IncomingConnectionFactory::flushBatchRequests() { try { - (*p)->flushBatchRequest(); + (*p)->flushBatchRequests(); } catch(const LocalException&) { @@ -767,7 +766,7 @@ IceInternal::IncomingConnectionFactory::toString() const if(_transceiver) { - return _transceiver->info()->toString(); + return _transceiver->toString(); } assert(_acceptor); |