Source code for pcapkit.vendor.ospf.authentication
# -*- coding: utf-8 -*-"""Authentication Types==========================.. module:: pcapkit.vendor.ospf.authenticationThis module contains the vendor crawler for **Authentication Types**,which is automatically generating :class:`pcapkit.const.ospf.authentication.Authentication`."""importsysfrompcapkit.vendor.defaultimportVendor__all__=['Authentication']
[docs]classAuthentication(Vendor):"""Authentication Types"""#: Value limit checker.FLAG='isinstance(value, int) and 0 <= value <= 65535'#: Link to registry.LINK='https://www.iana.org/assignments/ospf-authentication-codes/authentication-codes.csv'