diff options
author | Gordon Sim <gsim@apache.org> | 2010-05-27 18:09:13 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2010-05-27 18:09:13 +0000 |
commit | c95b2615abf0883f7d92aad73138a4dda14e1311 (patch) | |
tree | 7eb2195eab5c7ecafab17e553635a434b20dee64 /cpp/src/qpid/client/SessionImpl.cpp | |
parent | 91491e533896be58438ba2dc0e199461b4320653 (diff) | |
download | qpid-python-c95b2615abf0883f7d92aad73138a4dda14e1311.tar.gz |
QPID-2631: For blocking Bounds::expand() calls, only increase the current count when there is space. In SessionImpl::send() expand bounds before queueing frame. Expand bounds for all frames sent (including connection frames and cluster specific frames).
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@948936 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/SessionImpl.cpp')
-rw-r--r-- | cpp/src/qpid/client/SessionImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/SessionImpl.cpp b/cpp/src/qpid/client/SessionImpl.cpp index b7ff4307b6..b507625b11 100644 --- a/cpp/src/qpid/client/SessionImpl.cpp +++ b/cpp/src/qpid/client/SessionImpl.cpp @@ -510,8 +510,8 @@ void SessionImpl::proxyOut(AMQFrame& frame) // network thread void SessionImpl::sendFrame(AMQFrame& frame, bool canBlock) { - channel.handle(frame); connection->expand(frame.encodedSize(), canBlock); + channel.handle(frame); } void SessionImpl::deliver(AMQFrame& frame) // network thread |