Scan a IPv4 range for a certain port
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wwmap/src/main.rs

20 lines
275 B

2 years ago
#![allow(
dead_code,
unused_variables,
//unused_imports, // TODO: rm
)]
2 years ago
mod util;
2 years ago
mod scanner;
2 years ago
mod ipv4;
use ipv4::IPv4;
2 years ago
2 years ago
fn main() {
// scanner::start_scan(100);
2 years ago
// permutations::ipv4(None);
2 years ago
let ip = IPv4::new(256);
println!("{:?}", ip);
2 years ago
}