Godeps: upgrade github.com/huin/goupnp to 90f71cb5

This commit is contained in:
Felix Lange
2015-10-29 22:53:53 +01:00
parent fc46cf337a
commit bf11a47f22
16 changed files with 10233 additions and 2246 deletions

View File

@ -148,7 +148,12 @@ func discover(out chan<- *upnp, target string, matcher func(*goupnp.RootDevice,
return
}
// check for a matching IGD service
sc := goupnp.ServiceClient{service.NewSOAPClient(), devs[i].Root, service}
sc := goupnp.ServiceClient{
SOAPClient: service.NewSOAPClient(),
RootDevice: devs[i].Root,
Location: devs[i].Location,
Service: service,
}
sc.SOAPClient.HTTPClient.Timeout = soapRequestTimeout
upnp := matcher(devs[i].Root, sc)
if upnp == nil {