Skip to content

Commit 697715c

Browse files
Bumped version to 1.3.1.post26
Updated vendor constant enumerations at Sat Sep 28 10:05:08 UTC 2024. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent 55cf29e commit 697715c

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
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.post25'
126+
__version__ = '1.3.1.post26'

pcapkit/const/reg/apptype.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26212,6 +26212,12 @@ def __hash__(self) -> 'int':
2621226212
#: [UDP] Reserved
2621326213
reserved_27010: 'AppType' = 27010, 'reserved', TransportProtocol.get('udp')
2621426214

26215+
#: [TCP] Cloud hosting environment network
26216+
chlenix: 'AppType' = 27016, 'chlenix', TransportProtocol.get('tcp')
26217+
26218+
#: [UDP] Reserved
26219+
reserved_27016: 'AppType' = 27016, 'reserved', TransportProtocol.get('udp')
26220+
2621526221
#: [TCP] Mongo database system
2621626222
mongodb: 'AppType' = 27017, 'mongodb', TransportProtocol.get('tcp')
2621726223

@@ -27921,6 +27927,11 @@ def __hash__(self) -> 'int':
2792127927
#: [TCP] The Bootstrapping Remote Secure Key Infrastructure Proxy [:rfc:`8995`]
2792227928
brski_proxy: 'AppType' = -1, 'brski-proxy', TransportProtocol.get('tcp')
2792327929

27930+
#: [TCP] Bootstrapping Remote Secure Key Infrastructure registrar with CMP
27931+
#: capabilities according to the Lightweight CMP Profile (LCMPP, [RFC9483])
27932+
#: [RFC-ietf-anima-brski-ae-13]
27933+
brski_reg_cmp: 'AppType' = -1, 'brski-reg-cmp', TransportProtocol.get('tcp')
27934+
2792427935
#: [TCP] The Bootstrapping Remote Secure Key Infrastructure Registrar
2792527936
#: [:rfc:`8995`]
2792627937
brski_registrar: 'AppType' = -1, 'brski-registrar', TransportProtocol.get('tcp')
@@ -32310,7 +32321,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
3231032321
if 27000 <= value <= 27009:
3231132322
#: [N/A] FLEX LM (1-10)
3231232323
return extend_enum(cls, 'flex_lm_%d' % value, value, 'flex-lm', TransportProtocol.get('undefined'))
32313-
if 27011 <= value <= 27016:
32324+
if 27011 <= value <= 27015:
3231432325
#: [N/A] Unassigned
3231532326
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3231632327
if 27018 <= value <= 27344:

0 commit comments

Comments
 (0)