Changeset 5614 in orxonox.OLD for branches/network
- Timestamp:
- Nov 16, 2005, 4:45:12 PM (19 years ago)
- Location:
- branches/network
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/Makefile.am
r5599 r5614 28 28 include doc/documentation.am 29 29 endif 30 <<<<<<< .mine31 _SOURCES = network_protocol.cc32 =======33 _SOURCES = network_manager.cc34 >>>>>>> .r5589 -
branches/network/src/lib/network/Makefile.in
r5580 r5614 57 57 network_manager.$(OBJEXT) network_socket.$(OBJEXT) \ 58 58 connection_monitor.$(OBJEXT) network_stream.$(OBJEXT) \ 59 data_stream.$(OBJEXT) 59 data_stream.$(OBJEXT) network_protocol.$(OBJEXT) 60 60 libORXnet_a_OBJECTS = $(am_libORXnet_a_OBJECTS) 61 61 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) … … 190 190 connection_monitor.cc \ 191 191 network_stream.cc \ 192 data_stream.cc 192 data_stream.cc \ 193 network_protocol.cc 193 194 194 195 noinst_HEADERS = synchronizeable.h \ … … 197 198 connection_monitor.h \ 198 199 network_stream.h \ 199 data_stream.h 200 data_stream.h \ 201 network_protocol.h 200 202 201 203 all: all-am … … 249 251 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/data_stream.Po@am__quote@ 250 252 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network_manager.Po@am__quote@ 253 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network_protocol.Po@am__quote@ 251 254 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network_socket.Po@am__quote@ 252 255 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network_stream.Po@am__quote@ -
branches/network/src/lib/network/network_socket.cc
r5606 r5614 102 102 * warnings 103 103 */ 104 void NetworkSocket::writeBytes(byte* data)104 int NetworkSocket::writeBytes(byte* data, int length) 105 105 { 106 106 } … … 113 113 * From outside, the thread shouldn't be accessible at all. 114 114 */ 115 byte* NetworkSocket::readBytes()115 int NetworkSocket::readBytes(byte * data, int length) 116 116 { 117 117 } -
branches/network/src/lib/network/network_socket.h
r5592 r5614 35 35 void listen(unsigned int port); 36 36 void disconnectServer(); 37 void writeBytes(byte* data);38 byte* readBytes();37 int writeBytes(byte * data, int length); 38 int readBytes(byte * data, int length); 39 39 40 40 };
Note: See TracChangeset
for help on using the changeset viewer.