mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-19 05:30:06 +08:00
52 lines
2.0 KiB
C++
52 lines
2.0 KiB
C++
#pragma once
|
|
#include "include/configs/common/Outbound.h"
|
|
|
|
namespace Configs
|
|
{
|
|
class tailscale : public outbound
|
|
{
|
|
public:
|
|
QString state_directory = "$HOME/.tailscale";
|
|
QString auth_key;
|
|
QString control_url = "https://controlplane.tailscale.com";
|
|
bool ephemeral = false;
|
|
QString hostname;
|
|
bool accept_routes = false;
|
|
QString exit_node;
|
|
bool exit_node_allow_lan_access = false;
|
|
QStringList advertise_routes;
|
|
bool advertise_exit_node = false;
|
|
bool globalDNS = false;
|
|
|
|
tailscale() : outbound()
|
|
{
|
|
_add(new configItem("state_directory", &state_directory, itemType::string));
|
|
_add(new configItem("auth_key", &auth_key, itemType::string));
|
|
_add(new configItem("control_url", &control_url, itemType::string));
|
|
_add(new configItem("ephemeral", &ephemeral, itemType::boolean));
|
|
_add(new configItem("hostname", &hostname, itemType::string));
|
|
_add(new configItem("accept_routes", &accept_routes, itemType::boolean));
|
|
_add(new configItem("exit_node", &exit_node, itemType::string));
|
|
_add(new configItem("exit_node_allow_lan_access", &exit_node_allow_lan_access, itemType::boolean));
|
|
_add(new configItem("advertise_routes", &advertise_routes, itemType::stringList));
|
|
_add(new configItem("advertise_exit_node", &advertise_exit_node, itemType::boolean));
|
|
_add(new configItem("globalDNS", &globalDNS, itemType::boolean));
|
|
}
|
|
|
|
// baseConfig overrides
|
|
bool ParseFromLink(const QString& link) override;
|
|
bool ParseFromJson(const QJsonObject& object) override;
|
|
QString ExportToLink() override;
|
|
QJsonObject ExportToJson() override;
|
|
BuildResult Build() override;
|
|
|
|
void SetAddress(QString newAddr) override;
|
|
QString GetAddress() override;
|
|
QString DisplayAddress() override;
|
|
QString DisplayType() override;
|
|
bool IsEndpoint() override;
|
|
};
|
|
}
|
|
|
|
|