Skip to content

Commit 42f8e9b

Browse files
Bumped version to 1.3.1.post21
Updated vendor constant enumerations at Sat Aug 17 10:05:33 UTC 2024. The following files have been changed: pcapkit/const/ipx/socket.py pcapkit/const/reg/apptype.py
1 parent 242a916 commit 42f8e9b

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
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
@@ -123,4 +123,4 @@
123123
]
124124

125125
#: version number
126-
__version__ = '1.3.1.post20'
126+
__version__ = '1.3.1.post21'

pcapkit/const/ipx/socket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Socket(IntEnum):
4848
#: Used by Novell NetWare Client
4949
Used_by_Novell_NetWare_Client = 0x4003
5050

51-
#: LLC [4]
51+
#: LLC [ 4 ]
5252
LLC_4 = 0x8060
5353

5454
#: TCP over IPXF

pcapkit/const/reg/apptype.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21836,6 +21836,12 @@ def __hash__(self) -> 'int':
2183621836
#: [UDP] Oracle Coherence Cluster discovery service
2183721837
coherence_disc: 'AppType' = 7574, 'coherence-disc', TransportProtocol.get('udp')
2183821838

21839+
#: [TCP] Main access port for WTMI Panel
21840+
wtmi_panel: 'AppType' = 7575, 'wtmi-panel', TransportProtocol.get('tcp')
21841+
21842+
#: [UDP] Reserved
21843+
reserved_7575: 'AppType' = 7575, 'reserved', TransportProtocol.get('udp')
21844+
2183921845
#: - [TCP] Sun License Manager
2184021846
#: - [UDP] Sun License Manager
2184121847
sun_lm: 'AppType' = 7588, 'sun-lm', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -31173,7 +31179,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
3117331179
if 7571 <= value <= 7573:
3117431180
#: [N/A] Unassigned
3117531181
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
31176-
if 7575 <= value <= 7587:
31182+
if 7576 <= value <= 7587:
3117731183
#: [N/A] Unassigned
3117831184
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3117931185
if 7589 <= value <= 7605:

0 commit comments

Comments
 (0)