2 releases
0.1.1 | Aug 17, 2024 |
---|---|
0.1.0 | Aug 16, 2024 |
#1404 in Network programming
227 downloads per month
Used in netscanner
1MB
181 lines
port-desc
Port service description library from internet assigned number authority
Usage
Include in the Cargo.toml file:
port-desc = { version = "0.1.1" }
then
use port_desc::{PortDescription, TransportProtocol};
fn main() {
let ports = PortDescription::defult();
match ports {
Ok(p) => {
let port_num = 80;
let entry = p.get_port_service_name(port_num, TransportProtocol::Tcp);
println!("TCP Port {} service name: {}", port_num, entry);
},
Err(e) => {
println!("{:?}", e);
}
}
}
You can always take a look at examples files.
Dependencies
~1.4–2.2MB
~34K SLoC