Skip to content

Commit 90c9566

Browse files
committed
test(crawler): remove second port
1 parent 9e983f7 commit 90c9566

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/scanning/crawler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub async fn crawl(gen_config: IpGenerator) {
1616
loop {
1717
let start_time = Instant::now();
1818

19-
let ports = vec![25565, 25566]; // Example for later implementation
19+
let ports = vec![25565]; // Example for later implementation
2020
let targets: Vec<(Ipv4Addr, u16)> = gen_config.generate()
2121
.flat_map(|ip| {
2222
stream::iter(ports.clone().into_iter().map(move |port| (ip, port)))

0 commit comments

Comments
 (0)