socket.recvfrom_nonblock(maxlen) => [mesg, sender_addrinfo]socket.recvfrom_nonblock(maxlen, flags) => [mesg, sender_addrinfo]
Instance Public methods
Receives up to maxlen bytes from socket using
recvfrom(2) after O_NONBLOCK is set for the underlying file descriptor.
flags is zero or more of the MSG_ options. The first
element of the results, mesg, is the data received. The second
element, sender_addrinfo, contains protocol-specific address
information of the sender.
When re