diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-10-31 00:03:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 17:03:04 +0100 |
commit | 4d11d0619d11d8aecdaff998981efcd054de9760 (patch) | |
tree | d098736002228d600e3232f6ab6d8347872224c8 /lib/pure/nativesockets.nim | |
parent | 403e0118ae8d099384e9bd6a046c2114538503b8 (diff) | |
download | Nim-4d11d0619d11d8aecdaff998981efcd054de9760.tar.gz |
complete std prefixes for stdlib (#22887)
follow up https://github.com/nim-lang/Nim/pull/22851 follow up https://github.com/nim-lang/Nim/pull/22873
Diffstat (limited to 'lib/pure/nativesockets.nim')
-rw-r--r-- | lib/pure/nativesockets.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/nativesockets.nim b/lib/pure/nativesockets.nim index 593bd2d56..6d6b3097a 100644 --- a/lib/pure/nativesockets.nim +++ b/lib/pure/nativesockets.nim @@ -12,7 +12,7 @@ # TODO: Clean up the exports a bit and everything else in general. -import os, options +import std/[os, options] import std/private/since import std/strbasics @@ -27,12 +27,12 @@ const useNimNetLite = defined(nimNetLite) or defined(freertos) or defined(zephyr defined(nuttx) when useWinVersion: - import winlean + import std/winlean export WSAEWOULDBLOCK, WSAECONNRESET, WSAECONNABORTED, WSAENETRESET, WSANOTINITIALISED, WSAENOTSOCK, WSAEINPROGRESS, WSAEINTR, WSAEDISCON, ERROR_NETNAME_DELETED else: - import posix + import std/posix export fcntl, F_GETFL, O_NONBLOCK, F_SETFL, EAGAIN, EWOULDBLOCK, MSG_NOSIGNAL, EINTR, EINPROGRESS, ECONNRESET, EPIPE, ENETRESET, EBADF export Sockaddr_storage, Sockaddr_un, Sockaddr_un_path_length |