v1.5.2
epi052/feroxbusterv1.5.2Nov 7, 2020by epi052
AI Summary
This release includes a system resource management improvement to handle file descriptors more effectively on Linux and macOS.
Key Highlights
- Added attempt to set soft limit for `RLIMIT_NOFILE` resource
- Applies to Linux and macOS only
- Improves file descriptor handling
New Features
- File descriptor limit management (RLIMIT_NOFILE)
Full Release Notes
- Added an attempt to set the soft limit for the `RLIMIT_NOFILE` resource (linux/macos only) `RLIMIT_NOFILE` is the maximum number of file descriptors that can be opened by the process. If the current hard limit is greater than our requested default, the soft limit is raised to the requested value. If the hard limit is instead lower than the requested value AND the soft limit is lower than the hard limit, the soft limit is increased to be equal to the hard limit. If both of the above conditions aren't met, nothing happens.