Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 9, 2007, 11:24:25 PM (18 years ago)
Author:
scheusso
Message:

some bugfixes(clientinformation, client), enhancements(client, server) and tests(chatserver/client)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/network/Client.cc

    r439 r448  
    100100    if(!isConnected)
    101101      return false;
    102     if(!client_connection.addPacket(pck_gen.chatMessage( message.c_str() )));
    103         return false;
     102    if(client_connection.addPacket(pck_gen.chatMessage( message.c_str() )));
     103      return client_connection.sendPackets();
    104104    // send packets
    105     return client_connection.sendPackets();
     105    return false;
    106106  }
    107107
Note: See TracChangeset for help on using the changeset viewer.