summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/WSTransceiver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/WSTransceiver.cpp')
-rw-r--r--cpp/src/Ice/WSTransceiver.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/src/Ice/WSTransceiver.cpp b/cpp/src/Ice/WSTransceiver.cpp
index d83e553308d..d476b52a67e 100644
--- a/cpp/src/Ice/WSTransceiver.cpp
+++ b/cpp/src/Ice/WSTransceiver.cpp
@@ -810,6 +810,8 @@ IceInternal::WSTransceiver::getInfo() const
info->localPort = di->localPort;
info->remoteAddress = di->remoteAddress;
info->remotePort = di->remotePort;
+ info->rcvSize = di->rcvSize;
+ info->sndSize = di->sndSize;
info->headers = _parser->getHeaders();
return info;
}
@@ -820,6 +822,12 @@ IceInternal::WSTransceiver::checkSendSize(const Buffer& buf)
_delegate->checkSendSize(buf);
}
+void
+IceInternal::WSTransceiver::setBufferSize(int rcvSize, int sndSize)
+{
+ _delegate->setBufferSize(rcvSize, sndSize);
+}
+
IceInternal::WSTransceiver::WSTransceiver(const ProtocolInstancePtr& instance, const TransceiverPtr& del,
const string& host, int port, const string& resource) :
_instance(instance),