@@ -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