summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ingestor.hpp2
-rw-r--r--src/uaLookup.hpp3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ingestor.hpp b/src/ingestor.hpp
index d9d49a3..f181ea3 100644
--- a/src/ingestor.hpp
+++ b/src/ingestor.hpp
@@ -31,6 +31,8 @@ namespace WebStat {
template<typename... T> void storeLogLine(DB::Connection *, const std::tuple<T...> &) const;
+ std::string userAgentAPI = "https://useragentstring.com";
+
protected:
size_t linesRead = 0;
size_t linesParsed = 0;
diff --git a/src/uaLookup.hpp b/src/uaLookup.hpp
index 3c43371..5529a40 100644
--- a/src/uaLookup.hpp
+++ b/src/uaLookup.hpp
@@ -30,6 +30,5 @@ namespace WebStat {
std::string result;
};
- std::unique_ptr<CurlOperation> curlGetUserAgentDetail(
- std::string_view uas, const char * baseUrl = "https://useragentstring.com");
+ std::unique_ptr<CurlOperation> curlGetUserAgentDetail(std::string_view uas, const char * baseUrl);
}