diff options
author | Gordon Sim <gsim@apache.org> | 2007-12-18 16:58:23 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-12-18 16:58:23 +0000 |
commit | 29a99ba263cd32b4bc6510ef748d77abc143227c (patch) | |
tree | a570a686b1804a56c54873af0c2ce51284ab13e2 /cpp/src/qpid/client/Connection.h | |
parent | a1643ff7395fec6c46d2cd08c5fda7a8d0cfa99a (diff) | |
download | qpid-python-29a99ba263cd32b4bc6510ef748d77abc143227c.tar.gz |
Fixes to max frame size default and fragmentation on broker.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@605251 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Connection.h')
-rw-r--r-- | cpp/src/qpid/client/Connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/client/Connection.h b/cpp/src/qpid/client/Connection.h index 32b2200f25..053949a51b 100644 --- a/cpp/src/qpid/client/Connection.h +++ b/cpp/src/qpid/client/Connection.h @@ -74,9 +74,9 @@ class Connection * out). Optional and defaults to false. * * @param max_frame_size the maximum frame size that the - * client will accept. Optional and defaults to 65536. + * client will accept. Optional and defaults to 65535. */ - Connection(bool debug = false, uint32_t max_frame_size = 65536, + Connection(bool debug = false, uint32_t max_frame_size = 65535, framing::ProtocolVersion=framing::highestProtocolVersion); Connection(boost::shared_ptr<Connector>); ~Connection(); |