@@ -19846,6 +19846,11 @@ def __hash__(self) -> 'int':
19846
19846
#: [SCTP] Automatic Dependent Surveillance
19847
19847
ads_c: 'AppType' = 5913, 'ads-c', TransportProtocol.get('sctp')
19848
19848
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
+
19849
19854
#: - [TCP] Indy Application Server
19850
19855
#: - [UDP] Indy Application Server
19851
19856
indy: 'AppType' = 5963, 'indy', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -27599,6 +27604,14 @@ def __hash__(self) -> 'int':
27599
27604
#: - [UDP] Adam Hall network control and monitoring
27600
27605
adamhall: 'AppType' = -1, 'adamhall', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
27601
27606
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
+
27602
27615
#: [N/A] Address-O-Matic
27603
27616
addressbook: 'AppType' = -1, 'addressbook', TransportProtocol.get('undefined')
27604
27617
@@ -28485,6 +28498,9 @@ def __hash__(self) -> 'int':
28485
28498
#: [TCP] Protocol for home hub communication
28486
28499
homekit: 'AppType' = -1, 'homekit', TransportProtocol.get('tcp')
28487
28500
28501
+ #: [TCP] HomeWizard Local API
28502
+ homewizard: 'AppType' = -1, 'homewizard', TransportProtocol.get('tcp')
28503
+
28488
28504
#: [UDP] Honeywell Video Systems
28489
28505
honeywell_vid: 'AppType' = -1, 'honeywell-vid', TransportProtocol.get('udp')
28490
28506
@@ -30839,7 +30855,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
30839
30855
if 5901 <= value <= 5902:
30840
30856
#: [N/A] Unassigned
30841
30857
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
30842
- if 5914 <= value <= 5962:
30858
+ if 5915 <= value <= 5962:
30843
30859
#: [N/A] Unassigned
30844
30860
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
30845
30861
if 5964 <= value <= 5967:
0 commit comments