# File lib/celluloid/io/ssl_socket.rb, line 35
      def accept
        to_io.accept_nonblock
        self
      rescue ::IO::WaitReadable
        wait_readable
        retry
      rescue ::IO::WaitWritable
        wait_writable
        retry
      end