diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-11-05 15:33:01 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-11-05 15:33:01 +0100 |
commit | cb4d5772e9a7a9228577df83027e45ec7de022ea (patch) | |
tree | bd6489fe77ed5fba43adff613293d580fda8e0f3 /cpp/src/Ice/WSTransceiver.cpp | |
parent | Fixed src tree build of IceJS (diff) | |
download | ice-cb4d5772e9a7a9228577df83027e45ec7de022ea.tar.bz2 ice-cb4d5772e9a7a9228577df83027e45ec7de022ea.tar.xz ice-cb4d5772e9a7a9228577df83027e45ec7de022ea.zip |
Fixed ICE-5607: relaxed Ice.MessageSizeMax
Diffstat (limited to 'cpp/src/Ice/WSTransceiver.cpp')
-rw-r--r-- | cpp/src/Ice/WSTransceiver.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/cpp/src/Ice/WSTransceiver.cpp b/cpp/src/Ice/WSTransceiver.cpp index 441ef688abb..2e97aa219b4 100644 --- a/cpp/src/Ice/WSTransceiver.cpp +++ b/cpp/src/Ice/WSTransceiver.cpp @@ -800,9 +800,9 @@ IceInternal::WSTransceiver::getInfo() const } void -IceInternal::WSTransceiver::checkSendSize(const Buffer& buf, size_t messageSizeMax) +IceInternal::WSTransceiver::checkSendSize(const Buffer& buf) { - _delegate->checkSendSize(buf, messageSizeMax); + _delegate->checkSendSize(buf); } IceInternal::WSTransceiver::WSTransceiver(const ProtocolInstancePtr& instance, const TransceiverPtr& del, @@ -816,14 +816,12 @@ IceInternal::WSTransceiver::WSTransceiver(const ProtocolInstancePtr& instance, c _state(StateInitializeDelegate), _parser(new HttpParser), _readState(ReadStateOpcode), - _readBuffer(0), _readBufferSize(1024), _readLastFrame(false), _readOpCode(0), _readHeaderLength(0), _readPayloadLength(0), _writeState(WriteStateHeader), - _writeBuffer(0), _writeBufferSize(1024), _readPending(false), _writePending(false), @@ -852,14 +850,12 @@ IceInternal::WSTransceiver::WSTransceiver(const ProtocolInstancePtr& instance, c _state(StateInitializeDelegate), _parser(new HttpParser), _readState(ReadStateOpcode), - _readBuffer(0), _readBufferSize(1024), _readLastFrame(false), _readOpCode(0), _readHeaderLength(0), _readPayloadLength(0), _writeState(WriteStateHeader), - _writeBuffer(0), _writeBufferSize(1024), _readPending(false), _writePending(false), |