summaryrefslogtreecommitdiff
path: root/src/logTypes.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/logTypes.hpp')
-rw-r--r--src/logTypes.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/logTypes.hpp b/src/logTypes.hpp
index 71393b2..6556d5c 100644
--- a/src/logTypes.hpp
+++ b/src/logTypes.hpp
@@ -1,5 +1,6 @@
#pragma once
+#include <md5.h>
#include <optional>
#include <scn/scan.h>
#include <string>
@@ -35,6 +36,7 @@ namespace WebStat {
};
using Crc32Value = uint32_t;
+ using EntityHash = std::array<uint8_t, MD5_DIGEST_LENGTH>;
using Entity = std::tuple<Crc32Value, EntityType, std::string_view>;
}