diff options
-rw-r--r-- | cpp/src/qpid/broker/ConnectionState.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/broker/ConnectionState.h b/cpp/src/qpid/broker/ConnectionState.h index 373b7d868a..e4dd8f06ec 100644 --- a/cpp/src/qpid/broker/ConnectionState.h +++ b/cpp/src/qpid/broker/ConnectionState.h @@ -35,9 +35,6 @@ namespace broker { class ConnectionState : public ConnectionToken, public management::Manageable { - // Minimum allowed frameMax - static const uint32_t MIN_FRAME_MAX = 4096; - protected: sys::ConnectionOutputHandlerPtr out; @@ -55,6 +52,9 @@ class ConnectionState : public ConnectionToken, public management::Manageable virtual ~ConnectionState () {} + // Minimum allowed frameMax + static const uint32_t MIN_FRAME_MAX = 4096; + uint32_t getFrameMax() const { return framemax; } uint16_t getHeartbeat() const { return heartbeat; } uint16_t getHeartbeatMax() const { return heartbeatmax; } |