Merge pull request #1161 from AudriusButkevicius/upnp2

Use ListenMulticastUDP for multicast sockets (potentially fixes #1113)
This commit is contained in:
Jakob Borg 2014-12-31 12:53:56 +01:00
commit e6318bddf3
1 changed files with 1 additions and 1 deletions

View File

@ -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