Changeset 9275 in orxonox.OLD for branches/proxy/src/lib/network
- Timestamp:
- Jul 13, 2006, 9:35:19 PM (18 years ago)
- Location:
- branches/proxy/src/lib/network
- Files:
-
- 4 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/Makefile.am
r9263 r9275 8 8 shared_network_data.cc \ 9 9 network_socket.cc \ 10 connection_monitor.cc \11 network_monitor.cc \10 monitor/connection_monitor.cc \ 11 monitor/network_monitor.cc \ 12 12 network_stream.cc \ 13 13 data_stream.cc \ … … 44 44 shared_network_data.h \ 45 45 network_socket.h \ 46 connection_monitor.h \47 network_monitor.h \46 monitor/connection_monitor.h \ 47 monitor/network_monitor.h \ 48 48 network_stream.h \ 49 49 data_stream.h \ -
branches/proxy/src/lib/network/network_stream.cc
r9271 r9275 25 25 #include "udp_socket.h" 26 26 #include "udp_server_socket.h" 27 #include " connection_monitor.h"28 #include " network_monitor.h"27 #include "monitor/connection_monitor.h" 28 #include "monitor/network_monitor.h" 29 29 #include "synchronizeable.h" 30 30 #include "network_game_manager.h" -
branches/proxy/src/lib/network/network_stream.h
r9270 r9275 14 14 #include "server_socket.h" 15 15 #include "handshake.h" 16 #include " connection_monitor.h"16 #include "monitor/connection_monitor.h" 17 17 #include "udp_server_socket.h" 18 18 #include "peer_info.h" -
branches/proxy/src/lib/network/peer_info.h
r9252 r9275 9 9 #include "server_socket.h" 10 10 #include "handshake.h" 11 #include " connection_monitor.h"11 #include "monitor/connection_monitor.h" 12 12 13 13
Note: See TracChangeset
for help on using the changeset viewer.