Skip to content

Commit

Permalink
excluded rlimit usage from windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
epi052 committed Nov 7, 2020
1 parent 427efde commit c8775e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use feroxbuster::{
config::{CONFIGURATION, PROGRESS_BAR, PROGRESS_PRINTER},
heuristics, logger, reporter,
scanner::{scan_url, PAUSE_SCAN},
utils::{
ferox_print, get_current_depth, module_colorizer, set_open_file_limit, status_colorizer,
},
FeroxError, FeroxResponse, FeroxResult, DEFAULT_OPEN_FILE_LIMIT, SLEEP_DURATION, VERSION,
utils::{ferox_print, get_current_depth, module_colorizer, status_colorizer},
FeroxError, FeroxResponse, FeroxResult, SLEEP_DURATION, VERSION,
};
#[cfg(not(target_os = "windows"))]
use feroxbuster::{utils::set_open_file_limit, DEFAULT_OPEN_FILE_LIMIT};
use futures::StreamExt;
use std::{
collections::HashSet,
Expand Down

0 comments on commit c8775e3

Please sign in to comment.