Skip to content

Commit

Permalink
Bumped version to 1.3.1.dev2
Browse files Browse the repository at this point in the history
Updated vendor constant enumerations at Sat Oct 28 10:11:35 UTC 2023. The following files
have been changed: pcapkit/const/reg/apptype.py
  • Loading branch information
github-actions[bot] committed Oct 28, 2023
1 parent 928ffdb commit 655dd27
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conda/build
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1
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.dev1'
__version__ = '1.3.1.dev2'
11 changes: 10 additions & 1 deletion pcapkit/const/reg/apptype.py
Original file line number Diff line number Diff line change
Expand Up @@ -23047,6 +23047,15 @@ def __hash__(self) -> 'int':
#: [UDP] Reserved
reserved_8666: 'AppType' = 8666, 'reserved', TransportProtocol.get('udp')

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

#: [TCP] Spartan management
spartan: 'AppType' = 8668, 'spartan', TransportProtocol.get('tcp')

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

#: [TCP] Motorola Solutions Customer Programming Software for Radio Management
msi_cps_rm: 'AppType' = 8675, 'msi-cps-rm', TransportProtocol.get('tcp')

Expand Down Expand Up @@ -31365,7 +31374,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
if 8616 <= value <= 8664:
#: [N/A] Unassigned
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
if 8667 <= value <= 8674:
if 8669 <= value <= 8674:
#: [N/A] Unassigned
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
if 8676 <= value <= 8685:
Expand Down

0 comments on commit 655dd27

Please sign in to comment.