21 #ifndef PLUGINS_E131_E131_E133HEADER_H_
22 #define PLUGINS_E131_E131_E133HEADER_H_
48 m_endpoint(endpoint) {
52 const std::string Source()
const {
return m_source; }
53 uint32_t Sequence()
const {
return m_sequence; }
54 uint16_t Endpoint()
const {
return m_endpoint; }
56 bool operator==(
const E133Header &other)
const {
57 return m_source == other.m_source &&
58 m_sequence == other.m_sequence &&
59 m_endpoint == other.m_endpoint;
62 enum { SOURCE_NAME_LEN = 64 };
65 struct e133_pdu_header_s {
66 char source[SOURCE_NAME_LEN];
71 typedef struct e133_pdu_header_s e133_pdu_header;
81 #endif // PLUGINS_E131_E131_E133HEADER_H_