summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/TcpEndpointI.h
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-06-12 12:13:29 -0230
committerDwayne Boone <dwayne@zeroc.com>2007-06-12 12:13:29 -0230
commit4cf00523c0fcccfcfb3859467bb546d96201e65e (patch)
tree23df49beb9d9b737e7193a755dfd44e862859fd0 /cpp/src/Ice/TcpEndpointI.h
parentFixed bug 2220 (diff)
downloadice-4cf00523c0fcccfcfb3859467bb546d96201e65e.tar.bz2
ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.tar.xz
ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.zip
Bug 1658 - minor refactoring
Diffstat (limited to 'cpp/src/Ice/TcpEndpointI.h')
-rw-r--r--cpp/src/Ice/TcpEndpointI.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/Ice/TcpEndpointI.h b/cpp/src/Ice/TcpEndpointI.h
index f640ac9af27..eba4cf7208a 100644
--- a/cpp/src/Ice/TcpEndpointI.h
+++ b/cpp/src/Ice/TcpEndpointI.h
@@ -22,7 +22,7 @@ class TcpEndpointI : public EndpointI
{
public:
- TcpEndpointI(const InstancePtr&, const std::string&, Ice::Int, Ice::Int, const std::string&, bool, bool);
+ TcpEndpointI(const InstancePtr&, const std::string&, Ice::Int, Ice::Int, const std::string&, bool);
TcpEndpointI(const InstancePtr&, const std::string&, bool);
TcpEndpointI(BasicStream*);
@@ -40,7 +40,7 @@ public:
virtual TransceiverPtr transceiver(EndpointIPtr&) const;
virtual std::vector<ConnectorPtr> connectors() const;
virtual AcceptorPtr acceptor(EndpointIPtr&, const std::string&) const;
- virtual std::vector<EndpointIPtr> expand() const;
+ virtual std::vector<EndpointIPtr> expand(bool) const;
virtual bool equivalent(const TransceiverPtr&) const;
virtual bool equivalent(const AcceptorPtr&) const;
@@ -69,7 +69,6 @@ private:
const Ice::Int _timeout;
const std::string _connectionId;
const bool _compress;
- const bool _oaEndpoint;
};
class TcpEndpointFactory : public EndpointFactory