summaryrefslogtreecommitdiffstats
path: root/src/Net/Packets/LogPacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Net/Packets/LogPacket.h')
-rw-r--r--src/Net/Packets/LogPacket.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Net/Packets/LogPacket.h b/src/Net/Packets/LogPacket.h
index 814ea28..2c541ae 100644
--- a/src/Net/Packets/LogPacket.h
+++ b/src/Net/Packets/LogPacket.h
@@ -24,6 +24,7 @@
#include <Common/Logger.h>
#include <string>
+#include <ctime>
namespace Mad {
namespace Net {
@@ -34,13 +35,14 @@ class LogPacket : public Packet {
struct LogData {
uint16_t category;
uint16_t level;
+ uint16_t messageTimestamp;
uint8_t message[0];
};
LogData *logData;
public:
- LogPacket(Type type, uint16_t requestId, Common::Logger::MessageCategory category, Common::Logger::MessageLevel level, const std::string &message);
+ LogPacket(Type type, uint16_t requestId, Common::Logger::MessageCategory category, Common::Logger::MessageLevel level, time_t messageTimestamp, const std::string &message);
LogPacket(const Packet &p) : Packet(p) {
if(getLength() < sizeof(LogData))