diff options
author | Gordon Sim <gsim@apache.org> | 2006-11-28 19:49:41 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2006-11-28 19:49:41 +0000 |
commit | a204a5602d5c8569a3046d424d7d3dc506fcec22 (patch) | |
tree | 3e33ff823255ba143bd57cf98cfbdfb27beb4a9c /cpp/src/qpid/apr/LFSessionContext.cpp | |
parent | 74032625951a9105d0d20c592beccb2b6b4dce68 (diff) | |
download | qpid-python-a204a5602d5c8569a3046d424d7d3dc506fcec22.tar.gz |
Bug fixes: corrected fragmentation of large messages in client, set buffer size on server to be the same as the max frame size (this still needs some work to be better managed and configurable).
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@480178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/apr/LFSessionContext.cpp')
-rw-r--r-- | cpp/src/qpid/apr/LFSessionContext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/apr/LFSessionContext.cpp b/cpp/src/qpid/apr/LFSessionContext.cpp index 1399025c32..7dc70ca245 100644 --- a/cpp/src/qpid/apr/LFSessionContext.cpp +++ b/cpp/src/qpid/apr/LFSessionContext.cpp @@ -33,8 +33,8 @@ LFSessionContext::LFSessionContext(apr_pool_t* _pool, apr_socket_t* _socket, debug(_debug), socket(_socket), initiated(false), - in(32768), - out(32768), + in(65536), + out(65536), processor(_processor), processing(false), closing(false) |