mirror of
https://github.com/corda/corda.git
synced 2025-01-05 04:34:14 +00:00
21 lines
400 B
C
21 lines
400 B
C
|
#pragma once
|
||
|
|
||
|
/******************************************************************************/
|
||
|
|
||
|
/*
|
||
|
* Once things are further along this should move into internal
|
||
|
*/
|
||
|
|
||
|
namespace amqp {
|
||
|
|
||
|
enum amqp_section_id_t {
|
||
|
DATA_AND_STOP = 0,
|
||
|
ALT_DATA_AND_STOP = 1,
|
||
|
ENCODING = 2
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
/******************************************************************************/
|
||
|
|