mirror of
https://github.com/corda/corda.git
synced 2024-12-29 01:08:57 +00:00
7b308eb45f
The Blob Writer is a small kotlin app that allows arbitrary things to be serialized and then those bytes written to a file, quite useful for working on non JVM parsing of such things. Along a similar vein, add a schema dumper alongside the blob-inspector to highlight the contents of the header
21 lines
476 B
C++
21 lines
476 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 } };
|
|
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|