diff options
author | Jose <jose@zeroc.com> | 2014-08-13 22:30:18 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-08-13 22:30:18 +0200 |
commit | edd76dbfad6a28c11e441571af493e1eb99ddf52 (patch) | |
tree | 6e8d1045d6e4c60120970468d68b4734e2fee6e0 /cpp/src/Ice/WSAcceptor.h | |
parent | - Added back the Ice.BackgroundIO property. (diff) | |
download | ice-edd76dbfad6a28c11e441571af493e1eb99ddf52.tar.bz2 ice-edd76dbfad6a28c11e441571af493e1eb99ddf52.tar.xz ice-edd76dbfad6a28c11e441571af493e1eb99ddf52.zip |
Rename WS transport files for consistency with TCP/UDP transports.
Diffstat (limited to 'cpp/src/Ice/WSAcceptor.h')
-rw-r--r-- | cpp/src/Ice/WSAcceptor.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/cpp/src/Ice/WSAcceptor.h b/cpp/src/Ice/WSAcceptor.h new file mode 100644 index 00000000000..5b4347a25e9 --- /dev/null +++ b/cpp/src/Ice/WSAcceptor.h @@ -0,0 +1,57 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#ifndef ICE_WS_ACCEPTOR_I_H +#define ICE_WS_ACCEPTOR_I_H + +#include <Ice/LoggerF.h> +#include <Ice/TransceiverF.h> +#include <Ice/Acceptor.h> +#include <Ice/Network.h> +#include <Ice/ProtocolInstance.h> + +namespace IceInternal +{ + +class WSEndpoint; + +class WSAcceptor : public Acceptor, public NativeInfo +{ +public: + + virtual NativeInfoPtr getNativeInfo(); +#if defined(ICE_USE_IOCP) + virtual AsyncInfo* getAsyncInfo(SocketOperation); +#elif defined(ICE_OS_WINRT) + virtual void setCompletedHandler(SocketOperationCompletedHandler^); +#endif + + virtual void close(); + virtual void listen(); +#if defined(ICE_USE_IOCP) || defined(ICE_OS_WINRT) + virtual void startAccept(); + virtual void finishAccept(); +#endif + virtual TransceiverPtr accept(); + virtual std::string protocol() const; + virtual std::string toString() const; + +private: + + WSAcceptor(const ProtocolInstancePtr&, const AcceptorPtr&); + virtual ~WSAcceptor(); + friend class WSEndpoint; + + const ProtocolInstancePtr _instance; + const AcceptorPtr _delegate; +}; + +} + +#endif |