nativesockets: add missing inheritable pass-through

This commit is contained in:
Leorize
2020-05-07 14:43:53 -05:00
parent 1a1e9986a3
commit 73a42ce941

View File

@@ -231,7 +231,7 @@ proc createNativeSocket*(domain: Domain = AF_INET,
##
## `inheritable` decides if the resulting SocketHandle can be inherited
## by child processes.
createNativeSocket(toInt(domain), toInt(sockType), toInt(protocol))
createNativeSocket(toInt(domain), toInt(sockType), toInt(protocol), inheritable)
proc newNativeSocket*(domain: Domain = AF_INET,
sockType: SockType = SOCK_STREAM,