From e137e939b7922044994f1fd8ea96b9e9b2a6b665 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 24 Feb 2009 10:56:57 +0000 Subject: * ext/socket/ancdata.c (ancillary_timestamp): support SCM_BINTIME. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/ancdata.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'ext') diff --git a/ext/socket/ancdata.c b/ext/socket/ancdata.c index 0761db6787..788e5307a8 100644 --- a/ext/socket/ancdata.c +++ b/ext/socket/ancdata.c @@ -209,6 +209,10 @@ ancillary_unix_rights(VALUE self) * _ancillarydata_ should be one of following type: * - SOL_SOCKET/SCM_TIMESTAMP (micro second) GNU/Linux, FreeBSD, NetBSD, OpenBSD, Solaris, MacOS X * - SOL_SOCKET/SCM_TIMESTAMPNS (nano second) GNU/Linux + * - SOL_SOCKET/SCM_BINTIME (2**(-64) second) FreeBSD + * + * Note that Time cannot represent SCM_BINTIME timestamps accurately + * because Time uses nano second as internal representation. * * Addrinfo.udp("127.0.0.1", 0).bind {|s1| * Addrinfo.udp("127.0.0.1", 0).bind {|s2| @@ -253,6 +257,17 @@ ancillary_timestamp(VALUE self) } #endif +#ifdef SCM_BINTIME + if (level == SOL_SOCKET && type == SCM_BINTIME && + RSTRING_LEN(data) == sizeof(struct bintime)) { + struct bintime bt; + struct timespec ts; + memcpy((char*)&bt, RSTRING_PTR(data), sizeof(bt)); + bintime2timespec(&bt, &ts); + result = rb_time_nano_new(ts.tv_sec, ts.tv_nsec); + } +#endif + if (result == Qnil) rb_raise(rb_eTypeError, "timestamp ancillary data expected"); -- cgit v1.2.3