@@ -19846,6 +19846,11 @@ def __hash__(self) -> 'int':
1984619846 #: [SCTP] Automatic Dependent Surveillance
1984719847 ads_c: 'AppType' = 5913, 'ads-c', TransportProtocol.get('sctp')
1984819848
19849+ #: - [TCP] Security for Internet Protocol Suite
19850+ #: - [UDP] Security for Internet Protocol Suite
19851+ #: - [SCTP] Security for Internet Protocol Suite
19852+ ipsdtls: 'AppType' = 5914, 'ipsdtls', TransportProtocol.get('tcp') | TransportProtocol.get('udp') | TransportProtocol.get('sctp')
19853+
1984919854 #: - [TCP] Indy Application Server
1985019855 #: - [UDP] Indy Application Server
1985119856 indy: 'AppType' = 5963, 'indy', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -27599,6 +27604,14 @@ def __hash__(self) -> 'int':
2759927604 #: - [UDP] Adam Hall network control and monitoring
2760027605 adamhall: 'AppType' = -1, 'adamhall', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2760127606
27607+ #: - [TCP] ARN (Adaptive Routing Notification) is a protocol designed to enable
27608+ #: dynamic routing adjustments by sharing network status information between
27609+ #: nodes in data center networks, improving efficiency and fault tolerance.
27610+ #: - [UDP] ARN (Adaptive Routing Notification) is a protocol designed to enable
27611+ #: dynamic routing adjustments by sharing network status information between
27612+ #: nodes in data center networks, improving efficiency and fault tolerance.
27613+ adaptive_rn: 'AppType' = -1, 'adaptive-rn', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
27614+
2760227615 #: [N/A] Address-O-Matic
2760327616 addressbook: 'AppType' = -1, 'addressbook', TransportProtocol.get('undefined')
2760427617
@@ -28485,6 +28498,9 @@ def __hash__(self) -> 'int':
2848528498 #: [TCP] Protocol for home hub communication
2848628499 homekit: 'AppType' = -1, 'homekit', TransportProtocol.get('tcp')
2848728500
28501+ #: [TCP] HomeWizard Local API
28502+ homewizard: 'AppType' = -1, 'homewizard', TransportProtocol.get('tcp')
28503+
2848828504 #: [UDP] Honeywell Video Systems
2848928505 honeywell_vid: 'AppType' = -1, 'honeywell-vid', TransportProtocol.get('udp')
2849028506
@@ -30839,7 +30855,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
3083930855 if 5901 <= value <= 5902:
3084030856 #: [N/A] Unassigned
3084130857 return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
30842- if 5914 <= value <= 5962:
30858+ if 5915 <= value <= 5962:
3084330859 #: [N/A] Unassigned
3084430860 return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3084530861 if 5964 <= value <= 5967:
0 commit comments