From 544de86739a85792be7e6883968b2af8590d0711 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 31 Aug 2014 14:11:23 +0300 Subject: Add comments for outbound packet fields in debug log. --- src/net/messageout.h | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'src/net/messageout.h') diff --git a/src/net/messageout.h b/src/net/messageout.h index 9d878db35..b2429ab33 100644 --- a/src/net/messageout.h +++ b/src/net/messageout.h @@ -40,24 +40,33 @@ class MessageOut notfinal public: A_DELETE_COPY(MessageOut) - virtual void writeInt8(const int8_t value); /**< Writes a byte. */ + /**< Writes a byte. */ + virtual void writeInt8(const int8_t value, + const char *const str = nullptr); - virtual void writeInt16(int16_t value) = 0; /**< Writes a short. */ + /**< Writes a short. */ + virtual void writeInt16(int16_t value, + const char *const str = nullptr) = 0; - virtual void writeInt32(int32_t value) = 0; /**< Writes a long. */ + /**< Writes a long. */ + virtual void writeInt32(int32_t value, + const char *const str = nullptr) = 0; /** * Writes a string. If a fixed length is not given (-1), it is stored * as a short at the start of the string. */ - virtual void writeString(const std::string &string, int length = -1); + virtual void writeString(const std::string &string, + int length = -1, + const char *const str = nullptr); /** * Writes a string. If a fixed length is not given (-1), it is stored * as a short at the start of the string. */ virtual void writeStringNoLog(const std::string &string, - int length = -1); + int length = -1, + const char *const str = nullptr); /** * Returns the content of the message. -- cgit v1.2.3-60-g2f50