Fix missing semicolons in echo server example

This commit is contained in:
Eugen Wissner 2016-10-08 19:43:40 +02:00
parent 6b093cd5fa
commit 79a7b840f7
1 changed files with 2 additions and 2 deletions

View File

@ -36,11 +36,11 @@
* auto address = new InternetAddress("127.0.0.1", cast(ushort) 8192);
* version (Windows)
* {
* auto sock = new OverlappedStreamSocket(AddressFamily.INET)
* auto sock = new OverlappedStreamSocket(AddressFamily.INET);
* }
* else
* {
* auto sock = new StreamSocket(AddressFamily.INET)
* auto sock = new StreamSocket(AddressFamily.INET);
* sock.blocking = false;
* }
*