repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #2254 from esohns/fstat_size_64_bits
[ACE_TAO.git]
/
ACE
/
protocols
/
examples
/
RMCast
/
Send_Msg
/
Protocol.h
blob
352fa1085b1888453c3e292a1ac547f5b545651e
1
// file : Protocol.h
2
// author : Boris Kolpackov <boris@kolpackov.net>
3
#ifndef PROTOCOL_H
4
#define PROTOCOL_H
5
6
unsigned short const
payload_size
=
702
;
7
unsigned long const
message_count
=
80000
;
8
9
struct
Message
10
{
11
unsigned int
sn
;
12
13
unsigned short
payload
[
payload_size
];
14
};
15
16
#endif
// PROTOCOL_H