aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/HttpdInternal.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-27 23:21:39 +0100
committerMax Kellermann <max@duempel.org>2013-01-27 23:21:39 +0100
commit27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2 (patch)
tree88de433c473a06d421f7c729ebe9a85eb417a0a1 /src/output/HttpdInternal.hxx
parent2cbe21c791aeb28c61a26a6ff447ba2089f58181 (diff)
downloadmpd-27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2.tar.gz
mpd-27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2.tar.xz
mpd-27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2.zip
output/httpd: rename struct httpd_output
Diffstat (limited to 'src/output/HttpdInternal.hxx')
-rw-r--r--src/output/HttpdInternal.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/output/HttpdInternal.hxx b/src/output/HttpdInternal.hxx
index 601c43162..e948afa1b 100644
--- a/src/output/HttpdInternal.hxx
+++ b/src/output/HttpdInternal.hxx
@@ -38,7 +38,7 @@
class HttpdClient;
-struct httpd_output {
+struct HttpdOutput {
struct audio_output base;
/**
@@ -128,7 +128,7 @@ struct httpd_output {
* Removes a client from the httpd_output.clients linked list.
*/
void
-httpd_output_remove_client(struct httpd_output *httpd,
+httpd_output_remove_client(struct HttpdOutput *httpd,
HttpdClient *client);
/**
@@ -136,7 +136,7 @@ httpd_output_remove_client(struct httpd_output *httpd,
* the response headers have been sent.
*/
void
-httpd_output_send_header(struct httpd_output *httpd,
+httpd_output_send_header(struct HttpdOutput *httpd,
HttpdClient *client);
#endif