diff options
author | Max Kellermann <max@duempel.org> | 2009-05-05 22:41:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-05-05 22:41:36 +0200 |
commit | 9080797025d73eb32ce0c7041a0d365015b51f41 (patch) | |
tree | cb04458bb336a255468ab465844645eaf862c57b /src/output/httpd_client.h | |
parent | ebc1d3516c0334a093d8426e52402febb3dd6b00 (diff) | |
download | mpd-9080797025d73eb32ce0c7041a0d365015b51f41.tar.gz mpd-9080797025d73eb32ce0c7041a0d365015b51f41.tar.xz mpd-9080797025d73eb32ce0c7041a0d365015b51f41.zip |
httpd_output: disable Icy-Metadata when encoder supports tags
There's no reason to send both encoder tags and Icy-Metadata to the
client. Let's disable Icy-Metadata when the encoder supports embedded
tags.
Diffstat (limited to '')
-rw-r--r-- | src/output/httpd_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/httpd_client.h b/src/output/httpd_client.h index 80ab6bc2e..4a2912f80 100644 --- a/src/output/httpd_client.h +++ b/src/output/httpd_client.h @@ -35,7 +35,7 @@ struct page; * @param fd the socket file descriptor */ struct httpd_client * -httpd_client_new(struct httpd_output *httpd, int fd); +httpd_client_new(struct httpd_output *httpd, int fd, bool metadata_supported); /** * Frees memory and resources allocated by the #httpd_client object. |