Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 27, 2007, 11:30:17 PM (16 years ago)
Author:
nicolasc
Message:

cleaned up network, builds with CML

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/merger/src/network/dummyclient.cc

    r278 r285  
    77#include <string>
    88#include <enet/enet.h>
    9 #include "network/PacketManager.h"
     9#include "PacketManager.h"
    1010
    1111using namespace std;
     
    2020  enet_initialize();
    2121  atexit(enet_deinitialize);
    22  
     22
    2323  cout << "Enter address of the server xxx.xxx.xxx.xxx (enter for localhost)" << endl;
    2424  string str;
     
    2727  if(str.compare("")==0)
    2828    str="127.0.0.1";
    29  
     29
    3030  enet_address_set_host(&address, str.c_str());
    3131  address.port = 55556;
     
    8787  enet_peer_reset(peer);
    8888
    89  
    90  
     89
     90
    9191  return 0;
    9292}
Note: See TracChangeset for help on using the changeset viewer.