mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
* stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
39 lines
1.2 KiB
Nim
39 lines
1.2 KiB
Nim
discard """
|
|
matrix: "--mm:refc; --mm:orc"
|
|
exitcode: 0
|
|
output: ""
|
|
"""
|
|
|
|
# bug: https://github.com/nim-lang/Nim/issues/10198
|
|
|
|
import nativesockets
|
|
import std/assertions
|
|
|
|
block DGRAM_UDP:
|
|
let aiList = getAddrInfo("127.0.0.1", 999.Port, AF_INET, SOCK_DGRAM, IPPROTO_UDP)
|
|
doAssert aiList != nil
|
|
doAssert aiList.ai_addr != nil
|
|
doAssert aiList.ai_addrlen.SockLen == sizeof(Sockaddr_in).SockLen
|
|
doAssert aiList.ai_next == nil
|
|
freeAddrInfo aiList
|
|
|
|
when defined(posix) and not defined(haiku) and not defined(freebsd) and not defined(openbsd) and not defined(netbsd):
|
|
|
|
block RAW_ICMP:
|
|
# the port will be ignored
|
|
let aiList = getAddrInfo("127.0.0.1", 999.Port, AF_INET, SOCK_RAW, IPPROTO_ICMP)
|
|
doAssert aiList != nil
|
|
doAssert aiList.ai_addr != nil
|
|
doAssert aiList.ai_addrlen.SockLen == sizeof(Sockaddr_in).SockLen
|
|
doAssert aiList.ai_next == nil
|
|
freeAddrInfo aiList
|
|
|
|
block RAW_ICMPV6:
|
|
# the port will be ignored
|
|
let aiList = getAddrInfo("::1", 999.Port, AF_INET6, SOCK_RAW, IPPROTO_ICMPV6)
|
|
doAssert aiList != nil
|
|
doAssert aiList.ai_addr != nil
|
|
doAssert aiList.ai_addrlen.SockLen == sizeof(Sockaddr_in6).SockLen
|
|
doAssert aiList.ai_next == nil
|
|
freeAddrInfo aiList
|