summaryrefslogtreecommitdiff
path: root/ACE/protocols/examples/RMCast/Send_Msg/Protocol.h
blob: 352fa1085b1888453c3e292a1ac547f5b545651e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file      : Protocol.h
// author    : Boris Kolpackov <boris@kolpackov.net>
#ifndef PROTOCOL_H
#define PROTOCOL_H

unsigned short const payload_size = 702;
unsigned long const message_count = 80000;

struct Message
{
  unsigned int sn;

  unsigned short payload[payload_size];
};

#endif  // PROTOCOL_H