Skip to content

Commit

Permalink
Bumped version to 1.3.1.post19
Browse files Browse the repository at this point in the history
Updated vendor constant enumerations at Sat Jul  6 10:05:39 UTC 2024. The following files
have been changed: pcapkit/const/reg/apptype.py
  • Loading branch information
github-actions[bot] committed Jul 6, 2024
1 parent ee5230e commit 3122f8d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda/build
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
0
2 changes: 1 addition & 1 deletion pcapkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@
]

#: version number
__version__ = '1.3.1.post18'
__version__ = '1.3.1.post19'
12 changes: 9 additions & 3 deletions pcapkit/const/reg/apptype.py
Original file line number Diff line number Diff line change
Expand Up @@ -20312,6 +20312,15 @@ def __hash__(self) -> 'int':
#: [UDP] Navtech Radar Sensor Data
nav_data: 'AppType' = 6317, 'nav-data', TransportProtocol.get('udp')

#: [TCP] IONA Measurement and control data
iona_data: 'AppType' = 6318, 'iona-data', TransportProtocol.get('tcp')

#: [UDP] Reserved
reserved_6318: 'AppType' = 6318, 'reserved', TransportProtocol.get('udp')

#: [N/A] Unassigned
unassigned_6319: 'AppType' = 6319, 'unassigned', TransportProtocol.get('undefined')

#: - [TCP] Double-Take Replication Service
#: - [UDP] Double-Take Replication Service
repsvc: 'AppType' = 6320, 'repsvc', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
Expand Down Expand Up @@ -30873,9 +30882,6 @@ def _missing_(cls, value: 'int') -> 'AppType':
if 6307 <= value <= 6314:
#: [N/A] Unassigned
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
if 6318 <= value <= 6319:
#: [N/A] Unassigned
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
if 6327 <= value <= 6342:
#: [N/A] Unassigned
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
Expand Down

0 comments on commit 3122f8d

Please sign in to comment.