Skip to content

Commit 67468af

Browse files
Bumped version to 1.3.5.post1
Updated vendor constant enumerations at Sat Nov 23 10:06:01 UTC 2024. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent 768a10d commit 67468af

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

pcapkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@
121121
]
122122

123123
#: version number
124-
__version__ = "1.3.5"
124+
__version__ = '1.3.5.post1'

pcapkit/const/reg/apptype.py

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19846,6 +19846,11 @@ def __hash__(self) -> 'int':
1984619846
#: [SCTP] Automatic Dependent Surveillance
1984719847
ads_c: 'AppType' = 5913, 'ads-c', TransportProtocol.get('sctp')
1984819848

19849+
#: - [TCP] Security for Internet Protocol Suite
19850+
#: - [UDP] Security for Internet Protocol Suite
19851+
#: - [SCTP] Security for Internet Protocol Suite
19852+
ipsdtls: 'AppType' = 5914, 'ipsdtls', TransportProtocol.get('tcp') | TransportProtocol.get('udp') | TransportProtocol.get('sctp')
19853+
1984919854
#: - [TCP] Indy Application Server
1985019855
#: - [UDP] Indy Application Server
1985119856
indy: 'AppType' = 5963, 'indy', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -27599,6 +27604,14 @@ def __hash__(self) -> 'int':
2759927604
#: - [UDP] Adam Hall network control and monitoring
2760027605
adamhall: 'AppType' = -1, 'adamhall', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2760127606

27607+
#: - [TCP] ARN (Adaptive Routing Notification) is a protocol designed to enable
27608+
#: dynamic routing adjustments by sharing network status information between
27609+
#: nodes in data center networks, improving efficiency and fault tolerance.
27610+
#: - [UDP] ARN (Adaptive Routing Notification) is a protocol designed to enable
27611+
#: dynamic routing adjustments by sharing network status information between
27612+
#: nodes in data center networks, improving efficiency and fault tolerance.
27613+
adaptive_rn: 'AppType' = -1, 'adaptive-rn', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
27614+
2760227615
#: [N/A] Address-O-Matic
2760327616
addressbook: 'AppType' = -1, 'addressbook', TransportProtocol.get('undefined')
2760427617

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

28501+
#: [TCP] HomeWizard Local API
28502+
homewizard: 'AppType' = -1, 'homewizard', TransportProtocol.get('tcp')
28503+
2848828504
#: [UDP] Honeywell Video Systems
2848928505
honeywell_vid: 'AppType' = -1, 'honeywell-vid', TransportProtocol.get('udp')
2849028506

@@ -30839,7 +30855,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
3083930855
if 5901 <= value <= 5902:
3084030856
#: [N/A] Unassigned
3084130857
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
30842-
if 5914 <= value <= 5962:
30858+
if 5915 <= value <= 5962:
3084330859
#: [N/A] Unassigned
3084430860
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3084530861
if 5964 <= value <= 5967:

pcapkit/protocols/internet/internet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
from pcapkit.const.reg.transtype import TransType as Enum_TransType
1818
from pcapkit.corekit.module import ModuleDescriptor
1919
from pcapkit.corekit.protochain import ProtoChain
20-
from pcapkit.protocols.protocol import ProtocolBase as Protocol
2120
from pcapkit.protocols.protocol import _PT, _ST
21+
from pcapkit.protocols.protocol import ProtocolBase as Protocol
2222
from pcapkit.utilities.decorators import beholder
2323
from pcapkit.utilities.exceptions import RegistryError
2424
from pcapkit.utilities.warnings import RegistryWarning, warn

0 commit comments

Comments
 (0)