Project

General

Profile

Actions

Feature #936

closed

IO.nread function

Added by OlegPuchinin (Oleg Puchinin) over 15 years ago. Updated almost 13 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:20917]

Description

=begin
USAGE:
require 'socket'
s1 = UDPSocket.new
s1.bind("127.0.0.1", 0)
s2 = UDPSocket.new
s2.bind("127.0.0.1", 0)

  s2.connect(*s1.addr.values_at(3,1))
  s1.connect(*s2.addr.values_at(3,1))
  s1.send "aasdfsadfwasdfasdaa", 0     
  IO.select([s2]) # emulate blocking recvfrom

  # !!!!!!!!!!!!!!!!
  p s2.recvfrom_nonblock(s2.nread)  #=> ["aaa", ["AF_INET", 33302, "localhost.localdomain", "127.0.0.1"]]
  # !!!!!!!!!!!!!!!!

=end


Files

nread.diff (717 Bytes) nread.diff OlegPuchinin (Oleg Puchinin), 12/27/2008 08:30 PM
Actions #1

Updated by matz (Yukihiro Matsumoto) over 15 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

=begin
Applied in changeset r21162.
=end

Actions #2

Updated by OlegPuchinin (Oleg Puchinin) over 15 years ago

=begin
nread can be used in TCP sockets :D
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0