diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-12 12:13:29 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-12 12:13:29 -0230 |
commit | 4cf00523c0fcccfcfb3859467bb546d96201e65e (patch) | |
tree | 23df49beb9d9b737e7193a755dfd44e862859fd0 /cpp/src/IceSSL/EndpointI.h | |
parent | Fixed bug 2220 (diff) | |
download | ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.tar.bz2 ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.tar.xz ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.zip |
Bug 1658 - minor refactoring
Diffstat (limited to 'cpp/src/IceSSL/EndpointI.h')
-rw-r--r-- | cpp/src/IceSSL/EndpointI.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/EndpointI.h b/cpp/src/IceSSL/EndpointI.h index 62a2ae68b05..c5a4db62e93 100644 --- a/cpp/src/IceSSL/EndpointI.h +++ b/cpp/src/IceSSL/EndpointI.h @@ -23,7 +23,7 @@ class EndpointI : public IceInternal::EndpointI { public: - EndpointI(const InstancePtr&, const std::string&, Ice::Int, Ice::Int, const std::string&, bool, bool); + EndpointI(const InstancePtr&, const std::string&, Ice::Int, Ice::Int, const std::string&, bool); EndpointI(const InstancePtr&, const std::string&, bool); EndpointI(const InstancePtr&, IceInternal::BasicStream*); @@ -41,7 +41,7 @@ public: virtual IceInternal::TransceiverPtr transceiver(IceInternal::EndpointIPtr&) const; virtual std::vector<IceInternal::ConnectorPtr> connectors() const; virtual IceInternal::AcceptorPtr acceptor(IceInternal::EndpointIPtr&, const std::string&) const; - virtual std::vector<IceInternal::EndpointIPtr> expand() const; + virtual std::vector<IceInternal::EndpointIPtr> expand(bool) const; virtual bool equivalent(const IceInternal::TransceiverPtr&) const; virtual bool equivalent(const IceInternal::AcceptorPtr&) const; @@ -70,7 +70,6 @@ private: const Ice::Int _timeout; const std::string _connectionId; const bool _compress; - const bool _oaEndpoint; }; class EndpointFactoryI : public IceInternal::EndpointFactory |