aboutsummaryrefslogtreecommitdiffstats
path: root/src/ClientInternal.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-15 22:18:37 +0200
committerMax Kellermann <max@duempel.org>2013-10-15 22:47:46 +0200
commit12ab556477d8ffc620a84d29ac8abfaefeb4985f (patch)
tree189a4507770628f430484d92a8e7524c9fbdee57 /src/ClientInternal.hxx
parent509f8dab8946cfc311def89f62352c0881e73348 (diff)
downloadmpd-12ab556477d8ffc620a84d29ac8abfaefeb4985f.tar.gz
mpd-12ab556477d8ffc620a84d29ac8abfaefeb4985f.tar.xz
mpd-12ab556477d8ffc620a84d29ac8abfaefeb4985f.zip
event/BufferedSocket: pass writable pointer to OnSocketInput()
Remove the const_cast from HttpdClient.cxx, and avoid one allocation in ClientRead.cxx.
Diffstat (limited to 'src/ClientInternal.hxx')
-rw-r--r--src/ClientInternal.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ClientInternal.hxx b/src/ClientInternal.hxx
index e4c2525b4..37054fc00 100644
--- a/src/ClientInternal.hxx
+++ b/src/ClientInternal.hxx
@@ -111,8 +111,7 @@ public:
private:
/* virtual methods from class BufferedSocket */
- virtual InputResult OnSocketInput(const void *data,
- size_t length) override;
+ virtual InputResult OnSocketInput(void *data, size_t length) override;
virtual void OnSocketError(Error &&error) override;
virtual void OnSocketClosed() override;