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/Ice/UdpEndpointI.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/Ice/UdpEndpointI.h')
-rw-r--r-- | cpp/src/Ice/UdpEndpointI.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/Ice/UdpEndpointI.h b/cpp/src/Ice/UdpEndpointI.h index d78dbba169f..8a52f4d6d77 100644 --- a/cpp/src/Ice/UdpEndpointI.h +++ b/cpp/src/Ice/UdpEndpointI.h @@ -23,7 +23,7 @@ class UdpEndpointI : public EndpointI public: UdpEndpointI(const InstancePtr&, const std::string&, Ice::Int, const std::string&, Ice::Int, bool, - const std::string&, bool, bool); + const std::string&, bool); UdpEndpointI(const InstancePtr&, const std::string&, bool); UdpEndpointI(BasicStream*); @@ -41,7 +41,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; @@ -76,7 +76,6 @@ private: const bool _connect; const std::string _connectionId; const bool _compress; - const bool _oaEndpoint; }; class UdpEndpointFactory : public EndpointFactory |