Changeset 9263 in orxonox.OLD for branches/proxy
- Timestamp:
- Jul 13, 2006, 10:11:28 AM (18 years ago)
- Location:
- branches/proxy/src/lib/network
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/Makefile.am
r9252 r9263 9 9 network_socket.cc \ 10 10 connection_monitor.cc \ 11 network_monitor.cc \ 11 12 network_stream.cc \ 12 13 data_stream.cc \ … … 44 45 network_socket.h \ 45 46 connection_monitor.h \ 47 network_monitor.h \ 46 48 network_stream.h \ 47 49 data_stream.h \ -
branches/proxy/src/lib/network/handshake.cc
r9262 r9263 10 10 11 11 ### File Specific: 12 main-programmer: christoph 13 co-programmer: 12 main-programmer: Christoph Renner (rennerc@ee.ethz.ch) 14 13 */ 15 14 16 15 17 /* this is for debug output. It just says, that all calls to PRINT() belong to the DEBUG_MODULE_NETWORK module18 For more information refere to https://www.orxonox.net/cgi-bin/trac.cgi/wiki/DebugOutput19 */20 16 #define DEBUG_MODULE_NETWORK 21 17 … … 24 20 #include <cassert> 25 21 #include "debug.h" 22 23 24 25 26 26 27 27 Handshake::Handshake( bool server, int clientId, int networkGameManagerId, int messageManagerId ) -
branches/proxy/src/lib/network/netdefs.h
r9262 r9263 41 41 42 42 /* handshake settings */ 43 #define _ORXONOX_ID 0xF91337A044 #define _ORXONOX_VERSION 143 #define _ORXONOX_ID 0xF91337A0 44 #define _ORXONOX_VERSION 1 45 45 46 46
Note: See TracChangeset
for help on using the changeset viewer.