From 4cbf8607e94732cf4318451d397e0d416c0080b7 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Tue, 26 Dec 2017 16:29:21 +0100 Subject: UrlRequestInterceptor fixes - Using QHash to store HostRule's, so lookup should be faster - HostRule is now a struct --- src/webengine/hostrule.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/webengine/hostrule.h (limited to 'src/webengine/hostrule.h') diff --git a/src/webengine/hostrule.h b/src/webengine/hostrule.h deleted file mode 100644 index d1289a0..0000000 --- a/src/webengine/hostrule.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * This file is part of smolbote. It's copyrighted by the contributors recorded - * in the version control history of the file, available from its original - * location: git://neueland.iserlohn-fortress.net/smolbote.git - * - * SPDX-License-Identifier: GPL-3.0 - */ - -#ifndef HOSTRULE_H -#define HOSTRULE_H - -#include -#include - -class HostRule -{ -public: - HostRule(const QString &line); - QString pattern() const; - bool shouldBlock(const QWebEngineUrlRequestInfo &info) const; - -private: - bool valid = false; - - bool parse(const QString &line); - - QString domain; - bool blocking; -}; - -#endif // HOSTRULE_H -- cgit v1.2.1