Last change
on this file since 161 was
65,
checked in by Torben Dannhauer, 14 years ago
|
new cluster implementation added: ENet
ENet is a reliable UDP implementation with quite simple usage and high performance for transmission with small or medium size packet.
|
File size:
347 bytes
|
Line | |
---|
1 | /** |
---|
2 | @file types.h |
---|
3 | @brief type definitions for ENet |
---|
4 | */ |
---|
5 | #ifndef __ENET_TYPES_H__ |
---|
6 | #define __ENET_TYPES_H__ |
---|
7 | |
---|
8 | typedef unsigned char enet_uint8; /**< unsigned 8-bit type */ |
---|
9 | typedef unsigned short enet_uint16; /**< unsigned 16-bit type */ |
---|
10 | typedef unsigned int enet_uint32; /**< unsigned 32-bit type */ |
---|
11 | |
---|
12 | #endif /* __ENET_TYPES_H__ */ |
---|
13 | |
---|
Note: See
TracBrowser
for help on using the repository browser.