Fork github.com/huin/goupnp to add open-home support
Go to file
2020-05-10 09:48:28 +01:00
cmd Fix minor bug in how errors are displayed in codegen. 2020-05-10 09:48:28 +01:00
dcps Switch to generate code with go generate. 2018-10-13 15:04:17 +01:00
example Add another example showing getting byte transfer counts on igd2. 2015-12-09 21:46:17 +00:00
httpu Clarify code in HTTPUClient.Do. 2018-04-15 22:51:57 +01:00
scpd Add SCPD.GetAction method. 2014-06-06 21:55:52 +01:00
soap Fix formatting of an error message. 2018-03-04 21:56:41 +00:00
ssdp Allow SSDP search results from inexact searches. 2018-03-15 19:13:24 +00:00
.gitignore Switch to generate code with go generate. 2018-10-13 15:04:17 +01:00
device.go Add correct spelling for RequestSCPD, mentioned in issue #23. 2018-03-04 21:55:55 +00:00
go.mod Bump go.mod to 1.14. 2020-05-10 09:48:02 +01:00
go.sum Switch to generate code with go generate. 2018-10-13 15:04:17 +01:00
goupnp.go Minor comment fix that could mislead. 2015-06-06 11:04:25 +01:00
goupnp.sublime-project Add Sublime Text project file. 2018-10-13 13:37:27 +01:00
LICENSE Update email address. 2017-08-03 10:08:12 +01:00
README.md Switch to generate code with go generate. 2018-10-13 15:04:17 +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

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. Build code generator:

    go get -u github.com/huin/goupnp/cmd/goupnpdcpgen

  2. Regenerate the code:

    go generate ./...

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 cmd/goupnpdcpgen/metadata.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.