diff options
author | Masaki Matsushita <[email protected]> | 2019-09-10 09:57:31 +0900 |
---|---|---|
committer | Masaki Matsushita <[email protected]> | 2019-09-10 10:10:59 +0900 |
commit | 0e9d56f5e73ed2fd8e7c858fdea7b7d5b905bb64 (patch) | |
tree | 6f6133010c44d90c82e0f3b5a53edf649e4352a5 /time.c | |
parent | 3678c371199d9a048589bf3da37f06223912dea5 (diff) |
Support timeout for Addrinfo
Addrinfo.getaddrinfo and .foreach now accepts :timeout in seconds as
a keyword argument. If getaddrinfo_a(3) is available, the timeout will be
applied for name resolution. Otherwise, it will be ignored.
Socket.tcp accepts :resolv_timeout to use this feature.
This commit is retry of 6382f5cc91ac9e36776bc854632d9a1237250da7.
Test was failed on Solaris machines which don't have "http" in
/etc/services. In this commit, use "ssh" instead.
Diffstat (limited to 'time.c')
-rw-r--r-- | time.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -2698,6 +2698,12 @@ rb_time_timespec(VALUE time) return time_timespec(time, FALSE); } +struct timespec +rb_time_timespec_interval(VALUE num) +{ + return time_timespec(num, TRUE); +} + enum { TMOPT_IN, TMOPT_MAX_ |