Skip to content

Commit

Permalink
Bumped version to 1.3.1.dev5
Browse files Browse the repository at this point in the history
Updated vendor constant enumerations at Sat Dec  9 10:09:46 UTC 2023. The following files
have been changed: pcapkit/const/reg/apptype.py
  • Loading branch information
github-actions[bot] committed Dec 9, 2023
1 parent 326ed1f commit ef5d202
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conda/build
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4
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.dev4'
__version__ = '1.3.1.dev5'
18 changes: 13 additions & 5 deletions pcapkit/const/reg/apptype.py
Original file line number Diff line number Diff line change
Expand Up @@ -24467,11 +24467,9 @@ def __hash__(self) -> 'int':
#: - [UDP] Blocks
blocks: 'AppType' = 10288, 'blocks', TransportProtocol.get('tcp') | TransportProtocol.get('udp')

#: [TCP] Computer Op System Information Report
cosir: 'AppType' = 10321, 'cosir', TransportProtocol.get('tcp')

#: [UDP] Reserved
reserved_10321: 'AppType' = 10321, 'reserved', TransportProtocol.get('udp')
#: - [TCP] Reserved
#: - [UDP] Reserved
reserved_10321: 'AppType' = 10321, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')

#: [UDP] BalanceNG session table synchronization protocol
bngsync: 'AppType' = 10439, 'bngsync', TransportProtocol.get('udp')
Expand Down Expand Up @@ -27832,6 +27830,10 @@ def __hash__(self) -> 'int':
#: [N/A] Big Bang Mancala
bigbangmancala: 'AppType' = -1, 'bigbangmancala', TransportProtocol.get('undefined')

#: - [TCP] BioSonics Echosounders
#: - [UDP] BioSonics Echosounders
biosonics: 'AppType' = -1, 'biosonics', TransportProtocol.get('tcp') | TransportProtocol.get('udp')

#: [TCP] Data transfer service
bitflit: 'AppType' = -1, 'bitflit', TransportProtocol.get('tcp')

Expand Down Expand Up @@ -28005,6 +28007,9 @@ def __hash__(self) -> 'int':
#: [N/A] Corroboree Server
corroboree: 'AppType' = -1, 'corroboree', TransportProtocol.get('undefined')

#: [TCP] Computer Op System Information Report
cosir: 'AppType' = -1, 'cosir', TransportProtocol.get('tcp')

#: - [TCP] Service for coviot branded devices
#: - [UDP] Service for coviot branded devices
coviot: 'AppType' = -1, 'coviot', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
Expand Down Expand Up @@ -30021,6 +30026,9 @@ def __hash__(self) -> 'int':
#: [TCP] Vogel's TV mount control
tvm: 'AppType' = -1, 'tvm', TransportProtocol.get('tcp')

#: [TCP] Discovery for Twiline systems
twiline_disc: 'AppType' = -1, 'twiline-disc', TransportProtocol.get('tcp')

#: [TCP] detect sanitary product
twinlevel: 'AppType' = -1, 'twinlevel', TransportProtocol.get('tcp')

Expand Down

0 comments on commit ef5d202

Please sign in to comment.