Skip to content

Commit f915de3

Browse files
authoredMar 15, 2025··
Add IPv6 support to the reconnect logic zeroconf listener (#1121)
1 parent 3dd285a commit f915de3

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed
 

‎aioesphomeapi/reconnect_logic.py

+12-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
from typing import Callable
99

1010
import zeroconf
11-
from zeroconf.const import _TYPE_A as TYPE_A, _TYPE_PTR as TYPE_PTR
11+
from zeroconf.const import (
12+
_TYPE_A as TYPE_A,
13+
_TYPE_AAAA as TYPE_AAAA,
14+
_TYPE_PTR as TYPE_PTR,
15+
)
1216

1317
from .client import APIClient
1418
from .core import (
@@ -23,6 +27,8 @@
2327

2428
_LOGGER = logging.getLogger(__name__)
2529

30+
ADDRESS_RECORD_TYPES = {TYPE_A, TYPE_AAAA}
31+
2632
EXPECTED_DISCONNECT_COOLDOWN = 5.0
2733
MAXIMUM_BACKOFF_TRIES = 100
2834

@@ -398,11 +404,14 @@ def async_update_records(
398404
return
399405

400406
for record_update in records:
401-
# We only consider PTR records and match using the alias name
407+
# We only consider A, AAAA, and PTR records and match using the alias name
402408
new_record = record_update.new
403409
if not (
404410
(new_record.type == TYPE_PTR and new_record.alias == self._ptr_alias) # type: ignore[attr-defined]
405-
or (new_record.type == TYPE_A and new_record.name == self._a_name)
411+
or (
412+
new_record.type in ADDRESS_RECORD_TYPES
413+
and new_record.name == self._a_name
414+
)
406415
):
407416
continue
408417

‎tests/test_reconnect_logic.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
current_time_millis,
1717
)
1818
from zeroconf.asyncio import AsyncZeroconf
19-
from zeroconf.const import _CLASS_IN, _TYPE_A, _TYPE_PTR
19+
from zeroconf.const import _CLASS_IN, _TYPE_A, _TYPE_AAAA, _TYPE_PTR
2020

2121
from aioesphomeapi import APIConnectionError, RequiresEncryptionAPIError
2222
from aioesphomeapi._frame_helper.plain_text import APIPlaintextFrameHelper
@@ -378,6 +378,18 @@ async def on_connect_fail(connect_exception: Exception) -> None:
378378
ReconnectLogicState.READY,
379379
"received mDNS record",
380380
),
381+
(
382+
DNSAddress(
383+
"mydevice.local.",
384+
_TYPE_AAAA,
385+
_CLASS_IN,
386+
1000,
387+
ip_address("::1").packed,
388+
),
389+
True,
390+
ReconnectLogicState.READY,
391+
"received mDNS record",
392+
),
381393
),
382394
)
383395
@pytest.mark.asyncio

0 commit comments

Comments
 (0)
Please sign in to comment.