Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6634 in orxonox.OLD for trunk/src/lib/network/network_socket.cc


Ignore:
Timestamp:
Jan 21, 2006, 1:18:19 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the network-branche back to the trunk

merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/network . -r6500:HEAD
minor conflicts in texture and one Makefile resolved to the trunk

also made a small patch to texture, so it Modulates with GL_REPEAT

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/network/network_socket.cc

    r6341 r6634  
    398398bool NetworkSocket::writePacket( byte * data, int length )
    399399{
    400   PRINTF(5)("NetworkSocket::writePacket()\n");
     400  PRINTF(5)("NetworkSocket::writePacket() size=%d\n", length);
     401
     402  if ( length > 1024 )
     403  PRINTF(2)("WARNING SENDING BIG PACKET SIZE = %d\n", length);
    401404
    402405  byte blen[INTSIZE];
Note: See TracChangeset for help on using the changeset viewer.