diff options
author | Hagen Schink <troja84@gmail.com> | 2009-04-13 19:35:02 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-04-13 19:35:02 +0200 |
commit | 92ba754fc67b084202c1a1c7a750fa4f2133418c (patch) | |
tree | 31e9ca1d1da14c987ff3e1fabf5dfb41eb755789 /src/output/httpd_client.h | |
parent | 200be2637171a52fce9f23a858dc1c4476fcb7a3 (diff) | |
download | mpd-92ba754fc67b084202c1a1c7a750fa4f2133418c.tar.gz mpd-92ba754fc67b084202c1a1c7a750fa4f2133418c.tar.xz mpd-92ba754fc67b084202c1a1c7a750fa4f2133418c.zip |
Implemented basic icy support for the httpd output
[mk: folded with patch "Put icy related functions in extra source
files"; moved icy_server.c from HAVE_CURL to ENABLE_HTTPD_OUTPUT;
removed an unused variable]
Diffstat (limited to '')
-rw-r--r-- | src/output/httpd_client.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/output/httpd_client.h b/src/output/httpd_client.h index c81cdb12f..80ab6bc2e 100644 --- a/src/output/httpd_client.h +++ b/src/output/httpd_client.h @@ -62,4 +62,10 @@ httpd_client_cancel(struct httpd_client *client); void httpd_client_send(struct httpd_client *client, struct page *page); +/** + * Sends the passed metadata. + */ +void +httpd_client_send_metadata(struct httpd_client *client, struct page *page); + #endif |