Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/nettypes.h @ 9458

Last change on this file since 9458 was 9458, checked in by patrick, 18 years ago

switching to new permission system, first step

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