[#74190] [Ruby trunk Feature#12134] Comparison between `true` and `false` — duerst@...
Issue #12134 has been updated by Martin D端rst.
3 messages
2016/03/07
[#74269] Type systems for Ruby — Rob Blanco <ml@...>
Dear ruby-core,
5 messages
2016/03/10
[#74395] [Ruby trunk Feature#12142] Hash tables with open addressing — shyouhei@...
Issue #12142 has been updated by Shyouhei Urabe.
3 messages
2016/03/17
[ruby-core:74175] Re: [Ruby trunk Feature#12077] Consolidate SSLSocket interface with TCPSocket
From:
Eric Wong <normalperson@...>
Date:
2016-03-06 00:55:24 UTC
List:
ruby-core #74175
tonci.damjanic@gmail.com wrote: > Is there a reason why `SSLSocket#read` doesn't work the same > as `SSLSocket#sysread` Because IO#read and IO#sysread are different, too. The former is read-in-full behavior (outside of EOF) while sysread matches the low-level C interface and allows for partial reads. Likewise with write vs syswrite regarding write-in-full behavior. > and why there is no `SSLSocket#recv`? Currently, OpenSSL does not provide an interface to recv(2) which handles flag arguments :< I too wish for recv(2) and send(2) interfaces which lets me use MSG_MORE|MSG_DONTWAIT flags. Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>