https://github.com/splurf/pfrs
A cross-platform solution dedicated to finding an available dynamic port.
https://github.com/splurf/pfrs
dynamic-port port rust tcp
Last synced: about 1 year ago
JSON representation
A cross-platform solution dedicated to finding an available dynamic port.
- Host: GitHub
- URL: https://github.com/splurf/pfrs
- Owner: splurf
- License: mit
- Created: 2025-01-10T16:17:51.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-15T17:36:03.000Z (over 1 year ago)
- Last Synced: 2025-03-27T14:11:20.775Z (over 1 year ago)
- Topics: dynamic-port, port, rust, tcp
- Language: Rust
- Homepage: https://crates.io/crates/pfrs
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pfrs
[](https://crates.io/crates/pfrs)
A cross-platform solution dedicated to finding an available dynamic port.
## Usage
```rust
use pfrs::*;
fn main() {
let port = find_open_port().unwrap();
}
```