Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* IPv6 text representation according to RFC 5952

* Revert IPv6 text representation according to RFC 5952

* fix nim-lang#14259 nim-lang#15621

fix nim-lang#14259 nim-lang#15621

* Update lib/system/io.nim

* reverted IoHandle removal

* adaptation of types for WinAPI

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
  • Loading branch information
2 people authored and ardek66 committed Mar 26, 2021
1 parent 2dbddde commit 591e2a3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions lib/system/io.nim
Original file line number Diff line number Diff line change
Expand Up @@ -278,16 +278,23 @@ elif defined(posix) and not defined(lwip) and not defined(nimscript):
proc c_fcntl(fd: cint, cmd: cint): cint {.
importc: "fcntl", header: "<fcntl.h>", varargs.}
elif defined(windows):
const HANDLE_FLAG_INHERIT = culong 0x1
type
WinDWORD = culong
WinBOOL = cint

const HANDLE_FLAG_INHERIT = 1.WinDWORD

proc getOsfhandle(fd: cint): int {.
importc: "_get_osfhandle", header: "<io.h>".}

type
IoHandle = distinct pointer
## Windows' HANDLE type. Defined as an untyped pointer but is **not**
## one. Named like this to avoid collision with other `system` modules.
proc setHandleInformation(handle: IoHandle, mask, flags: culong): cint {.
importc: "SetHandleInformation", header: "<handleapi.h>".}

proc setHandleInformation(hObject: IoHandle, dwMask, dwFlags: WinDWORD):
WinBOOL {.stdcall, dynlib: "kernel32",
importc: "SetHandleInformation".}

const
BufSize = 4000
Expand Down Expand Up @@ -346,7 +353,7 @@ when defined(nimdoc) or (defined(posix) and not defined(nimscript)) or defined(w
result = c_fcntl(f, F_SETFD, flags) != -1
else:
result = setHandleInformation(cast[IoHandle](f), HANDLE_FLAG_INHERIT,
culong inheritable) != 0
inheritable.WinDWORD) != 0

proc readLine*(f: File, line: var TaintedString): bool {.tags: [ReadIOEffect],
benign.} =
Expand Down

0 comments on commit 591e2a3

Please sign in to comment.