Source code for pcapkit.const.mh.dsmip6_tls_packet

# -*- coding: utf-8 -*-
# pylint: disable=line-too-long,consider-using-f-string
"""DSMIP6-TLS Packet Types Registry
======================================

.. module:: pcapkit.const.mh.dsmip6_tls_packet

This module contains the constant enumeration for **DSMIP6-TLS Packet Types Registry**,
which is automatically generated from :class:`pcapkit.vendor.mh.dsmip6_tls_packet.DSMIP6TLSPacket`.

"""

from aenum import IntEnum, extend_enum

__all__ = ['DSMIP6TLSPacket']


[docs] class DSMIP6TLSPacket(IntEnum): """[DSMIP6TLSPacket] DSMIP6-TLS Packet Types Registry""" #: non-encrypted IP packet [:rfc:`6618`] non_encrypted_IP_packet = 0 #: encrypted IP packet [:rfc:`6618`] encrypted_IP_packet = 1 #: mobility header [:rfc:`6618`] mobility_header = 8 @staticmethod def get(key: 'int | str', default: 'int' = -1) -> 'DSMIP6TLSPacket': """Backport support for original codes. Args: key: Key to get enum item. default: Default value if not found. :meta private: """ if isinstance(key, int): return DSMIP6TLSPacket(key) if key not in DSMIP6TLSPacket._member_map_: # pylint: disable=no-member return extend_enum(DSMIP6TLSPacket, key, default) return DSMIP6TLSPacket[key] # type: ignore[misc]
[docs] @classmethod def _missing_(cls, value: 'int') -> 'DSMIP6TLSPacket': """Lookup function used when value is not found. Args: value: Value to get enum item. """ if not (isinstance(value, int) and 0 <= value <= 15): raise ValueError('%r is not a valid %s' % (value, cls.__name__)) if 2 <= value <= 7: #: Unassigned return extend_enum(cls, 'Unassigned_%d' % value, value) if 9 <= value <= 15: #: Unassigned return extend_enum(cls, 'Unassigned_%d' % value, value) return super()._missing_(value)