Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 11, 2010, 5:47:47 PM (14 years ago)
Author:
adrfried
Message:

some debug output fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ipv6/src/libraries/network/LANDiscoverable.cc

    r7411 r7414  
    9494      {
    9595        case ENET_EVENT_TYPE_CONNECT:
     96            COUT(4) << "Received LAN discovery connect from client " << event.peer->host->receivedAddress << std::endl;
     97            break;
    9698        case ENET_EVENT_TYPE_DISCONNECT:
    9799        case ENET_EVENT_TYPE_NONE:
     
    100102          if( strcmp( LAN_DISCOVERY_MESSAGE, (char*)event.packet->data ) == 0 )      // check for a suitable orxonox client
    101103          {
    102             COUT(4) << "Received LAN discovery message from " << event.peer->host << std::endl;
     104            COUT(3) << "Received LAN discovery message from client " << event.peer->host->receivedAddress << std::endl;
    103105            packet::ServerInformation info;
    104106            info.setServerName("Orxonox Server");
Note: See TracChangeset for help on using the changeset viewer.