aboutsummaryrefslogtreecommitdiffstats
path: root/time.c
diff options
context:
space:
mode:
authorMasaki Matsushita <glass.saga@gmail.com>2018-12-31 12:17:39 +0900
committerMasaki Matsushita <glass.saga@gmail.com>2019-09-09 14:34:05 +0900
commit6382f5cc91ac9e36776bc854632d9a1237250da7 (patch)
tree4276c3de900e0f4300b8e0165dfc94ead4e0920d /time.c
parentfa79219356715e28529b721e81056ec69a998c4e (diff)
downloadruby-6382f5cc91ac9e36776bc854632d9a1237250da7.tar.gz
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.
Diffstat (limited to 'time.c')
-rw-r--r--time.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/time.c b/time.c
index 1e760f6ca5..18bed6d68a 100644
--- a/time.c
+++ b/time.c
@@ -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_