MessageTypes.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef RTPS_MESSAGETYPES_H
00009 #define RTPS_MESSAGETYPES_H
00010
00011 #include "RtpsCoreC.h"
00012
00013 OPENDDS_BEGIN_VERSIONED_NAMESPACE_DECL
00014
00015 namespace OpenDDS {
00016 namespace RTPS {
00017
00018
00019 const ACE_CDR::UShort DATA_OCTETS_TO_IQOS = 16;
00020 const ACE_CDR::UShort DATA_FRAG_OCTETS_TO_IQOS = 28;
00021
00022 const ACE_CDR::UShort RTPSHDR_SZ = 20,
00023 SMHDR_SZ = 4,
00024 HEARTBEAT_SZ = 28,
00025 INFO_DST_SZ = 12,
00026 INFO_TS_SZ = 8;
00027
00028 const OctetArray4
00029 PARTICIPANT_MESSAGE_DATA_KIND_UNKNOWN =
00030 { 0x00, 0x00, 0x00, 0x00 },
00031 PARTICIPANT_MESSAGE_DATA_KIND_AUTOMATIC_LIVELINESS_UPDATE =
00032 { 0x00, 0x00, 0x00, 0x01 },
00033 PARTICIPANT_MESSAGE_DATA_KIND_MANUAL_LIVELINESS_UPDATE =
00034 { 0x00, 0x00, 0x00, 0x02 };
00035
00036 }
00037 }
00038
00039 OPENDDS_END_VERSIONED_NAMESPACE_DECL
00040
00041 #endif