diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-06-29 20:11:21 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-06-29 20:11:21 +0100 |
commit | 615defb1a9f4739f365ff56321cec0b1a0d1fde2 (patch) | |
tree | f3e3086032752281f616258d39466cb49424c6d2 /web | |
parent | c16d153ff53732331e7a017a29fc13ccb681a402 (diff) | |
download | Nim-615defb1a9f4739f365ff56321cec0b1a0d1fde2.tar.gz |
Fixes socket problems on Windows and normalises some names.
Ref #2976. Ref #2003. See news.txt for details.
Diffstat (limited to 'web')
-rw-r--r-- | web/news.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt index 2d5b75207..639ebe946 100644 --- a/web/news.txt +++ b/web/news.txt @@ -28,7 +28,12 @@ News ``--gc:none``. ``--os:standalone`` without ``--gc:none`` is now a version that doesn't depend on any OS but includes the GC. However this version is currently untested! - + - All procedures which construct a ``Socket``/``AsyncSocket`` now need to + specify the socket domain, type and protocol. The param name + ``typ: SockType`` (in ``newSocket``/``newAsyncSocket`` procs) was also + renamed to ``sockType``. The param ``af`` in the ``connect`` procs was + removed. This affects ``asyncnet``, ``asyncdispatch``, ``net``, and + ``rawsockets``. Library additions ----------------- |