mirror of
https://github.com/corda/corda.git
synced 2024-12-26 08:01:09 +00:00
21 lines
478 B
C
21 lines
478 B
C
|
#pragma once
|
||
|
|
||
|
/******************************************************************************/
|
||
|
|
||
|
#include <array>
|
||
|
|
||
|
/******************************************************************************/
|
||
|
|
||
|
namespace amqp {
|
||
|
|
||
|
/**
|
||
|
* The 8th byte is used to store weather the stream is compressed or
|
||
|
* not
|
||
|
*/
|
||
|
std::array<char, 7> AMQP_HEADER = { { 'c', 'o', 'r', 'd', 'a', 1, 0 } };
|
||
|
|
||
|
}
|
||
|
|
||
|
/******************************************************************************/
|
||
|
|