1 个不稳定版本
0.1.0 | 2023 年 6 月 2 日 |
---|
#16 在 #false
4KB
port_open
获取 ipv4 端口的开启状态
用法
将此添加到您的 Cargo.toml 中
[dependencies]
port_open="0.1.0"
示例
use port_open::get_port_isopen;
fn main() {
let result = get_port_isopen(&[127, 0, 0, 1], &[80, 5037, 22]);
for port in result {
println!("{:?}", res);
}
}
输出: PortOpen { ip: 127.0.0.1, port: 80, is_open: false } PortOpen { ip: 127.0.0.1, port: 5037, is_open: true } PortOpen { ip: 127.0.0.1, port: 22, is_open: false }
许可证
MIT