Skip to content

Commit be31f72

Browse files
Bumped version to 1.3.5.post29
Updated vendor constant enumerations at Sat Sep 27 10:05:01 UTC 2025. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent 35c1904 commit be31f72

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
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.post28'
124+
__version__ = '1.3.5.post29'

pcapkit/const/reg/apptype.py

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4389,8 +4389,8 @@ def __hash__(self) -> 'int':
43894389
#: - [UDP] delta-mcp
43904390
delta_mcp: 'AppType' = 1324, 'delta-mcp', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
43914391

4392-
#: - [TCP] DX-Instrument
4393-
#: - [UDP] DX-Instrument
4392+
#: - [TCP] Thermo Fisher Scientific Instrumentation (Formally Dionex)
4393+
#: - [UDP] Thermo Fisher Scientific Instrumentation (Formally Dionex)
43944394
dx_instrument: 'AppType' = 1325, 'dx-instrument', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
43954395

43964396
#: - [TCP] WIMSIC
@@ -26048,6 +26048,13 @@ def __hash__(self) -> 'int':
2604826048
#: [UDP] bilobit Service Update
2604926049
bilobit_update: 'AppType' = 24577, 'bilobit-update', TransportProtocol.get('udp')
2605026050

26051+
#: [UDP] UDP-based IP-Layer Capacity and performance measurement protocol [RFC-
26052+
#: ietf-ippm-capacity-protocol-25]
26053+
udpstp: 'AppType' = 24601, 'udpstp', TransportProtocol.get('udp')
26054+
26055+
#: [TCP] Reserved
26056+
reserved_24601: 'AppType' = 24601, 'reserved', TransportProtocol.get('tcp')
26057+
2605126058
#: [TCP] Service used by SmarDTV to communicate between a CAM and a second
2605226059
#: screen application
2605326060
sdtvwcam: 'AppType' = 24666, 'sdtvwcam', TransportProtocol.get('tcp')
@@ -27045,9 +27052,9 @@ def __hash__(self) -> 'int':
2704527052
#: - [UDP] PCP server (pmcd)
2704627053
pmcd: 'AppType' = 44321, 'pmcd', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2704727054

27048-
#: - [TCP] PCP server (pmcd) proxy
27049-
#: - [UDP] PCP server (pmcd) proxy
27050-
pmcdproxy: 'AppType' = 44322, 'pmcdproxy', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
27055+
#: - [TCP] PCP proxy (pmproxy)
27056+
#: - [UDP] PCP proxy (pmproxy)
27057+
pmproxy: 'AppType' = 44322, 'pmproxy', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2705127058

2705227059
#: [TCP] HTTP binding for Performance Co-Pilot client API
2705327060
pmwebapi: 'AppType' = 44323, 'pmwebapi', TransportProtocol.get('tcp')
@@ -32335,7 +32342,10 @@ def _missing_(cls, value: 'int') -> 'AppType':
3233532342
if 24555 <= value <= 24576:
3233632343
#: [N/A] Unassigned
3233732344
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
32338-
if 24578 <= value <= 24665:
32345+
if 24578 <= value <= 24600:
32346+
#: [N/A] Unassigned
32347+
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
32348+
if 24602 <= value <= 24665:
3233932349
#: [N/A] Unassigned
3234032350
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3234132351
if 24667 <= value <= 24675:

0 commit comments

Comments
 (0)