Fix UPnP line endings (ref #211)

This commit is contained in:
Jakob Borg 2014-05-28 16:04:20 +02:00
parent 9c5c06bf31
commit 7c6fb018ca
1 changed files with 3 additions and 3 deletions

View File

@ -60,14 +60,14 @@ func Discover() (*IGD, error) {
return nil, err
}
search := []byte(`
M-SEARCH * HTTP/1.1
searchStr := `M-SEARCH * HTTP/1.1
Host: 239.255.255.250:1900
St: urn:schemas-upnp-org:device:InternetGatewayDevice:1
Man: "ssdp:discover"
Mx: 3
`)
`
search := []byte(strings.Replace(searchStr, "\n", "\r\n", -1))
_, err = socket.WriteTo(search, ssdp)
if err != nil {