Fix missing semicolons in echo server example
This commit is contained in:
parent
6b093cd5fa
commit
79a7b840f7
@ -36,11 +36,11 @@
|
|||||||
* auto address = new InternetAddress("127.0.0.1", cast(ushort) 8192);
|
* auto address = new InternetAddress("127.0.0.1", cast(ushort) 8192);
|
||||||
* version (Windows)
|
* version (Windows)
|
||||||
* {
|
* {
|
||||||
* auto sock = new OverlappedStreamSocket(AddressFamily.INET)
|
* auto sock = new OverlappedStreamSocket(AddressFamily.INET);
|
||||||
* }
|
* }
|
||||||
* else
|
* else
|
||||||
* {
|
* {
|
||||||
* auto sock = new StreamSocket(AddressFamily.INET)
|
* auto sock = new StreamSocket(AddressFamily.INET);
|
||||||
* sock.blocking = false;
|
* sock.blocking = false;
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user