Source code for csle_common.dao.emulation_action_result.nmap_addr_type

"""
Type of nmap addresses
"""
from enum import IntEnum


[docs]class NmapAddrType(IntEnum): """ Enum representing the different address types in the network. """ IP = 0 MAC = 1