mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
Fixed always using priority 0 for HTTP HEAD requests
This commit is contained in:
parent
b614fa0ec3
commit
e7bcc9349c
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- Fixed always using priority 0 for HTTP HEAD requests
|
||||||
- Start writer right after creating it
|
- Start writer right after creating it
|
||||||
- Corrected typos (thanks to Ville Skyttä)
|
- Corrected typos (thanks to Ville Skyttä)
|
||||||
- Fixed compiler error in client/device.c with VDR < 1.7.22 (reported by
|
- Fixed compiler error in client/device.c with VDR < 1.7.22 (reported by
|
||||||
|
@ -192,7 +192,7 @@ bool cConnectionHTTP::ProcessRequest(void)
|
|||||||
if (m_ChannelList)
|
if (m_ChannelList)
|
||||||
return Respond("%s", true, m_ChannelList->HttpHeader().c_str());
|
return Respond("%s", true, m_ChannelList->HttpHeader().c_str());
|
||||||
else if (m_Channel != NULL) {
|
else if (m_Channel != NULL) {
|
||||||
if (ProvidesChannel(m_Channel, 0)) {
|
if (ProvidesChannel(m_Channel, StreamdevServerSetup.HTTPPriority)) {
|
||||||
if (m_StreamType == stEXT) {
|
if (m_StreamType == stEXT) {
|
||||||
// TODO
|
// TODO
|
||||||
return Respond("HTTP/1.0 200 OK")
|
return Respond("HTTP/1.0 200 OK")
|
||||||
|
Loading…
Reference in New Issue
Block a user