Common: Add ICMPScanConfiguration dataclass to agent_configuration.py
This commit is contained in:
parent
969f916cf5
commit
af761ea48f
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue