Common: Add ICMPScanConfiguration dataclass to agent_configuration.py

This commit is contained in:
vakarisz 2022-06-17 15:08:50 +03:00
parent 969f916cf5
commit af761ea48f
1 changed files with 5 additions and 0 deletions

View File

@ -94,3 +94,8 @@ class ScanTargetConfiguration:
inaccessible_subnets: List[str] inaccessible_subnets: List[str]
local_network_scan: bool local_network_scan: bool
subnets: List[str] subnets: List[str]
@dataclass(frozen=True)
class ICMPScanConfiguration:
timeout_ms: int