summaryrefslogtreecommitdiff
path: root/protocols/tests/RMCast/Protocol.h
blob: c0ecca3dae9dc9ad4ac1e57cb7be863793680f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : Protocol.h
// author    : Boris Kolpackov <boris@kolpackov.net>
// cvs-id    : $Id$

#ifndef PROTOCOL_H
#define PROTOCOL_H

unsigned short const payload_size = 1234;
unsigned long const message_count = 1000;

struct Message
{
  unsigned long sn;

  unsigned short payload[payload_size];
};

#endif  // PROTOCOL_H