summaryrefslogtreecommitdiff
path: root/server/connectionHTTP.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/connectionHTTP.c')
-rw-r--r--server/connectionHTTP.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/connectionHTTP.c b/server/connectionHTTP.c
index 26f6d1c..ac4763b 100644
--- a/server/connectionHTTP.c
+++ b/server/connectionHTTP.c
@@ -324,7 +324,8 @@ bool cConnectionHTTP::HttpResponse(int Code, bool Last, const char* ContentType,
if (rc)
rc = Respond("Connection: close")
&& Respond("Pragma: no-cache")
- && Respond("Cache-Control: no-cache");
+ && Respond("Cache-Control: no-cache")
+ && Respond("Server: VDR-%s / streamdev-server-%s", true, VDRVERSION, VERSION);
time_t t = time(NULL);
struct tm *gmt = gmtime(&t);