1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

Fix: Corrected response and fixed TLS for 416 Request Range Not Satisfiable responses

This commit is contained in:
Philipp Schafft 2018-04-21 10:25:44 +00:00
parent be407ebbc7
commit 514e825a81

View File

@ -636,10 +636,7 @@ int fserve_client_create (client_t *httpclient, const char *path)
fail: fail:
fclose (file); fclose (file);
httpclient->respcode = 416; client_send_error(httpclient, 416, 1, "Request Range Not Satisfiable\r\n");
sock_write (httpclient->con->sock,
"HTTP/1.0 416 Request Range Not Satisfiable\r\n\r\n");
client_destroy (httpclient);
return -1; return -1;
} }