diff --git a/lib/ronin/recon/engine.rb b/lib/ronin/recon/engine.rb index 4a6e0a5..ede992b 100644 --- a/lib/ronin/recon/engine.rb +++ b/lib/ronin/recon/engine.rb @@ -84,6 +84,22 @@ class Engine # # Initializes the recon engine. # + # @param [Array] values + # The values to start performing recon on. + # + # @param [Array] ignore + # The values to ignore while performing recon. + # + # @param [Integer, nil] max_depth + # The maximum depth to limit recon to. If not specified recon will + # continue until there are no more new values discovered. + # + # @param [WorkerSet] workers + # The workers to use for recon. + # + # @param [Console::Logger] logger + # The common logger for the recon engine. + # # @yield [self] # If a block is given it will be passed the newly created engine. #