Seems that searching for a service also works.

This commit is contained in:
John Beisley 2013-09-29 16:15:35 +01:00
parent 33980ebacf
commit 61577bd15b
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ func displayDevice(indent indentLevel, device *goupnp.Device) {
}
func main() {
if results, err := goupnp.DiscoverDevices(goupnp.DeviceTypeInternetGatewayDevice); err != nil {
if results, err := goupnp.DiscoverDevices(goupnp.ServiceTypeWANPPPConnection); err != nil {
fmt.Println("Error discovering InternetGatewayDevice with UPnP: ", err)
} else {
fmt.Printf("Discovered %d InternetGatewayDevices:\n", len(results))

View File

@ -40,9 +40,9 @@ type MaybeRootDevice struct {
}
// DiscoverDevices attempts to find targets of the given type. searchTarget is
// typically a value from a DeviceType* constant. An error is returned for
// errors while attempting to send the query. An error or RootDevice is
// returned for each discovered service.
// typically a value from a DeviceType* or ServiceType* constant. An error is
// returned for errors while attempting to send the query. An error or
// RootDevice is returned for each discovered service.
func DiscoverDevices(searchTarget string) ([]MaybeRootDevice, error) {
httpu, err := NewHTTPUClient()
if err != nil {