diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-03-20 18:18:03 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-03-20 18:18:03 +0100 |
commit | c6133370d229578697c157f94b297dcc593b4a5f (patch) | |
tree | 9bbc2e3083338315393109a511e7a65d09dc9ac6 /cpp/src/Ice/ConnectionFactory.h | |
parent | Remove src directory. (diff) | |
download | ice-c6133370d229578697c157f94b297dcc593b4a5f.tar.bz2 ice-c6133370d229578697c157f94b297dcc593b4a5f.tar.xz ice-c6133370d229578697c157f94b297dcc593b4a5f.zip |
Added iOS support for IceTouch
Diffstat (limited to 'cpp/src/Ice/ConnectionFactory.h')
-rw-r--r-- | cpp/src/Ice/ConnectionFactory.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/src/Ice/ConnectionFactory.h b/cpp/src/Ice/ConnectionFactory.h index b6429b80e7f..bf211972ec8 100644 --- a/cpp/src/Ice/ConnectionFactory.h +++ b/cpp/src/Ice/ConnectionFactory.h @@ -170,6 +170,11 @@ public: void hold(); void destroy(); +#if TARGET_OS_IPHONE != 0 + void startAcceptor(); + void stopAcceptor(); +#endif + void updateConnectionObservers(); void waitUntilHolding() const; @@ -223,6 +228,10 @@ private: const TransceiverPtr _transceiver; EndpointIPtr _endpoint; +#if TARGET_OS_IPHONE != 0 + bool _acceptorStarted; +#endif + Ice::ObjectAdapterIPtr _adapter; const bool _warn; |