Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/peer_info.cc @ 9347

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

orxonox/proxy: merged the proxy.old back again, and it seems to work.

Merged with command
svn merge -r9247:HEAD https://svn.orxonox.net/orxonox/branches/proxy.old .

no conflicts

File size: 1.5 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
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
19
20#define DEBUG_MODULE_NETWORK
21
22
23#include "peer_info.h"
24
25
26using namespace std;
27
28
29
30/**
31 * constructor
32 */
33PeerInfo::PeerInfo()
34{
35  this->clear();
36}
37
38
39/**
40 * clearint and initializing the peer info
41 */
42void PeerInfo::clear()
43{
44  this->userId = 0;
45  this->nodeType = NET_CLIENT;
46  this->socket = NULL;
47  this->handshake = NULL;
48  this->lastAckedState = 0;
49  this->lastRecvedState = 0;
50  this->connectionMonitor = NULL;
51
52  this->ip = IP(0,0);
53}
54
55
56std::string PeerInfo::getNodeTypeString()
57{
58  switch( this->nodeType)
59  {
60    case NET_CLIENT:
61      return std::string("client");
62    case NET_PROXY_SERVER_ACTIVE:
63      return std::string("proxy server active");
64    case NET_PROXY_SERVER_PASSIVE:
65      return std::string("proxy server passive");
66    case NET_MASTER_SERVER:
67      return std::string("master server");
68  }
69
70  return std::string("node is uninit");
71}
Note: See TracBrowser for help on using the repository browser.