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
Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git]
/
ACE
/
protocols
/
tests
/
RMCast
/
Protocol.h
blob
ee2c35f4c8f03644db5e07cb1897645cb21615ba
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
=
200
;
7
unsigned long const
message_count
=
100
;
8
9
struct
Message
10
{
11
unsigned long
sn
;
12
13
unsigned short
payload
[
payload_size
];
14
};
15
16
#endif
// PROTOCOL_H