miniupnp/minissdpd
Thomas Bernard cb3d0798aa minissdpd: validatecodelength 2015-09-10 15:32:25 +02:00
..
.gitignore minissdpd: validatecodelength 2015-09-10 15:32:25 +02:00
Changelog.txt add -f command line option to filter for a specific device type 2015-08-06 16:07:33 +02:00
LICENSE 2014 => 2015 2015-01-20 14:12:10 +01:00
Makefile minissdpd: validatecodelength 2015-09-10 15:32:25 +02:00
README minissdpd: added command 0 (version) 2015-08-06 15:20:30 +02:00
README.fr minissdpd: added command 0 (version) 2015-08-06 15:20:30 +02:00
VERSION minissdpd: Version 1.4 2015-08-06 15:20:39 +02:00
asyncsendto.c minissdpd: fix includes for old systems 2015-09-04 18:24:09 +02:00
asyncsendto.h minissdpd: clean up select(), fix non blocking write 2014-12-05 17:35:34 +01:00
codelength.h DECODELENGTH_READ 2015-07-15 18:11:27 +02:00
config.h minissdpd: Version 1.4 2015-08-06 15:20:39 +02:00
daemonize.c remove trailing whitespace from minissdpd 2012-02-29 17:52:48 -08:00
daemonize.h Rename all include guards to not clash with C99 (7.1.3 Reserved identifiers). 2012-09-20 17:52:51 -03:00
getifaddr.c minissdpd/getifaddr.c: fix strncpy() call 2015-07-16 17:15:36 +02:00
getifaddr.h minisspd: check that peer is from a LAN 2014-11-28 17:48:35 +01:00
getroute.c minissdpd: Fix compiler warning 2015-07-26 16:26:00 +03:00
getroute.h minisspd: check that peer is from a LAN 2014-11-28 17:48:35 +01:00
ifacewatch.c minissdpd: fix includes for old systems 2015-09-04 18:24:09 +02:00
ifacewatch.h minisspd: check that peer is from a LAN 2014-11-28 17:48:35 +01:00
listifaces.c fix realloc failure issues detected thanks to cppcheck 2015-02-08 10:23:22 +01:00
minissdpd.1 Replaced hyphens by minus in man pages 2011-10-09 17:50:09 +02:00
minissdpd.c add -f command line option to filter for a specific device type 2015-08-06 16:07:33 +02:00
minissdpd.init.d.script Update minissdpd.init.d.script 2015-05-18 15:53:17 -05:00
minissdpdtypes.h minisspd: check that peer is from a LAN 2014-11-28 17:48:35 +01:00
openssdpsocket.c minissdpd: disable multicast loop 2015-08-06 16:07:07 +02:00
openssdpsocket.h minissdpd: set multicast TTL to 2 by default and configurable 2015-07-21 17:40:51 +02:00
testcodelength.c remove unused argument warning 2012-05-08 23:11:02 +02:00
testminissdpd.c minissdpd: added command 0 (version) 2015-08-06 15:20:30 +02:00
testminissdpd.sh fix for GNU mktemp 2015-09-04 18:35:16 +02:00
upnputils.c minisspd: check that peer is from a LAN 2014-11-28 17:48:35 +01:00
upnputils.h minisspd: check that peer is from a LAN 2014-11-28 17:48:35 +01:00

README

 * MiniSSDPd - SSDP daemon

(c) Thomas Bernard
http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
https://github.com/miniupnp/miniupnp/

MiniSSDPd is a daemon that :
1 - keeps track of all UPnP devices announcing themselves on the network.
its database can be queried by local processes using a protocol based on
a unix socket. That enables local processes to quickly discover UPnP devices
without broadcasting SSDP message and waiting several seconds for a response.
2 - keeps a database of local UPnP devices hosted on the machine and
answering SSDP searchs on their behalf. It enables to run several UPnP devices,
like an IGD and a MediaServer, on the same machine.

to build, use GNU Make.


* protocol :

Connect to the unix socket.
Sent request, get response.
close unix socket connection.

* Request format :
1st byte : request type
           0 - version
           1 - type
           2 - USN (unique id)
           3 - everything
           4 - submit service (see below)
n bytes : string length : 1 byte if < 128 else the upper bit indicate that
one additional byte should be read, etc. (see codelength.h)
n bytes = string

Response format :

request type 0 (version) :
n bytes string length
n bytes = version string

request type 1 / 2 / 3 :
1st byte : number of services/devices
For each service/device :
URL :
  n bytes string length
  n bytes = Location string
ST:
  n bytes string length
  n bytes = type string
USN:
  n bytes string length
  n bytes = identifier string

request type 4 = submit service
1st byte  = 4
(k,n) bytes : length and string "ST" (service type)
(k,n) bytes : length and string "USN"
(k,n) bytes : length and string "Server"
(k,n) bytes : length and string "Location"
No answer