Skip to content

Commit 442da44

Browse files
Bumped version to 1.3.5.post32
Updated vendor constant enumerations at Sat Nov 1 10:05:17 UTC 2025. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent 7aed93f commit 442da44

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

conda/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1
1+
0

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.post31'
124+
__version__ = '1.3.5.post32'

pcapkit/const/reg/apptype.py

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16353,9 +16353,9 @@ def __hash__(self) -> 'int':
1635316353
#: [N/A] Unassigned
1635416354
unassigned_4318: 'AppType' = 4318, 'unassigned', TransportProtocol.get('undefined')
1635516355

16356-
#: - [TCP] Fox SkyTale encrypted communication
16357-
#: - [UDP] Fox SkyTale encrypted communication
16358-
fox_skytale: 'AppType' = 4319, 'fox-skytale', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
16356+
#: - [TCP] Sentyron SkyTale encrypted communication
16357+
#: - [UDP] Sentyron SkyTale encrypted communication
16358+
skytale: 'AppType' = 4319, 'skytale', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
1635916359

1636016360
#: - [TCP] FDT Remote Categorization Protocol
1636116361
#: - [UDP] FDT Remote Categorization Protocol
@@ -24251,6 +24251,13 @@ def __hash__(self) -> 'int':
2425124251
#: [UDP] Reserved
2425224252
reserved_9981: 'AppType' = 9981, 'reserved', TransportProtocol.get('udp')
2425324253

24254+
#: [TCP] KAOS secure message transport protocol for safety-critical
24255+
#: environments
24256+
kaostransport: 'AppType' = 9986, 'kaostransport', TransportProtocol.get('tcp')
24257+
24258+
#: [UDP] Reserved
24259+
reserved_9986: 'AppType' = 9986, 'reserved', TransportProtocol.get('udp')
24260+
2425424261
#: - [TCP] DSM/SCM Target Interface
2425524262
#: - [UDP] DSM/SCM Target Interface
2425624263
dsm_scm_target: 'AppType' = 9987, 'dsm-scm-target', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -31786,7 +31793,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
3178631793
if 9967 <= value <= 9977:
3178731794
#: [N/A] Unassigned
3178831795
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
31789-
if 9982 <= value <= 9986:
31796+
if 9982 <= value <= 9985:
3179031797
#: [N/A] Unassigned
3179131798
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3179231799
if 9989 <= value <= 9989:

0 commit comments

Comments
 (0)