From: Jaroslav Kysela Date: Mon, 12 May 2014 15:20:19 +0000 (+0200) Subject: SAT>IP: Use any UDP port for the UPnP client responses X-Git-Tag: v4.1~2102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12c01ab8b441b61e56d312ceb45ee16c07e203f4;p=thirdparty%2Ftvheadend.git SAT>IP: Use any UDP port for the UPnP client responses --- diff --git a/src/upnp.c b/src/upnp.c index 849abbe02..4c9435c47 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;