corda/experimental/cpp-serializer/include/amqp/AMQPHeader.h

21 lines
476 B
C
Raw Normal View History

#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 } };
}
/******************************************************************************/