Array - Sockets - Clients

Irving Montalvo irving at moix.in
Fri Dec 13 18:48:27 PST 2013


Thanks!
-------------
receive(
     (shared(Socket) c) {
       Socket cli = cast(Socket) c;
       while (cli.isAlive()) {
         ubyte[8192] buf;
         ulong bufLen = cli.receive(buf);
         ...
       }
     }
   );


More information about the Digitalmars-d-learn mailing list