Skip to content

Commit 3122f8d

Browse files
Bumped version to 1.3.1.post19
Updated vendor constant enumerations at Sat Jul 6 10:05:39 UTC 2024. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent ee5230e commit 3122f8d

File tree

3 files changed

+11
-5
lines changed

3 files changed

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

125125
#: version number
126-
__version__ = '1.3.1.post18'
126+
__version__ = '1.3.1.post19'

pcapkit/const/reg/apptype.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20312,6 +20312,15 @@ def __hash__(self) -> 'int':
2031220312
#: [UDP] Navtech Radar Sensor Data
2031320313
nav_data: 'AppType' = 6317, 'nav-data', TransportProtocol.get('udp')
2031420314

20315+
#: [TCP] IONA Measurement and control data
20316+
iona_data: 'AppType' = 6318, 'iona-data', TransportProtocol.get('tcp')
20317+
20318+
#: [UDP] Reserved
20319+
reserved_6318: 'AppType' = 6318, 'reserved', TransportProtocol.get('udp')
20320+
20321+
#: [N/A] Unassigned
20322+
unassigned_6319: 'AppType' = 6319, 'unassigned', TransportProtocol.get('undefined')
20323+
2031520324
#: - [TCP] Double-Take Replication Service
2031620325
#: - [UDP] Double-Take Replication Service
2031720326
repsvc: 'AppType' = 6320, 'repsvc', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -30873,9 +30882,6 @@ def _missing_(cls, value: 'int') -> 'AppType':
3087330882
if 6307 <= value <= 6314:
3087430883
#: [N/A] Unassigned
3087530884
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
30876-
if 6318 <= value <= 6319:
30877-
#: [N/A] Unassigned
30878-
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3087930885
if 6327 <= value <= 6342:
3088030886
#: [N/A] Unassigned
3088130887
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))

0 commit comments

Comments
 (0)