Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 8, 2006, 11:55:55 AM (18 years ago)
Author:
rennerc
Message:

fixed some bugs in udpSockets. subprojects/network should work now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/subprojects/network/network_unit_test.cc

    r7553 r7556  
    112112
    113113  //sending bigger packets than 255 is not supported
    114 
     114#if 0
    115115  printf("try to send more than 255 bytes\n");
    116116  printf("result: %d\n", client1->writePacket((byte*)buf, 1000));
     
    120120  printf("try to read with a too small buffer\n");
    121121  printf("result: %d\n", client1->readPacket((byte*)buf, strlen(str1)));
    122 
     122#endif
     123
     124  delete client1;
     125  delete client2;
     126  delete server1;
     127  delete server2;
     128 
    123129  return 0;
    124130}
Note: See TracChangeset for help on using the changeset viewer.