Source code for csle_common.dao.emulation_config.packet_delay_distribution_type

"""
Type of delay distributions on a container's network interface
"""
from enum import IntEnum


[docs]class PacketDelayDistributionType(IntEnum): """ Enum representing the different types of delay distributions to emulate on a container """ UNIFORM = 0 NORMAL = 1 PARETO = 2 PARETONORMAL = 3