Skip to content

Commit 0a69636

Browse files
Bumped version to 1.3.5.post8
Updated vendor constant enumerations at Sat Feb 15 10:04:47 UTC 2025. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent 2625264 commit 0a69636

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

conda/build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3
1+
0

pcapkit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@
121121
]
122122

123123
#: version number
124-
__version__ = '1.3.5.post7'
124+
__version__ = '1.3.5.post8'

pcapkit/const/reg/apptype.py

+10-6
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@ def __hash__(self) -> 'int':
124124
#: - [UDP] TCP Port Service Multiplexer
125125
tcpmux: 'AppType' = 1, 'tcpmux', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
126126

127-
#: - [TCP] Management Utility
128-
#: - [UDP] Management Utility
129-
compressnet_2: 'AppType' = 2, 'compressnet', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
127+
#: - [TCP] Reserved
128+
#: - [UDP] Reserved
129+
reserved_2: 'AppType' = 2, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
130130

131-
#: - [TCP] Compression Process
132-
#: - [UDP] Compression Process
133-
compressnet_3: 'AppType' = 3, 'compressnet', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
131+
#: - [TCP] Reserved
132+
#: - [UDP] Reserved
133+
reserved_3: 'AppType' = 3, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
134134

135135
#: - [TCP] Unassigned
136136
#: - [UDP] Unassigned
@@ -28039,6 +28039,10 @@ def __hash__(self) -> 'int':
2803928039
#: [N/A] ElectraStar media centre control protocol
2804028040
com_ocs_es_mcc: 'AppType' = -1, 'com-ocs-es-mcc', TransportProtocol.get('undefined')
2804128041

28042+
#: - [TCP] Management Utility/Compression Process
28043+
#: - [UDP] Management Utility/Compression Process
28044+
compressnet: 'AppType' = -1, 'compressnet', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
28045+
2804228046
#: [UDP] DNS SRV service for smarthome server
2804328047
conecube: 'AppType' = -1, 'conecube', TransportProtocol.get('udp')
2804428048

0 commit comments

Comments
 (0)