summaryrefslogtreecommitdiff
path: root/src/uaLookup.hpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2026-04-18 01:00:42 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2026-04-18 01:00:42 +0100
commit7b148411b127ebf6fdefdb1b0decd2886cdfc17b (patch)
tree56385615fe86dbb5ab7ce4a90d696d97ddf21d7e /src/uaLookup.hpp
parent1e551e618a63c869fde6a4b327566b38696a5f45 (diff)
parentfa6074eaf52be4254c17b74f20193aa96c940df8 (diff)
downloadwebstat-0.4.tar.bz2
webstat-0.4.tar.xz
webstat-0.4.zip
Merge remote-tracking branch 'origin/no-crc32'HEADwebstat-0.4main
Diffstat (limited to 'src/uaLookup.hpp')
-rw-r--r--src/uaLookup.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uaLookup.hpp b/src/uaLookup.hpp
index 9714253..4de883f 100644
--- a/src/uaLookup.hpp
+++ b/src/uaLookup.hpp
@@ -9,13 +9,13 @@
namespace WebStat {
class UserAgentLookupOperation : public CurlOperation {
public:
- UserAgentLookupOperation(Crc32Value entityId);
+ UserAgentLookupOperation(EntityId entityId);
void whenComplete(DB::Connection *) const override;
- Crc32Value entityId;
+ EntityId entityId;
};
std::unique_ptr<CurlOperation> curlGetUserAgentDetail(
- Crc32Value entityId, std::string_view uas, const char * baseUrl);
+ EntityId entityId, std::string_view uas, const char * baseUrl);
}