@@ -16353,9 +16353,9 @@ def __hash__(self) -> 'int':
1635316353 #: [N/A] Unassigned
1635416354 unassigned_4318: 'AppType' = 4318, 'unassigned', TransportProtocol.get('undefined')
1635516355
16356- #: - [TCP] Fox SkyTale encrypted communication
16357- #: - [UDP] Fox SkyTale encrypted communication
16358- fox_skytale : 'AppType' = 4319, 'fox- skytale', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
16356+ #: - [TCP] Sentyron SkyTale encrypted communication
16357+ #: - [UDP] Sentyron SkyTale encrypted communication
16358+ skytale : 'AppType' = 4319, 'skytale', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
1635916359
1636016360 #: - [TCP] FDT Remote Categorization Protocol
1636116361 #: - [UDP] FDT Remote Categorization Protocol
@@ -24251,6 +24251,13 @@ def __hash__(self) -> 'int':
2425124251 #: [UDP] Reserved
2425224252 reserved_9981: 'AppType' = 9981, 'reserved', TransportProtocol.get('udp')
2425324253
24254+ #: [TCP] KAOS secure message transport protocol for safety-critical
24255+ #: environments
24256+ kaostransport: 'AppType' = 9986, 'kaostransport', TransportProtocol.get('tcp')
24257+
24258+ #: [UDP] Reserved
24259+ reserved_9986: 'AppType' = 9986, 'reserved', TransportProtocol.get('udp')
24260+
2425424261 #: - [TCP] DSM/SCM Target Interface
2425524262 #: - [UDP] DSM/SCM Target Interface
2425624263 dsm_scm_target: 'AppType' = 9987, 'dsm-scm-target', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -31786,7 +31793,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
3178631793 if 9967 <= value <= 9977:
3178731794 #: [N/A] Unassigned
3178831795 return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
31789- if 9982 <= value <= 9986 :
31796+ if 9982 <= value <= 9985 :
3179031797 #: [N/A] Unassigned
3179131798 return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3179231799 if 9989 <= value <= 9989:
0 commit comments