blob: ce0d5629894d93e7c897b7d1250a4849797cf67c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package com.it_jaros.jscanner.scan;
import java.util.List;
public record ScanOptions(
List<String> hostsArgv,
String hostsFile,
String ports,
boolean bannerRecognition,
boolean disableOnlineCheck,
boolean quiet,
boolean showFilteredPorts,
int delayInMillis,
int maxHostsLimit,
int maxWorkersPerHost,
int socketLimit,
int timeoutInMillis
) {}
|