Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Maggard <jmaggard@users.sourceforce.net>2011-04-14 02:25:02 +0400
committerJustin Maggard <jmaggard@users.sourceforce.net>2011-04-14 02:25:02 +0400
commit5c6f4c20e253a946bd1d1be075d0717e0aeaba76 (patch)
tree332a4d1bf199a92812bb932b0ba3a39a9931b272 /upnphttp.c
parent72b986a539dbfc0944769b12a5cfbc6d7d88d93d (diff)
* Rework the Sony video support hacks by using multiple res elements.
* Throw in some extra Toshiba Regza support while we're at it.
Diffstat (limited to 'upnphttp.c')
-rw-r--r--upnphttp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/upnphttp.c b/upnphttp.c
index e437507..029041c 100644
--- a/upnphttp.c
+++ b/upnphttp.c
@@ -314,6 +314,11 @@ intervening space) by either an integer or the keyword "infinite". */
h->req_client = EMediaRoom;
h->reqflags |= FLAG_MS_PFS;
}
+ else if(strstrc(p, "UPnP/1.0 DLNADOC/1.50 Intel_SDK_for_UPnP_devices/1.2", '\r'))
+ {
+ h->req_client = EToshibaTV;
+ h->reqflags |= FLAG_DLNA;
+ }
else if(strstrc(p, "DLNADOC/1.50", '\r'))
{
h->req_client = EStandardDLNA150;