mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
40 lines
1.1 KiB
Nim
40 lines
1.1 KiB
Nim
#
|
|
#
|
|
# Nimrod's Runtime Library
|
|
# (c) Copyright 2014 Dominik Picheta
|
|
#
|
|
# See the file "copying.txt", included in this
|
|
# distribution, for details about the copyright.
|
|
#
|
|
|
|
## This module implements a high-level cross-platform sockets interface.
|
|
|
|
import sockets2, os
|
|
|
|
type
|
|
TSocket* = TSocketHandle
|
|
|
|
proc bindAddr*(socket: TSocket, port = TPort(0), address = "") {.
|
|
tags: [FReadIO].} =
|
|
|
|
## binds an address/port number to a socket.
|
|
## Use address string in dotted decimal form like "a.b.c.d"
|
|
## or leave "" for any address.
|
|
|
|
if address == "":
|
|
var name: TSockaddr_in
|
|
when defined(windows):
|
|
name.sin_family = toInt(AF_INET).int16
|
|
else:
|
|
name.sin_family = toInt(AF_INET)
|
|
name.sin_port = htons(int16(port))
|
|
name.sin_addr.s_addr = htonl(INADDR_ANY)
|
|
if bindAddr(socket, cast[ptr TSockAddr](addr(name)),
|
|
sizeof(name).TSocklen) < 0'i32:
|
|
osError(osLastError())
|
|
else:
|
|
var aiList = getAddrInfo(address, port, AF_INET)
|
|
if bindAddr(socket, aiList.ai_addr, aiList.ai_addrlen.TSocklen) < 0'i32:
|
|
dealloc(aiList)
|
|
osError(osLastError())
|
|
dealloc(aiList) |