diff --git a/ChangeLog b/ChangeLog index e7d45c778b..d2a66f34a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-11-21 Sebastian Dröge + + Patch by: Zeeshan Ali + + * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_build_message): + Add transferMode.dnla.org header to HTTP requests as this is + required by the DLNA specs and doesn't hurt in other situations. + Fixes bug #561802. + 2008-11-20 Michael Smith * sys/osxvideo/osxvideosink.h: diff --git a/ext/soup/gstsouphttpsrc.c b/ext/soup/gstsouphttpsrc.c index cd993fe088..67219e06c5 100644 --- a/ext/soup/gstsouphttpsrc.c +++ b/ext/soup/gstsouphttpsrc.c @@ -940,6 +940,8 @@ gst_soup_http_src_build_message (GstSoupHTTPSrc * src) *cookie); } } + soup_message_headers_append (src->msg->request_headers, + "transferMode.dlna.org", "Streaming"); src->retry = FALSE; g_signal_connect (src->msg, "got_headers",