| Crates.io | port-desc |
| lib.rs | port-desc |
| version | 0.1.1 |
| created_at | 2024-08-16 21:24:09.889431+00 |
| updated_at | 2024-08-17 19:53:42.443775+00 |
| description | Port service description library from internet assigned number authority |
| homepage | |
| repository | https://github.com/chleba/port-desc |
| max_upload_size | |
| id | 1341009 |
| size | 1,159,604 |
Port service description library from internet assigned number authority
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.