Skip to content

Commit 35d6664

Browse files
Bumped version to 1.3.5.post31
Updated vendor constant enumerations at Sat Oct 18 10:05:18 UTC 2025. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent f5e9a67 commit 35d6664

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

conda/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2
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.post30'
124+
__version__ = '1.3.5.post31'

pcapkit/const/reg/apptype.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25752,6 +25752,12 @@ def __hash__(self) -> 'int':
2575225752
#: [UDP] Reserved
2575325753
reserved_21221: 'AppType' = 21221, 'reserved', TransportProtocol.get('udp')
2575425754

25755+
#: [TCP] Xahau P2P network protocol [https://xahau.network]
25756+
xahaud: 'AppType' = 21337, 'xahaud', TransportProtocol.get('tcp')
25757+
25758+
#: [UDP] Reserved
25759+
reserved_21337: 'AppType' = 21337, 'reserved', TransportProtocol.get('udp')
25760+
2575525761
#: [TCP] Raima RDM TFS
2575625762
rdm_tfs: 'AppType' = 21553, 'rdm-tfs', TransportProtocol.get('tcp')
2575725763

@@ -32248,7 +32254,10 @@ def _missing_(cls, value: 'int') -> 'AppType':
3224832254
if 21214 <= value <= 21220:
3224932255
#: [N/A] Unassigned
3225032256
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
32251-
if 21222 <= value <= 21552:
32257+
if 21222 <= value <= 21336:
32258+
#: [N/A] Unassigned
32259+
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
32260+
if 21338 <= value <= 21552:
3225232261
#: [N/A] Unassigned
3225332262
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3225432263
if 21555 <= value <= 21589:

0 commit comments

Comments
 (0)