From 63bc046ddf2a2ff6694d0a3757ef28ec4ca7b5f3 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 17 Feb 2018 19:36:06 +0000 Subject: Fixes #7227. --- lib/pure/net.nim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/pure/net.nim b/lib/pure/net.nim index ba964c39e..99d868847 100644 --- a/lib/pure/net.nim +++ b/lib/pure/net.nim @@ -64,6 +64,9 @@ ## socket.acceptAddr(client, address) ## echo("Client connected from: ", address) ## +## **Note:** The ``client`` variable is initialised with ``new Socket`` **not** +## ``newSocket()``. The difference is that the latter creates a new file +## descriptor. {.deadCodeElim: on.} import nativesockets, os, strutils, parseutils, times, sets, options @@ -753,6 +756,8 @@ proc acceptAddr*(server: Socket, client: var Socket, address: var string, ## flag is specified then this error will not be raised and instead ## accept will be called again. assert(client != nil) + assert client.fd.int <= 0, "Client socket needs to be initialised with " & + "`new`, not `newSocket`." let ret = accept(server.fd) let sock = ret[0] -- cgit 1.4.1-2-gfad0 class='tabs'> summary refs log blame commit diff stats
path: root/appveyor.yml
blob: a65a0cccf7b04b21061395d1ee484194bdd6cef1 (plain) (tree)
1
2
3
4
5
6
7
8
9