mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-26 15:15:57 -05:00
Remote pairing wants IPv4 only from mDNS
The pairing process only listens on IPv4 at the moment.
This commit is contained in:
parent
e08c42b3c0
commit
4868a3946f
@ -899,7 +899,7 @@ remote_pairing_init(void)
|
||||
# endif
|
||||
#endif /* USE_EVENTFD */
|
||||
|
||||
ret = mdns_browse("_touch-remote._tcp", 0, touch_remote_cb);
|
||||
ret = mdns_browse("_touch-remote._tcp", MDNS_WANT_V4, touch_remote_cb);
|
||||
if (ret < 0)
|
||||
{
|
||||
DPRINTF(E_FATAL, L_REMOTE, "Could not browse for Remote services\n");
|
||||
|
Loading…
Reference in New Issue
Block a user