| 
                Last change
                  on this file since 9715 was
                  9656,
                  checked in by bensch, 19 years ago
           | 
        
        
          | 
               
orxonox/trunk: merged the proxy bache back with no conflicts 
 
           | 
        
        | 
            File size:
            1.6 KB
           | 
      
      
        
  | Rev | Line |   | 
|---|
| [9252] | 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 |  | 
|---|
 | 26 |  | 
|---|
 | 27 |  | 
|---|
 | 28 |  | 
|---|
| [9357] | 29 |  | 
|---|
| [9252] | 30 | /** | 
|---|
 | 31 |  * constructor | 
|---|
 | 32 |  */ | 
|---|
 | 33 | PeerInfo::PeerInfo() | 
|---|
 | 34 | { | 
|---|
 | 35 |   this->clear(); | 
|---|
 | 36 | } | 
|---|
 | 37 |  | 
|---|
 | 38 |  | 
|---|
 | 39 | /** | 
|---|
 | 40 |  * clearint and initializing the peer info | 
|---|
 | 41 |  */ | 
|---|
 | 42 | void PeerInfo::clear() | 
|---|
 | 43 | { | 
|---|
| [9656] | 44 |   this->userId = NET_ID_UNASSIGNED; | 
|---|
 | 45 |   this->nodeType = NET_UNASSIGNED; | 
|---|
| [9252] | 46 |   this->socket = NULL; | 
|---|
 | 47 |   this->handshake = NULL; | 
|---|
 | 48 |   this->lastAckedState = 0; | 
|---|
 | 49 |   this->lastRecvedState = 0; | 
|---|
 | 50 |   this->connectionMonitor = NULL; | 
|---|
| [9656] | 51 |   this->bLocal = false; | 
|---|
| [9308] | 52 |  | 
|---|
| [9334] | 53 |   this->ip = IP(0,0); | 
|---|
| [9252] | 54 | } | 
|---|
| [9286] | 55 |  | 
|---|
 | 56 |  | 
|---|
| [9494] | 57 | const std::string& PeerInfo::getNodeTypeString() const | 
|---|
| [9286] | 58 | { | 
|---|
| [9494] | 59 |   return PeerInfo::nodeTypeToString( this->nodeType ); | 
|---|
 | 60 |   // the above does the same, and is faster in it. (there is no case where node is uninit i hope!) | 
|---|
 | 61 | } | 
|---|
| [9286] | 62 |  | 
|---|
| [9494] | 63 | const std::string& PeerInfo::nodeTypeToString(unsigned int type) | 
|---|
 | 64 | { | 
|---|
 | 65 |   return PeerInfo::nodeNames[type]; | 
|---|
| [9286] | 66 | } | 
|---|
| [9494] | 67 |  | 
|---|
 | 68 |  | 
|---|
 | 69 | const std::string PeerInfo::nodeNames[] = | 
|---|
 | 70 | { | 
|---|
| [9656] | 71 |   "master server", | 
|---|
| [9494] | 72 |   "proxy server active", | 
|---|
 | 73 |   "proxy server passive", | 
|---|
 | 74 |   "client", | 
|---|
 | 75 |   "node is not initialized" | 
|---|
 | 76 | }; | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.