aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/HttpdOutputPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-27 22:58:07 +0100
committerMax Kellermann <max@duempel.org>2013-01-30 15:08:09 +0100
commit5e8f51a9632e63656b7e68e90412374b8508fa30 (patch)
tree5d07af67dfa453613e1e78f15d54516965ac0f21 /src/output/HttpdOutputPlugin.cxx
parentbe3d2188d6a8fc03379d55cec0a9b02980c3df9d (diff)
downloadmpd-5e8f51a9632e63656b7e68e90412374b8508fa30.tar.gz
mpd-5e8f51a9632e63656b7e68e90412374b8508fa30.tar.xz
mpd-5e8f51a9632e63656b7e68e90412374b8508fa30.zip
output/httpd: use the BufferedSocket class for HttpdClient
Diffstat (limited to 'src/output/HttpdOutputPlugin.cxx')
-rw-r--r--src/output/HttpdOutputPlugin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/HttpdOutputPlugin.cxx b/src/output/HttpdOutputPlugin.cxx
index 6c67030cb..cb515e657 100644
--- a/src/output/HttpdOutputPlugin.cxx
+++ b/src/output/HttpdOutputPlugin.cxx
@@ -189,7 +189,7 @@ httpd_output_finish(struct audio_output *ao)
inline void
HttpdOutput::AddClient(int fd)
{
- clients.emplace_front(this, fd,
+ clients.emplace_front(this, fd, GetEventLoop(),
encoder->plugin->tag == NULL);
++clients_cnt;