summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ios/StreamTransceiver.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-06-27 17:54:30 +0200
committerBenoit Foucher <benoit@zeroc.com>2016-06-27 17:54:30 +0200
commitc56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7 (patch)
tree5cb64dfe155e5d2349efb6c7dc4b0f5b5284d44a /cpp/src/Ice/ios/StreamTransceiver.h
parentFix Windows php build to restore nuget packages (diff)
downloadice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.tar.bz2
ice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.tar.xz
ice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.zip
Refactored SSL and iAP transports, support for running SSL on top
of TCP/iAP/Bluetooth.
Diffstat (limited to 'cpp/src/Ice/ios/StreamTransceiver.h')
-rw-r--r--cpp/src/Ice/ios/StreamTransceiver.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/cpp/src/Ice/ios/StreamTransceiver.h b/cpp/src/Ice/ios/StreamTransceiver.h
index 97578f094d0..e38285451f8 100644
--- a/cpp/src/Ice/ios/StreamTransceiver.h
+++ b/cpp/src/Ice/ios/StreamTransceiver.h
@@ -29,8 +29,7 @@ namespace IceObjC
class Instance;
typedef IceUtil::Handle<Instance> InstancePtr;
-class StreamTransceiver : public IceInternal::Transceiver, public IceInternal::StreamNativeInfo,
- public IceInternal::WSTransceiverDelegate
+class StreamTransceiver : public IceInternal::Transceiver, public IceInternal::StreamNativeInfo
{
enum State
{
@@ -67,15 +66,12 @@ public:
virtual std::string toString() const;
virtual std::string toDetailedString() const;
virtual Ice::ConnectionInfoPtr getInfo() const;
- virtual Ice::ConnectionInfoPtr getWSInfo(const Ice::HeaderDict&) const;
virtual void checkSendSize(const IceInternal::Buffer&);
virtual void setBufferSize(int, int);
private:
- void checkCertificates();
void checkError(CFErrorRef, const char*, int);
- void fillConnectionInfo(const Ice::IPConnectionInfoPtr&) const;
const InstancePtr _instance;
const std::string _host;
@@ -85,16 +81,12 @@ private:
bool _readStreamRegistered;
bool _writeStreamRegistered;
bool _opening;
- bool _checkCertificates;
IceUtil::Mutex _mutex;
bool _error;
State _state;
std::string _desc;
-
- size_t _maxSendPacketSize;
- size_t _maxRecvPacketSize;
};
}