diff options
| author | Gordon Sim <gsim@apache.org> | 2008-03-06 17:52:59 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-03-06 17:52:59 +0000 |
| commit | 9fd4909832e16734c47c13eebbe4aca66640b1b0 (patch) | |
| tree | 6882efaaa8244086c0765f95ee1c1e9836bb088c /cpp/src/qpid/broker/SessionState.cpp | |
| parent | 19ad6741d3579b1ffce70a43271e4e4f804ad643 (diff) | |
| download | qpid-python-9fd4909832e16734c47c13eebbe4aca66640b1b0.tar.gz | |
Fixes to c++ broker:
- use final version of delivery properties where appropriate
- start sequence numbering of outgoing messages at 0
- explicit accept-mode is now 0 (no more confirm-mode)
- add default initialisers for numeric fields in methods
Converted some more python tests to use final 0-10 client.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@634368 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/SessionState.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/SessionState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/SessionState.cpp b/cpp/src/qpid/broker/SessionState.cpp index ceaa70db18..7d0d0dacfa 100644 --- a/cpp/src/qpid/broker/SessionState.cpp +++ b/cpp/src/qpid/broker/SessionState.cpp @@ -42,7 +42,7 @@ using qpid::management::Args; SessionState::SessionState( SessionManager* f, SessionHandler* h, uint32_t timeout_, uint32_t ack) - : framing::SessionState(ack, timeout_ > 0), + : framing::SessionState(ack, timeout_ > 0), nextOut(0), factory(f), handler(h), id(true), timeout(timeout_), broker(h->getConnection().broker), version(h->getConnection().getVersion()), |
