* ext/socket/option.c (inspect_linger): message refined.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
22cef963c3
commit
80d230c394
@ -1,3 +1,7 @@
|
|||||||
|
Sun Feb 22 20:09:29 2009 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* ext/socket/option.c (inspect_linger): message refined.
|
||||||
|
|
||||||
Sun Feb 22 19:28:08 2009 Tanaka Akira <akr@fsij.org>
|
Sun Feb 22 19:28:08 2009 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* ext/socket/init.c (s_recvfrom): use rb_io_wait_readable after
|
* ext/socket/init.c (s_recvfrom): use rb_io_wait_readable after
|
||||||
|
@ -272,7 +272,7 @@ inspect_linger(int level, int optname, VALUE data, VALUE ret)
|
|||||||
if (RSTRING_LEN(data) == sizeof(struct linger)) {
|
if (RSTRING_LEN(data) == sizeof(struct linger)) {
|
||||||
struct linger s;
|
struct linger s;
|
||||||
memcpy((char*)&s, RSTRING_PTR(data), sizeof(s));
|
memcpy((char*)&s, RSTRING_PTR(data), sizeof(s));
|
||||||
rb_str_catf(ret, " onoff:%d linger:%d", s.l_onoff, s.l_linger);
|
rb_str_catf(ret, " %s %dsec", s.l_onoff ? "on" : "off", s.l_linger);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user