forked from amazingfate/loongoffice
Change-Id: Ie423df7839e793a9c07561efb56d5649876947ee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168826 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Andras Timar <andras.timar@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172328 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
33 lines
964 B
C++
33 lines
964 B
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_TOOLS_HOSTFILTER_HXX
|
|
#define INCLUDED_TOOLS_HOSTFILTER_HXX
|
|
|
|
#include <rtl/ustring.hxx>
|
|
#include <tools/toolsdllapi.h>
|
|
|
|
// Helper for filtering allowed hosts for remote connections
|
|
|
|
class TOOLS_DLLPUBLIC HostFilter
|
|
{
|
|
public:
|
|
static void setAllowedHostsRegex(const char* sAllowedRegex);
|
|
|
|
static bool isForbidden(const OUString& rHost);
|
|
|
|
static void setExemptVerifyHost(const OUString& rExemptVerifyHost);
|
|
|
|
static bool isExemptVerifyHost(const std::u16string_view rHost);
|
|
};
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|