Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/network/nettypes.h @ 9656

Last change on this file since 9656 was 9656, checked in by bensch, 18 years ago

orxonox/trunk: merged the proxy bache back with no conflicts

File size: 353 bytes
RevLine 
[9386]1
2#ifndef __NET_TYPES_H_
3#define __NET_TYPES_H_
4
5typedef unsigned char byte;
6
[9494]7
8//!< this are the network write variable permissions
9typedef enum netPermissions {
10  PERMISSION_MASTER_SERVER = 1,
11  PERMISSION_PROXY_SERVER  = 2,
[9656]12  PERMISSION_SERVER        = 4,
13  PERMISSION_OWNER         = 8,
14  PERMISSION_ALL           = 16
[9494]15};
16
17
[9386]18#endif /* __NET_TYPES_H */
Note: See TracBrowser for help on using the repository browser.