Changeset 8502 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Jun 15, 2006, 10:35:20 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_stream.cc
r8497 r8502 510 510 int compLength = 0; 511 511 if ( this->isServer() ) 512 Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictServer );512 compLength = Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictServer ); 513 513 else 514 Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictClient );514 compLength = Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictClient ); 515 515 516 516 if ( compLength < 0 )
Note: See TracChangeset
for help on using the changeset viewer.