diff options
author | Max Kellermann <max@duempel.org> | 2013-01-27 22:58:07 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-30 15:08:09 +0100 |
commit | 5e8f51a9632e63656b7e68e90412374b8508fa30 (patch) | |
tree | 5d07af67dfa453613e1e78f15d54516965ac0f21 /src/output/HttpdOutputPlugin.cxx | |
parent | be3d2188d6a8fc03379d55cec0a9b02980c3df9d (diff) | |
download | mpd-5e8f51a9632e63656b7e68e90412374b8508fa30.tar.gz mpd-5e8f51a9632e63656b7e68e90412374b8508fa30.tar.xz mpd-5e8f51a9632e63656b7e68e90412374b8508fa30.zip |
output/httpd: use the BufferedSocket class for HttpdClient
Diffstat (limited to '')
-rw-r--r-- | src/output/HttpdOutputPlugin.cxx | 2 |
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; |