Crate upnp
A Rust crate providing basic Universal Plug and Play (UPnP) protocol implementations.
Implements the core protocols of the UPnP Device Architecture (UDA), specifically the discovery protocol for control points to search for, and devices to notify of, device and service availability.
UPnP technology allows devices to connect seamlessly and to simplify network implementation in the home and corporate environments — Open Connectivity Foundation.
API
The main client interface is the ssdp module that provides search and notify capabilities. Over time the scpd
module will be completed for the parsing and generation of device description messages. The following diagram shows the
basic structure of the library with the two API modules relying on implementations of HTTPMU/HTTPU and SOAP
respectively.
,--------, discover ,--------, advertise ,--------,
| |--------->| SSDP |<------------------| |
| Client | '--------' | Server |
| API | understand : ,--------, describe | API |
| |------------------>| SCPD |<---------| |
'--------' : '--------' '--------'
: :
: V
: ,--------,
: | SOAP |
: '--------'
: :
V :
,--------, :
| HTTPMU | :
'--------' :
: :
V V TCP/UDP
,---------------------------------------------------,
Command-Line
The command-line tool upnp can be used to perform basic operations using the SSDP API. Primarily these are used
for testing, but the search command can be used for general purpose discovery.
The general form of the command is network-options command command-options, as shown below.
interfacethis is the name of a local network interface such asen0.ip-versiondenotes that the client should only use IP version 4 or 6.search-targetdenotes the scope of the search, valid values areall,root,device:id,device-type:id, orservice-type:id,domaina domain to use for device/service types other than the defaultschemas-upnp-org.max-waitthe wait time for replies, sent to devices to prevent message flooding.
Changes
Version 0.1.0
- Ability to issue multicast non-caching search command, with parsed results.
- Ability to send multicast device notifications.
- Command-line tool
upnpto issue test commands.
TODO
- Finish parsing search results.
- Support listening for notifications.
- Support fetching device details.
- Support for sending notifications.