diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-09-05 10:42:18 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-09-05 10:42:18 -0230 |
commit | 9786853ab2d88598021aaec5c0409d3a45a50a13 (patch) | |
tree | d64858749513c529fdb84a98d8637d19f2c125e4 /cpp/src/Ice/Acceptor.h | |
parent | Minor change to JS print stack traces (diff) | |
download | ice-9786853ab2d88598021aaec5c0409d3a45a50a13.tar.bz2 ice-9786853ab2d88598021aaec5c0409d3a45a50a13.tar.xz ice-9786853ab2d88598021aaec5c0409d3a45a50a13.zip |
ICE-4891 Refactor network tracing
Diffstat (limited to 'cpp/src/Ice/Acceptor.h')
-rw-r--r-- | cpp/src/Ice/Acceptor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Ice/Acceptor.h b/cpp/src/Ice/Acceptor.h index ab3aefe1c8f..0b7342ad88f 100644 --- a/cpp/src/Ice/Acceptor.h +++ b/cpp/src/Ice/Acceptor.h @@ -13,6 +13,7 @@ #include <IceUtil/Shared.h> #include <Ice/AcceptorF.h> #include <Ice/TransceiverF.h> +#include <Ice/EndpointIF.h> #include <Ice/Network.h> namespace IceInternal @@ -24,7 +25,7 @@ public: virtual NativeInfoPtr getNativeInfo() = 0; virtual void close() = 0; - virtual void listen() = 0; + virtual EndpointIPtr listen(const EndpointIPtr& endp) = 0; #if defined(ICE_USE_IOCP) || defined(ICE_OS_WINRT) virtual void startAccept() = 0; virtual void finishAccept() = 0; @@ -32,6 +33,7 @@ public: virtual TransceiverPtr accept() = 0; virtual std::string protocol() const = 0; virtual std::string toString() const = 0; + virtual std::string toDetailedString() const = 0; }; } |