mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-20 02:00:55 +07:00
62 lines
2.5 KiB
C++
62 lines
2.5 KiB
C++
// Copyright (c) 2023 Private Internet Access, Inc.
|
|
//
|
|
// This file is part of the Private Internet Access Desktop Client.
|
|
//
|
|
// The Private Internet Access Desktop Client is free software: you can
|
|
// redistribute it and/or modify it under the terms of the GNU General Public
|
|
// License as published by the Free Software Foundation, either version 3 of
|
|
// the License, or (at your option) any later version.
|
|
//
|
|
// The Private Internet Access Desktop Client is distributed in the hope that
|
|
// it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with the Private Internet Access Desktop Client. If not, see
|
|
// <https://www.gnu.org/licenses/>.
|
|
|
|
// Copyright (c) 2024 AmneziaVPN
|
|
// This file has been modified for AmneziaVPN
|
|
//
|
|
// This file is based on the work of the Private Internet Access Desktop Client.
|
|
// The original code of the Private Internet Access Desktop Client is copyrighted (c) 2023 Private Internet Access, Inc. and licensed under GPL3.
|
|
//
|
|
// The modified version of this file is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this file. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#ifndef MACOSFIREWALL_H
|
|
#define MACOSFIREWALL_H
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
class MacOSFirewall
|
|
{
|
|
|
|
private:
|
|
static int execute(const QString &command, bool ignoreErrors = false);
|
|
static bool isPFEnabled();
|
|
static bool isRootAnchorLoaded();
|
|
|
|
public:
|
|
static void install();
|
|
static void uninstall();
|
|
static bool isInstalled();
|
|
static void enableAnchor(const QString &anchor);
|
|
static void disableAnchor(const QString &anchor);
|
|
static bool isAnchorEnabled(const QString &anchor);
|
|
static void setAnchorEnabled(const QString &anchor, bool enable);
|
|
static void setAnchorTable(const QString &anchor, bool enabled, const QString &table, const QStringList &items);
|
|
static void setAnchorWithRules(const QString &anchor, bool enabled, const QStringList &rules);
|
|
static void ensureRootAnchorPriority();
|
|
static void installRootAnchors();
|
|
};
|
|
|
|
#endif // MACOSFIREWALL_H
|