From 12c01ab8b441b61e56d312ceb45ee16c07e203f4 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 12 May 2014 17:20:19 +0200 Subject: [PATCH] SAT>IP: Use any UDP port for the UPnP client responses --- src/upnp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/upnp.c b/src/upnp.c index 849abbe0..4c9435c4 100644 --- a/src/upnp.c +++ b/src/upnp.c @@ -118,7 +118,7 @@ upnp_thread( void *aux ) NULL, 32*1024); if (multicast == NULL || multicast == UDP_FATAL_ERROR) goto error; - unicast = udp_bind("upnp", "upnp_thread_unicast", bindaddr, 1900, + unicast = udp_bind("upnp", "upnp_thread_unicast", bindaddr, 0, NULL, 32*1024); if (unicast == NULL || unicast == UDP_FATAL_ERROR) goto error;