@@ -26212,6 +26212,12 @@ def __hash__(self) -> 'int':
26212
26212
#: [UDP] Reserved
26213
26213
reserved_27010: 'AppType' = 27010, 'reserved', TransportProtocol.get('udp')
26214
26214
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
+
26215
26221
#: [TCP] Mongo database system
26216
26222
mongodb: 'AppType' = 27017, 'mongodb', TransportProtocol.get('tcp')
26217
26223
@@ -27921,6 +27927,11 @@ def __hash__(self) -> 'int':
27921
27927
#: [TCP] The Bootstrapping Remote Secure Key Infrastructure Proxy [:rfc:`8995`]
27922
27928
brski_proxy: 'AppType' = -1, 'brski-proxy', TransportProtocol.get('tcp')
27923
27929
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
+
27924
27935
#: [TCP] The Bootstrapping Remote Secure Key Infrastructure Registrar
27925
27936
#: [:rfc:`8995`]
27926
27937
brski_registrar: 'AppType' = -1, 'brski-registrar', TransportProtocol.get('tcp')
@@ -32310,7 +32321,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
32310
32321
if 27000 <= value <= 27009:
32311
32322
#: [N/A] FLEX LM (1-10)
32312
32323
return extend_enum(cls, 'flex_lm_%d' % value, value, 'flex-lm', TransportProtocol.get('undefined'))
32313
- if 27011 <= value <= 27016 :
32324
+ if 27011 <= value <= 27015 :
32314
32325
#: [N/A] Unassigned
32315
32326
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
32316
32327
if 27018 <= value <= 27344:
0 commit comments