socket.accept_nonblock => [client_socket, client_addrinfo]
Instance Public methods
Accepts an incoming connection using accept(2) after O_NONBLOCK is set for the underlying file descriptor. It returns an array containing the accepted socket for the incoming connection, client_socket, and an Addrinfo, client_addrinfo.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # In one script, start this first require 'socket' include Socket::Constants socket = Socket. new ( AF_INET , SOCK_STREAM , 0 ) sockaddr = Socket.sockaddr_in( 2200 , 'localhost' ) socket.bind(sockaddr) socket.listen( 5 ) begin # emulate blocking accept client_socket, client_addrinfo = socket.accept_nonblock rescue IO ::WaitReadable, Errno:: EINTR IO .select([socket]) retry end puts "The client said, '#{client_socket.readline.chomp}'" client_socket.puts "Hello from script one!" socket.close # In another script, start this second require 'socket' include Socket::Constants socket = Socket. new ( AF_INET , SOCK_STREAM , 0 ) sockaddr = Socket.sockaddr_in( 2200 , 'localhost' ) socket.connect(sockaddr) socket.puts "Hello from script 2." puts "The server said, '#{socket.readline.chomp}'" socket.close |
Refer to #accept for the exceptions that may be thrown if the call to accept_nonblock fails.
#accept_nonblock may raise any error corresponding to accept(2) failure, including Errno::EWOULDBLOCK.
If the exception is Errno::EWOULDBLOCK, Errno::AGAIN, Errno::ECONNABORTED or Errno::EPROTO, it is extended by IO::WaitReadable. So IO::WaitReadable can be used to rescue the exceptions for retrying accept_nonblock.
Please login to continue.