status-go/vendor/github.com/huin/goupnp
Richard Ramos bade0a24ff
chore: bump go-waku (#2404)
2021-10-19 09:43:41 -04:00
..
dcps chore: bump go-waku (#2404) 2021-10-19 09:43:41 -04:00
httpu Upgrade go-ens 2021-07-20 10:57:38 +02:00
scpd Initial refactoring + vendor update (after rebase) 2016-09-15 06:12:25 +03:00
soap chore: bump go-waku (#2404) 2021-10-19 09:43:41 -04:00
ssdp Upgrade to london signer and cleanup 2021-07-20 10:57:38 +02:00
.gitignore migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
GUIDE.md Upgrade go-ens 2021-07-20 10:57:38 +02:00
LICENSE migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
README.md Upgrade to london signer and cleanup 2021-07-20 10:57:38 +02:00
device.go migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
go.mod Upgrade to london signer and cleanup 2021-07-20 10:57:38 +02:00
go.sum Upgrade to london signer and cleanup 2021-07-20 10:57:38 +02:00
goupnp.go Upgrade to london signer and cleanup 2021-07-20 10:57:38 +02:00
goupnp.sublime-project migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
network.go Upgrade go-ens 2021-07-20 10:57:38 +02:00
service_client.go Initial refactoring + vendor update (after rebase) 2016-09-15 06:12:25 +03:00

README.md

goupnp is a UPnP client library for Go

Installation

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

Documentation

See GUIDE.md for a quick start on the most common use case for this library.

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.

Migrating due to Breaking Changes

  • #40 introduced a breaking change to handling non-utf8 encodings, but removes a heavy dependency on golang.org/x/net with charset encodings. If this breaks your usage of this library, you can return to the old behavior by modifying the exported variable and importing the package yourself:
import (
  "golang.org/x/net/html/charset"
  "github.com/huin/goupnp"
)

func init() {
  // should be modified before goupnp libraries are in use.
  goupnp.CharsetReaderFault = charset.NewReaderLabel
}