diff options
author | Max Kellermann <max@duempel.org> | 2013-01-27 23:21:39 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-27 23:21:39 +0100 |
commit | 27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2 (patch) | |
tree | 88de433c473a06d421f7c729ebe9a85eb417a0a1 /src/output/HttpdClient.hxx | |
parent | 2cbe21c791aeb28c61a26a6ff447ba2089f58181 (diff) | |
download | mpd-27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2.tar.gz mpd-27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2.tar.xz mpd-27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2.zip |
output/httpd: rename struct httpd_output
Diffstat (limited to '')
-rw-r--r-- | src/output/HttpdClient.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/output/HttpdClient.hxx b/src/output/HttpdClient.hxx index d3ed2746d..8fb7c8b28 100644 --- a/src/output/HttpdClient.hxx +++ b/src/output/HttpdClient.hxx @@ -28,14 +28,14 @@ #include <stddef.h> -struct httpd_output; +struct HttpdOutput; struct page; class HttpdClient final { /** * The httpd output object this client is connected to. */ - httpd_output *const httpd; + HttpdOutput *const httpd; /** * The TCP socket. @@ -140,11 +140,11 @@ public: * @param httpd the HTTP output device * @param fd the socket file descriptor */ - HttpdClient(httpd_output *httpd, int _fd, bool _metadata_supported); + HttpdClient(HttpdOutput *httpd, int _fd, bool _metadata_supported); /** * Note: this does not remove the client from the - * #httpd_output object. + * #HttpdOutput object. */ ~HttpdClient(); |