# File lib/drb/drb.rb, line 942
    def accept
      while true
        s = @socket.accept
        break if (@acl ? @acl.allow_socket?(s) : true) 
        s.close
      end
      self.class.new(nil, s, @config)
    end