Common: Add docstring to ICMPScanConfiguration dataclass

This commit is contained in:
Shreya Malviya 2022-07-27 15:45:55 +05:30
parent 775ef144a5
commit f9bed82e7a
1 changed files with 7 additions and 0 deletions

View File

@ -41,6 +41,13 @@ class ScanTargetConfiguration:
@dataclass(frozen=True)
class ICMPScanConfiguration:
"""
A configuration for ICMP scanning
Attributes:
:param timeout: Maximum time that the agent should wait for a response from the target
"""
timeout: float