rustmap 0.1.2

A very simple "Nmap-like" program that can scan for hosts and open TCP ports.
Documentation
1
2
3
4
5
6
7
8
pub mod cidr;
pub mod hosts;
pub mod icmp;
pub mod ports;

pub use crate::hosts::{probe_host, HostStatus};
pub use crate::ports::{probe_port, PortStatus};
pub use cidr::IpAddrRange;