Ver código fonte

Use ListenMulticastUDP for multicast sockets (potentially fixes #1113)

Audrius Butkevicius 11 anos atrás
pai
commit
41b1bd2f05
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      internal/upnp/upnp.go

+ 1 - 1
internal/upnp/upnp.go

@@ -158,7 +158,7 @@ Mx: %d
 	var results []IGD
 	resultChannel := make(chan IGD, 8)
 
-	socket, err := net.ListenUDP("udp4", &net.UDPAddr{})
+	socket, err := net.ListenMulticastUDP("udp4", nil, &net.UDPAddr{IP: ssdp.IP})
 	if err != nil {
 		l.Infoln(err)
 		return results