Fork github.com/huin/goupnp to add open-home support
Go to file
2015-06-06 12:29:56 +01:00
cmd update internetgateway1 example to build on go1.4 2014-12-11 12:44:49 -07:00
dcps Add support for discovery-free client creation in dcps packages. 2015-06-06 11:53:50 +01:00
example Fixes #9 - reacquire previously discovered device by URL. 2015-06-06 11:01:33 +01:00
gotasks Add support for discovery-free client creation in dcps packages. 2015-06-06 11:53:50 +01:00
httpu Minor corrections to error handling logic in httpu. 2014-06-08 09:19:48 +01:00
scpd Add SCPD.GetAction method. 2014-06-06 21:55:52 +01:00
soap soap: quote action names in header 2015-02-13 11:35:15 +01:00
ssdp Initial work on maintaining a registry of discovered devices. 2014-06-08 13:45:53 +01:00
device.go Small fixes and removals, update discoverigd.go. 2013-12-31 18:36:26 +00:00
goupnp.go Minor comment fix that could mislead. 2015-06-06 11:04:25 +01:00
LICENSE Discovery of IGD vaguely in place. Start of parsing device schema. 2013-09-26 23:11:06 +01:00
README.md Add godoc link to README.md. 2015-06-06 12:29:56 +01:00
service_client.go Add support for discovery-free client creation in dcps packages. 2015-06-06 11:53:50 +01:00

goupnp is a UPnP client library for Go

Installation

Run go get -u github.com/huin/goupnp.

Documentation

GoDoc

Regenerating dcps generated source code:

  1. Install gotasks: go get -u github.com/jingweno/gotask
  2. Change to the gotasks directory: cd gotasks
  3. Download UPnP specification data (if not done already): wget http://upnp.org/resources/upnpresources.zip
  4. Regenerate source code: gotask specgen -s upnpresources.zip -o ../dcps

Supporting additional UPnP devices and services:

Supporting additional services is, in the trivial case, simply a matter of adding the service to the dcpMetadataByDir whitelist in gotasks/specgen_task.go, regenerating the source code (see above), and committing that source code.

However, it would be helpful if anyone needing such a service could test the service against the service they have, and then reporting any trouble encountered as an issue on this project. If it just works, then please report at least minimal working functionality as an issue, and optionally contribute the metadata upstream.