Fork github.com/huin/goupnp to add open-home support
Go to file
2017-11-05 13:50:25 +00:00
cmd Make the SSDP registry minimally useful. 2015-06-07 12:28:34 +01:00
dcps Remove spurious spaces from between req/resp struct members in generated code. 2017-11-05 13:50:25 +00:00
example Add another example showing getting byte transfer counts on igd2. 2015-12-09 21:46:17 +00:00
gotasks Remove spurious spaces from between req/resp struct members in generated code. 2017-11-05 13:50:25 +00:00
httpu Fix error logging 2017-08-02 21:13:32 +01:00
scpd Add SCPD.GetAction method. 2014-06-06 21:55:52 +01:00
soap Fix uint out of value parsing for > 4 GiB traffic usage 2017-10-04 08:55:00 +01:00
ssdp Disable verbose logging of unexpected ssdp responses (#15) 2017-05-11 19:19:13 +01:00
.gitignore Update specgen to download DCP XML specs and process them individually. 2015-06-07 09:02:49 +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 Update email address. 2017-08-03 10:08:12 +01:00
README.md Reformat part of README to improve GoDoc links. 2016-12-24 10:40:35 +00: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

Supported DCPs (you probably want to start with one of these):

  • GoDoc av1 - Client for UPnP Device Control Protocol MediaServer v1 and MediaRenderer v1.
  • GoDoc internetgateway1 - Client for UPnP Device Control Protocol Internet Gateway Device v1.
  • GoDoc internetgateway2 - Client for UPnP Device Control Protocol Internet Gateway Device v2.

Core components:

  • GoDoc (goupnp) core library - contains datastructures and utilities typically used by the implemented DCPs.
  • GoDoc httpu HTTPU implementation, underlies SSDP.
  • GoDoc ssdp SSDP client implementation (simple service discovery protocol) - used to discover UPnP services on a network.
  • GoDoc soap SOAP client implementation (simple object access protocol) - used to communicate with discovered services.

Regenerating dcps generated source code:

  1. Install gotasks: go get -u github.com/jingweno/gotask
  2. Change to the gotasks directory: cd gotasks
  3. Run specgen task: gotask specgen

Supporting additional UPnP devices and services:

Supporting additional services is, in the trivial case, simply a matter of adding the service to the dcpMetadata 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.