diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ips/socketstream.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ips/socketstream.nim b/src/ips/socketstream.nim index 5a030427..af173d1a 100644 --- a/src/ips/socketstream.nim +++ b/src/ips/socketstream.nim @@ -39,7 +39,6 @@ proc sockReadData(s: Stream, buffer: pointer, len: int): int = s.isend = true proc sockWriteData(s: Stream, buffer: pointer, len: int) = - #TODO maybe don't block if blk is false? var i = 0 while i < len: let n = SocketStream(s).source.send(cast[pointer](cast[int](buffer) + i), len - i) |