Changeset 8351 for code/trunk/src/libraries/network
- Timestamp:
- Apr 28, 2011, 7:15:14 AM (14 years ago)
- Location:
- code/trunk/src/libraries/network
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/network/CMakeLists.txt
r8327 r8351 87 87 enet_orxonox 88 88 ${Boost_THREAD_LIBRARY} 89 ${CEGUI_TOLUA_LIBRARY} 89 90 util 90 91 core -
code/trunk/src/libraries/network/LANDiscoverable.cc
- Property svn:eol-style set to native
r7801 r8351 29 29 #include "LANDiscoverable.h" 30 30 31 #include "NetworkPrereqs.h"32 #include "packet/ServerInformation.h"33 34 31 #include <enet/enet.h> 35 32 #include <cassert> 36 33 #include <cstring> 34 35 #include "util/Debug.h" 36 #include "packet/ServerInformation.h" 37 37 38 38 namespace orxonox -
code/trunk/src/libraries/network/LANDiscoverable.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/LANDiscovery.cc
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/LANDiscovery.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/MasterServer.cc
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/MasterServer.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/MasterServerComm.cc
- Property svn:eol-style set to native
r7801 r8351 28 28 29 29 #include "MasterServerComm.h" 30 #include "util/Debug.h" 30 31 31 32 namespace orxonox -
code/trunk/src/libraries/network/MasterServerComm.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/MasterServerProtocol.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/NetworkPrecompiledHeaders.h
r7952 r8351 62 62 #include <cmath> // 15 63 63 64 #define WIN32_LEAN_AND_MEAN65 #include <enet/enet.h> // 6, 3.1MB66 67 64 #include <OgreMath.h> // 15 68 65 #include <OgreVector2.h> // 15 … … 71 68 #include <OgreQuaternion.h> // 15 72 69 #include <OgreColourValue.h> // 15 70 71 #define WIN32_LEAN_AND_MEAN 72 #include <enet/enet.h> // 6, 3.1MB 73 73 74 74 #include "util/mbool.h" // 11 -
code/trunk/src/libraries/network/NetworkPrereqs.h
r8327 r8351 52 52 # endif 53 53 # endif 54 #elif defined ( ORXONOX_GCC_VISIBILITY ) 54 # define _NetworkPrivate 55 #elif defined (ORXONOX_GCC_VISIBILITY) 55 56 # define _NetworkExport __attribute__ ((visibility("default"))) 57 # define _NetworkPrivate __attribute__ ((visibility("hidden"))) 56 58 #else 57 59 # define _NetworkExport 60 # define _NetworkPrivate 58 61 #endif 59 62 -
code/trunk/src/libraries/network/PeerList.cc
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/PeerList.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/Server.cc
r8327 r8351 252 252 * @brief: return packet loss ratio to client (scales from 0 to 1) 253 253 */ 254 doubleServer::getPacketLoss(unsigned int clientID)254 float Server::getPacketLoss(unsigned int clientID) 255 255 { 256 256 // assert(ClientInformation::findClient(clientID)); -
code/trunk/src/libraries/network/Server.h
r8327 r8351 74 74 unsigned int getRTT(unsigned int clientID); 75 75 virtual void printRTT(); 76 doublegetPacketLoss(unsigned int clientID);76 float getPacketLoss(unsigned int clientID); 77 77 protected: 78 78 void updateGamestate(); -
code/trunk/src/libraries/network/ServerList.cc
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/ServerList.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/WANDiscoverable.cc
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/WANDiscoverable.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/WANDiscovery.cc
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/WANDiscovery.h
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/packet/FunctionCalls.cc
r7801 r8351 33 33 #include "network/FunctionCallManager.h" 34 34 #include "network/GamestateHandler.h" 35 #include "network/Host.h" 35 36 36 37 namespace orxonox { -
code/trunk/src/libraries/network/packet/ServerInformation.cc
- Property svn:eol-style set to native
-
code/trunk/src/libraries/network/packet/ServerInformation.h
- Property svn:eol-style set to native
Note: See TracChangeset
for help on using the changeset viewer.