diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2009-06-08 16:43:28 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2009-06-08 16:43:28 +0000 |
| commit | 0d9a9a82bc754e8ee12c5b7b4c8befd7b5b5c12b (patch) | |
| tree | d2c6337515ec0d27c2880c7d642046360d2ddac3 /cpp/src/qpid/broker/Connection.cpp | |
| parent | 477ef3c8435165fa70d6a19c195e4b14c4e6073f (diff) | |
| download | qpid-python-0d9a9a82bc754e8ee12c5b7b4c8befd7b5b5c12b.tar.gz | |
Fix of the previous client heartbeat changes:
- Changes to the cluster code were previously missed
- It's neater and more correct to reset the traffic
timeout for all connection traffic, not just traffic
in a session
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@782696 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Connection.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/Connection.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/Connection.cpp b/cpp/src/qpid/broker/Connection.cpp index c53d943e98..c21fd49171 100644 --- a/cpp/src/qpid/broker/Connection.cpp +++ b/cpp/src/qpid/broker/Connection.cpp @@ -103,6 +103,9 @@ Connection::~Connection() } void Connection::received(framing::AMQFrame& frame) { + // Received frame on connection so delay timeout + restartTimeout(); + if (frame.getChannel() == 0 && frame.getMethod()) { adapter.handle(frame); } else { |
