Skip to content

Commit

Permalink
Bumped version to 1.3.5.post1
Browse files Browse the repository at this point in the history
Updated vendor constant enumerations at Sat Nov 23 10:06:01 UTC 2024. The following files
have been changed: pcapkit/const/reg/apptype.py
  • Loading branch information
github-actions[bot] committed Nov 23, 2024
1 parent 768a10d commit 67468af
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pcapkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@
]

#: version number
__version__ = "1.3.5"
__version__ = '1.3.5.post1'
18 changes: 17 additions & 1 deletion pcapkit/const/reg/apptype.py
Original file line number Diff line number Diff line change
Expand Up @@ -19846,6 +19846,11 @@ def __hash__(self) -> 'int':
#: [SCTP] Automatic Dependent Surveillance
ads_c: 'AppType' = 5913, 'ads-c', TransportProtocol.get('sctp')

#: - [TCP] Security for Internet Protocol Suite
#: - [UDP] Security for Internet Protocol Suite
#: - [SCTP] Security for Internet Protocol Suite
ipsdtls: 'AppType' = 5914, 'ipsdtls', TransportProtocol.get('tcp') | TransportProtocol.get('udp') | TransportProtocol.get('sctp')

#: - [TCP] Indy Application Server
#: - [UDP] Indy Application Server
indy: 'AppType' = 5963, 'indy', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
Expand Down Expand Up @@ -27599,6 +27604,14 @@ def __hash__(self) -> 'int':
#: - [UDP] Adam Hall network control and monitoring
adamhall: 'AppType' = -1, 'adamhall', TransportProtocol.get('tcp') | TransportProtocol.get('udp')

#: - [TCP] ARN (Adaptive Routing Notification) is a protocol designed to enable
#: dynamic routing adjustments by sharing network status information between
#: nodes in data center networks, improving efficiency and fault tolerance.
#: - [UDP] ARN (Adaptive Routing Notification) is a protocol designed to enable
#: dynamic routing adjustments by sharing network status information between
#: nodes in data center networks, improving efficiency and fault tolerance.
adaptive_rn: 'AppType' = -1, 'adaptive-rn', TransportProtocol.get('tcp') | TransportProtocol.get('udp')

#: [N/A] Address-O-Matic
addressbook: 'AppType' = -1, 'addressbook', TransportProtocol.get('undefined')

Expand Down Expand Up @@ -28485,6 +28498,9 @@ def __hash__(self) -> 'int':
#: [TCP] Protocol for home hub communication
homekit: 'AppType' = -1, 'homekit', TransportProtocol.get('tcp')

#: [TCP] HomeWizard Local API
homewizard: 'AppType' = -1, 'homewizard', TransportProtocol.get('tcp')

#: [UDP] Honeywell Video Systems
honeywell_vid: 'AppType' = -1, 'honeywell-vid', TransportProtocol.get('udp')

Expand Down Expand Up @@ -30839,7 +30855,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
if 5901 <= value <= 5902:
#: [N/A] Unassigned
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
if 5914 <= value <= 5962:
if 5915 <= value <= 5962:
#: [N/A] Unassigned
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
if 5964 <= value <= 5967:
Expand Down
2 changes: 1 addition & 1 deletion pcapkit/protocols/internet/internet.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
from pcapkit.const.reg.transtype import TransType as Enum_TransType
from pcapkit.corekit.module import ModuleDescriptor
from pcapkit.corekit.protochain import ProtoChain
from pcapkit.protocols.protocol import ProtocolBase as Protocol
from pcapkit.protocols.protocol import _PT, _ST
from pcapkit.protocols.protocol import ProtocolBase as Protocol
from pcapkit.utilities.decorators import beholder
from pcapkit.utilities.exceptions import RegistryError
from pcapkit.utilities.warnings import RegistryWarning, warn
Expand Down

0 comments on commit 67468af

Please sign in to comment.