diff options
author | Alan Conway <aconway@apache.org> | 2008-05-27 17:46:27 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-05-27 17:46:27 +0000 |
commit | 1ebc196ec0f6128e9f73f3aebb9a30d5436ef5c0 (patch) | |
tree | 94b88358925d3dab5645e6ab0e6a1ffbd8e84e40 /cpp/src | |
parent | 7a25209befba00d87b346788dd4ed06081502c2c (diff) | |
download | qpid-python-1ebc196ec0f6128e9f73f3aebb9a30d5436ef5c0.tar.gz |
Use symbolic constants for message flow values.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@660625 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/client/SessionBase_0_10.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/SessionBase_0_10.h b/cpp/src/qpid/client/SessionBase_0_10.h index f9ced049a9..e5d2b19327 100644 --- a/cpp/src/qpid/client/SessionBase_0_10.h +++ b/cpp/src/qpid/client/SessionBase_0_10.h @@ -48,7 +48,7 @@ using framing::SequenceNumberSet; using qpid::SessionId; using framing::Xid; -enum CreditUnit { MESSAGE=0, BYTE=1 }; +enum CreditUnit { MESSAGE_CREDIT=0, BYTE_CREDIT=1, UNLIMITED_CREDIT=0xFFFFFFFF }; /** * Base class for handles to an AMQP session. |