diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-10-18 11:04:30 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-10-18 11:04:30 +0200 |
commit | 276c7279d4743b2947b2a5bbe0ded0e44d051a96 (patch) | |
tree | 94ac486c6db06792b26a00c980890e1800e9ea4c /cpp/src/Ice/EndpointI.h | |
parent | More WinRT build setting and system fixes (diff) | |
download | ice-276c7279d4743b2947b2a5bbe0ded0e44d051a96.tar.bz2 ice-276c7279d4743b2947b2a5bbe0ded0e44d051a96.tar.xz ice-276c7279d4743b2947b2a5bbe0ded0e44d051a96.zip |
Fixed ICE-4591, better acceptor tracing
Diffstat (limited to 'cpp/src/Ice/EndpointI.h')
-rw-r--r-- | cpp/src/Ice/EndpointI.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/cpp/src/Ice/EndpointI.h b/cpp/src/Ice/EndpointI.h index 3dce9a7162a..17f079d1c1e 100644 --- a/cpp/src/Ice/EndpointI.h +++ b/cpp/src/Ice/EndpointI.h @@ -57,6 +57,11 @@ public: // Return the endpoint type. // virtual Ice::Short type() const = 0; + + // + // Return the protocol name + // + virtual std::string protocol() const = 0; // // Return the timeout for the endpoint in milliseconds. 0 means @@ -102,12 +107,12 @@ public: // // Returns the encoding version supported by this endpoint. // - virtual const ::Ice::EncodingVersion& encoding() const; + const ::Ice::EncodingVersion& encodingVersion() const; // // Returns the encoding version supported by this endpoint. // - virtual const ::Ice::ProtocolVersion& protocol() const; + const ::Ice::ProtocolVersion& protocolVersion() const; // // Return a server side transceiver for this endpoint, or null if a |