diff options
| author | Alan Conway <aconway@apache.org> | 2012-05-22 18:11:07 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2012-05-22 18:11:07 +0000 |
| commit | a5bc15007a80f2bdb80ddd0c87bf3690b5e53834 (patch) | |
| tree | c63da143dd7c32cff6f312ef44c827ad969e211f /cpp/include | |
| parent | 5bdd719384b66b3d576233c0a64db6b30690fac0 (diff) | |
| download | qpid-python-a5bc15007a80f2bdb80ddd0c87bf3690b5e53834.tar.gz | |
QPID-3603: HA backups pass identifying info to primary.
Pass hostname, management UUID and status in link connection arguments.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1341580 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include')
| -rw-r--r-- | cpp/include/qpid/framing/Uuid.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/include/qpid/framing/Uuid.h b/cpp/include/qpid/framing/Uuid.h index ccfd7e9534..e9e56ed7c9 100644 --- a/cpp/include/qpid/framing/Uuid.h +++ b/cpp/include/qpid/framing/Uuid.h @@ -48,6 +48,9 @@ struct Uuid : public boost::array<uint8_t, 16> { /** Copy from 16 bytes of data. */ QPID_COMMON_EXTERN Uuid(const uint8_t* data); + /** Parse format 1b4e28ba-2fa1-11d2-883f-b9a761bde3fb. */ + QPID_COMMON_EXTERN Uuid(const std::string&); + // Default op= and copy ctor are fine. // boost::array gives us ==, < etc. |
