crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs | LICENSE

socket1.cc (221B)


      1 #include "socket"
      2 
      3 Socket::Socket() {
      4     _refcount = new int;
      5     *_refcount = 1;
      6     _basesocket = new Basesocket;
      7  
      8     #ifdef SOCKET_DEBUG
      9    debugmsg("Socket: created fresh, " << description() << '\n');
     10     #endif
     11 }