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, 4 insertions, 0 deletions
diff --git a/src/Net/Packets/LogPacket.h b/src/Net/Packets/LogPacket.h
index dd406b4..040f21a 100644
--- a/src/Net/Packets/LogPacket.h
+++ b/src/Net/Packets/LogPacket.h
@@ -69,6 +69,10 @@ class LogPacket : public Packet {
return (Common::Logger::MessageLevel)ntohs(logData->level);
}
+ time_t getTimestamp() const {
+ return (time_t)ntohl(logData->messageTimestamp);
+ }
+
std::string getMessage() const {
return std::string((char*)logData->message, getLength()-sizeof(LogData));
}