summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/performance-tests/Latency/Base/Latency_Test_Base.idl
blob: 737864b741c78d8bf8d927a5a530109e8b8f809f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// $Id$

/**
 * @file Latency_Test_Base.idl
 * @author Marijke Hengstmengel <mhengstmengel@remedy.nl>
 */

#ifndef LATENCY_TEST_BASE_IDL
#define LATENCY_TEST_BASE_IDL

#pragma ndds typesupport "Base/Latency_Test_BaseSupport.h"

const short MAX_DATA_SEQUENCE_LENGTH = 8192;
typedef sequence<octet> OctetSeq;

struct LatencyTest {
  string key;
  long seq_num;
  long ping;
  OctetSeq data;
 };
 //key is temporarily to prevent compile errors, has to be removed
 //ping  is temporarily, has to be solved in QoS file

typedef sequence<LatencyTest> LatencyTest_Seq;

#endif