Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/netdefs.h @ 9386

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

orxonox/proxy: removed the dependency of the netdefs in pnode, which should decrease compile time enormously.

File size: 1.7 KB
RevLine 
[9347]1/*
2   orxonox - the future of 3D-vertical-scrollers
[5530]3
[9347]4   Copyright (C) 2004 orx
[5530]5
[9347]6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: Christoph Renner rennerc@ee.ethz.ch
13   co-programmer:   Patrick Boenzli  boenzlip@orxonox.ethz.ch
14
15     June 2006: finishing work on the network stream for pps presentation (rennerc@ee.ethz.ch)
16     July 2006: some code rearangement and integration of the proxy server mechanism (boenzlip@ee.ethz.ch)
17*/
18
[5530]19/*!
20 * @file network_manager.h
21 *  Main interface for the network module. Manages all the modules
22 */
23
[9386]24#ifndef _NETDEFS_H
25#define _NETDEFS_H
[5530]26
[9386]27#include "net_types.h"
[9347]28
[5588]29#ifdef HAVE_SDL_NET_H
[5605]30  #include <SDL_net.h>
[5588]31#else
[5605]32  #include <SDL/SDL_net.h>
[5588]33#endif
34
[5605]35
[6695]36
[9384]37
[9347]38//!< the amount of slots used before a proxy server is activated
39#define NET_CONNECTION_SATURATION 0.75
40
41//!< network polling frequency
[8802]42#define NETWORK_FREQUENCY 66
[6695]43
[7954]44
[9347]45//!< orxonox protocol id
46#define _ORXONOX_ID        0xF91337A0
47//!< orxonox network version identifier
48#define _ORXONOX_VERSION   1
49
50
[9246]51//!< enum indicating the type of the node
[5649]52typedef enum {
[9347]53  NET_MASTER_SERVER,
54  NET_PROXY_SERVER_ACTIVE,
55  NET_PROXY_SERVER_PASSIVE,
56  NET_CLIENT,
57
58  NET_NR_TYPES
59
[5649]60} NodeType;
61
[9246]62//!< enum indicating the type of the network connection (2 protocols supported)
[7954]63typedef enum ConnectionType {
64  NET_UDP = 0,
65  NET_TCP
66};
[6695]67
[9246]68//!< the type of the user id (special number never used elsewhere)
[6695]69typedef enum {
70  NET_UID_UNASSIGNED = -1,
71
72  NET_UID_NUMBER
73} UidType;
74
[9386]75#endif /* _NETDEFS_H */
Note: See TracBrowser for help on using the repository browser.