ipnet主要提供一組IP CIDRs相關的API,可以用來進行相應的操作。
依賴
//Cargo.toml
//----snip----
[dependencies]
ipnet = "2.3.0"
原始碼示例
extern crate ipnet;
use std::net::{Ipv4Addr, Ipv6Addr};
use std::str::FromStr;
use ipnet::{IpNet, Ipv4Net, Ipv6Net};
fn main() {
// 建立
let _net4 = Ipv4Net::new(Ipv4Addr::new(10, 1, 1, 0), 24).unwrap();
let _net6 = Ipv6Net::new(Ipv6Addr::new(0xfd, 0, 0, 0, 0, 0, 0, 0), 24).unwrap();
// 從字串建立
let _net4 = Ipv4Net::from_str("10.1.1.0/24").unwrap();
let _net6 = Ipv6Net::from_str("fd00::/24").unwrap();
// 從字串建立
let net4: Ipv4Net = "10.1.1.0/24".parse().unwrap();
let _net6: Ipv6Net = "fd00::/24".parse().unwrap();
// 使用IpNet
let _net = IpNet::from(net4);
// 使用IpNet從字串建立
let _net = IpNet::from_str("10.1.1.0/24").unwrap();
let net: IpNet = "10.1.1.0/24".parse().unwrap();
println!("{} hostmask = {}", net, net.hostmask());
println!("{} netmask = {}", net4, net4.netmask());
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結