forked from crystal-lang/crystal
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45d0f0a
commit dc805b8
Showing
2 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
module Crystal::System::Addrinfo | ||
alias Handle = LibC::Addrinfo* | ||
|
||
@addr : LibC::SockaddrIn6 | ||
|
||
protected def initialize(addrinfo : Handle) | ||
@family = ::Socket::Family.from_value(addrinfo.value.ai_family) | ||
@type = ::Socket::Type.from_value(addrinfo.value.ai_socktype) | ||
@protocol = ::Socket::Protocol.from_value(addrinfo.value.ai_protocol) | ||
@size = addrinfo.value.ai_addrlen.to_i | ||
|
||
@addr = uninitialized LibC::SockaddrIn6 | ||
|
||
case @family | ||
when ::Socket::Family::INET6 | ||
addrinfo.value.ai_addr.as(LibC::SockaddrIn6*).copy_to(pointerof(@addr).as(LibC::SockaddrIn6*), 1) | ||
when ::Socket::Family::INET | ||
addrinfo.value.ai_addr.as(LibC::SockaddrIn*).copy_to(pointerof(@addr).as(LibC::SockaddrIn*), 1) | ||
else | ||
# TODO: (asterite) UNSPEC and UNIX unsupported? | ||
end | ||
end | ||
|
||
def system_ip_address : ::Socket::IPAddress | ||
::Socket::IPAddress.from(to_unsafe, size) | ||
end | ||
|
||
def to_unsafe | ||
pointerof(@addr).as(LibC::Sockaddr*) | ||
end | ||
|
||
def self.getaddrinfo(domain, service, family, type, protocol, timeout) : Handle | ||
hints = LibC::Addrinfo.new | ||
hints.ai_family = (family || ::Socket::Family::UNSPEC).to_i32 | ||
hints.ai_socktype = type | ||
hints.ai_protocol = protocol | ||
hints.ai_flags = 0 | ||
|
||
if service.is_a?(Int) | ||
hints.ai_flags |= LibC::AI_NUMERICSERV | ||
if service < 0 | ||
raise ::Socket::Addrinfo::Error.from_os_error(nil, WinError::WSATYPE_NOT_FOUND, domain: domain, type: type, protocol: protocol, service: service) | ||
end | ||
end | ||
|
||
ret = LibC.getaddrinfo(domain, service.to_s, pointerof(hints), out ptr) | ||
unless ret.zero? | ||
error = WinError.new(ret.to_u32!) | ||
raise ::Socket::Addrinfo::Error.from_os_error(nil, error, domain: domain, type: type, protocol: protocol, service: service) | ||
end | ||
ptr | ||
end | ||
|
||
def self.next_addrinfo(addrinfo : Handle) : Handle | ||
addrinfo.value.ai_next | ||
end | ||
|
||
def self.free_addrinfo(addrinfo : Handle) | ||
LibC.freeaddrinfo(addrinfo) | ||
end | ||
end |