Source code for pcapkit.vendor.ospf.packet

# -*- coding: utf-8 -*-
"""OSPF Packet Types
=======================

.. module:: pcapkit.vendor.ospf.packet

This module contains the vendor crawler for **OSPF Packet Types**,
which is automatically generating :class:`pcapkit.const.ospf.packet.Packet`.

"""

import sys

from pcapkit.vendor.default import Vendor

__all__ = ['Packet']


[docs] class Packet(Vendor): """OSPF Packet Types""" #: Value limit checker. FLAG = 'isinstance(value, int) and 0 <= value <= 65535' #: Link to registry. LINK = 'https://www.iana.org/assignments/ospfv2-parameters/ospfv2-parameters-3.csv'
if __name__ == '__main__': sys.exit(Packet()) # type: ignore[arg-type]