From 07e40afa3d6e0c5881f11aa77dde747efce28e60 Mon Sep 17 00:00:00 2001 From: Shawak Date: Sat, 22 Mar 2014 18:07:13 +0100 Subject: [PATCH] Ability to get buffer from inputmessage --- src/framework/net/inputmessage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/framework/net/inputmessage.h b/src/framework/net/inputmessage.h index 00c766bf..de799225 100644 --- a/src/framework/net/inputmessage.h +++ b/src/framework/net/inputmessage.h @@ -37,7 +37,7 @@ public: InputMessage(); - void setBuffer(const std::string& buffer); + void setBuffer(const std::string& buffer); std::string getBuffer() { return std::string((char*)m_buffer + m_headerPos, m_messageSize); } void skipBytes(uint16 bytes) { m_readPos += bytes; }