Files
Nim/tests/stdlib/tnetbind.nim
ringabout 4fa86422c0 stdlib tests now check refc too (#21664)
* stdlib tests now check refc too

* typo

* fixes line numbers

* disable cpp

* do not touch
2023-04-21 15:37:58 +02:00

26 lines
536 B
Nim

discard """
matrix: "--mm:refc; --mm:orc"
joinable: false
"""
#[
joinable: false
otherwise:
Error: unhandled exception: Address already in use [OSError]
]#
import net
## Test for net.bindAddr
proc test() =
# IPv4 TCP
newSocket(AF_INET, SOCK_STREAM, IPPROTO_TCP).bindAddr(Port(1900), "0.0.0.0")
newSocket(AF_INET, SOCK_STREAM, IPPROTO_TCP).bindAddr(Port(1901))
# IPv6 TCP
newSocket(AF_INET6, SOCK_STREAM, IPPROTO_TCP).bindAddr(Port(1902), "::")
newSocket(AF_INET6, SOCK_STREAM, IPPROTO_TCP).bindAddr(Port(1903))
test()