diff options
author | Alan Conway <aconway@apache.org> | 2007-03-15 19:22:02 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-03-15 19:22:02 +0000 |
commit | 6bc8ab8e4b209b841969544fc735361335040906 (patch) | |
tree | 90b8a4b3f0ec4fdf2c3a0ac02b27768b953a3be1 /cpp/lib/broker/MessageHandlerImpl.h | |
parent | f92c42ffe7662d1d0e2863c6e143567b25ae2024 (diff) | |
download | qpid-python-6bc8ab8e4b209b841969544fc735361335040906.tar.gz |
Changed u_int<n>_t to uint<n>_t for posix compliance.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@518733 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/broker/MessageHandlerImpl.h')
-rw-r--r-- | cpp/lib/broker/MessageHandlerImpl.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/cpp/lib/broker/MessageHandlerImpl.h b/cpp/lib/broker/MessageHandlerImpl.h index cb7e7e3126..872d429d5c 100644 --- a/cpp/lib/broker/MessageHandlerImpl.h +++ b/cpp/lib/broker/MessageHandlerImpl.h @@ -55,7 +55,7 @@ class MessageHandlerImpl : const std::string& reference ); void consume(const framing::MethodContext&, - u_int16_t ticket, + uint16_t ticket, const std::string& queue, const std::string& destination, bool noLocal, @@ -66,13 +66,13 @@ class MessageHandlerImpl : void empty( const framing::MethodContext& ); void get(const framing::MethodContext&, - u_int16_t ticket, + uint16_t ticket, const std::string& queue, const std::string& destination, bool noAck ); void offset(const framing::MethodContext&, - u_int64_t value ); + uint64_t value ); void ok( const framing::MethodContext& ); @@ -80,15 +80,15 @@ class MessageHandlerImpl : const std::string& reference ); void qos(const framing::MethodContext&, - u_int32_t prefetchSize, - u_int16_t prefetchCount, + uint32_t prefetchSize, + uint16_t prefetchCount, bool global ); void recover(const framing::MethodContext&, bool requeue ); void reject(const framing::MethodContext&, - u_int16_t code, + uint16_t code, const std::string& text ); void resume(const framing::MethodContext&, @@ -96,15 +96,15 @@ class MessageHandlerImpl : const std::string& identifier ); void transfer(const framing::MethodContext&, - u_int16_t ticket, + uint16_t ticket, const std::string& destination, bool redelivered, bool immediate, - u_int64_t ttl, - u_int8_t priority, - u_int64_t timestamp, - u_int8_t deliveryMode, - u_int64_t expiration, + uint64_t ttl, + uint8_t priority, + uint64_t timestamp, + uint8_t deliveryMode, + uint64_t expiration, const std::string& exchange, const std::string& routingKey, const std::string& messageId, |