Source code for pcapkit.const.mh.dsmipv6_home_address
# -*- coding: utf-8 -*-# pylint: disable=line-too-long,consider-using-f-string"""Dual Stack MIPv6 (DSMIPv6) IPv4 Home Address Option Status Codes======================================================================.. module:: pcapkit.const.mh.dsmipv6_home_addressThis module contains the constant enumeration for **Dual Stack MIPv6 (DSMIPv6) IPv4 Home Address Option Status Codes**,which is automatically generated from :class:`pcapkit.vendor.mh.dsmipv6_home_address.DSMIPv6HomeAddress`."""fromaenumimportIntEnum,extend_enum__all__=['DSMIPv6HomeAddress']
[docs]classDSMIPv6HomeAddress(IntEnum):"""[DSMIPv6HomeAddress] Dual Stack MIPv6 (DSMIPv6) IPv4 Home Address Option Status Codes"""#: Success [:rfc:`5555`]Success=0#: Failure, reason unspecified [:rfc:`5555`]Failure_reason_unspecified=128#: Administratively prohibited [:rfc:`5555`]Administratively_prohibited=129#: Incorrect IPv4 home address [:rfc:`5555`]Incorrect_IPv4_home_address=130#: Invalid IPv4 address [:rfc:`5555`]Invalid_IPv4_address=131#: Dynamic IPv4 home address assignment not available [:rfc:`5555`]Dynamic_IPv4_home_address_assignment_not_available=132#: Prefix allocation unauthorized [:rfc:`5555`]Prefix_allocation_unauthorized=133@staticmethoddefget(key:'int | str',default:'int'=-1)->'DSMIPv6HomeAddress':"""Backport support for original codes. Args: key: Key to get enum item. default: Default value if not found. :meta private: """ifisinstance(key,int):returnDSMIPv6HomeAddress(key)ifkeynotinDSMIPv6HomeAddress._member_map_:# pylint: disable=no-memberreturnextend_enum(DSMIPv6HomeAddress,key,default)returnDSMIPv6HomeAddress[key]# type: ignore[misc]
[docs]@classmethoddef_missing_(cls,value:'int')->'DSMIPv6HomeAddress':"""Lookup function used when value is not found. Args: value: Value to get enum item. """ifnot(isinstance(value,int)and0<=value<=255):raiseValueError('%r is not a valid %s'%(value,cls.__name__))if1<=value<=127:#: Unassignedreturnextend_enum(cls,'Unassigned_%d'%value,value)if134<=value<=255:#: Unassignedreturnextend_enum(cls,'Unassigned_%d'%value,value)returnsuper()._missing_(value)