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:29:44 +00:00
parent 7c51a3aae7
commit a0ab967fb9
3 changed files with 3 additions and 5 deletions

View File

@ -183,7 +183,7 @@ int client_read_bytes (client_t *client, void *buf, unsigned len)
return bytes;
}
static void client_send_error(client_t *client, int status, int plain, const char *message)
void client_send_error(client_t *client, int status, int plain, const char *message)
{
ssize_t ret;

View File

@ -80,5 +80,6 @@ int client_send_bytes (client_t *client, const void *buf, unsigned len);
int client_read_bytes (client_t *client, void *buf, unsigned len);
void client_set_queue (client_t *client, refbuf_t *refbuf);
int client_check_source_auth (client_t *client, const char *mount);
void client_send_error(client_t *client, int status, int plain, const char *message);
#endif /* __CLIENT_H__ */

View File

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