quorum/vendor/github.com/huin/goupnp
Péter Szilágyi bad0de0dcb
vendor: pull in azure sdk and openpgp signer
2016-11-03 10:32:57 +02:00
..
dcps Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
httpu Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
scpd Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
soap Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
ssdp vendor: pull in azure sdk and openpgp signer 2016-11-03 10:32:57 +02:00
.gitignore Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
LICENSE Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
README.md Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
device.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
goupnp.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
service_client.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00

README.md

goupnp is a UPnP client library for Go

Installation

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

Documentation

All doc links below are for GoDoc.

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

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

Core components:

  • (goupnp) core library - contains datastructures and utilities typically used by the implemented DCPs.
  • httpu HTTPU implementation, underlies SSDP.
  • ssdp SSDP client implementation (simple service discovery protocol) - used to discover UPnP services on a network.
  • 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.