listeners
listeners copied to clipboard
Get processes listening on a TCP port in a cross-platform way
Hey thanks for creating this really cool library! In the README its mention that it supports TCP only. Is it feasible to include UDP as well? In addition, currently it...
Updates the requirements on [windows](https://github.com/microsoft/windows-rs) to permit the latest version. Commits ae896c5 Release 0.56.0 (#2989) 5b73aea Document Interface::IID (#2990) bedd359 Add explicit path support to the interface macro (#2976) e7a361a...
The library should get all endpoints/listeners for TCP (for all possible states not just LISTEN) and UDP.
This crate is slow when getting info from single port. It uses `get_all()` inside the `get_processes_by_port` function. ```rs fn main() { if let Ok(listeners) = listeners::get_processes_by_port(56240) { for l in...