nekoray_Mahdi-zarei/include/configs/outbounds/trojan.h
2025-11-23 20:55:38 +03:00

40 lines
1.4 KiB
C++

#pragma once
#include "include/configs/common/multiplex.h"
#include "include/configs/common/Outbound.h"
#include "include/configs/common/TLS.h"
#include "include/configs/common/transport.h"
namespace Configs
{
class Trojan : public outbound
{
public:
QString password;
std::shared_ptr<TLS> tls = std::make_shared<TLS>();
std::shared_ptr<Multiplex> multiplex = std::make_shared<Multiplex>();
std::shared_ptr<Transport> transport = std::make_shared<Transport>();
Trojan() : outbound()
{
_add(new configItem("password", &password, string));
_add(new configItem("tls", dynamic_cast<JsonStore *>(tls.get()), jsonStore));
_add(new configItem("multiplex", dynamic_cast<JsonStore *>(multiplex.get()), jsonStore));
_add(new configItem("transport", dynamic_cast<JsonStore *>(transport.get()), jsonStore));
}
// baseConfig overrides
bool ParseFromLink(const QString& link) override;
bool ParseFromJson(const QJsonObject& object) override;
QString ExportToLink() override;
QJsonObject ExportToJson() override;
BuildResult Build() override;
// outboundMeta overrides
QString DisplayAddress() override;
QString DisplayName() override;
QString DisplayType() override;
QString DisplayTypeAndName() override;
bool IsEndpoint() override;
};
}