mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-27 04:30:12 +08:00
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "fmt/AbstractBean.hpp"
|
|
#include "fmt/V2RayStreamSettings.hpp"
|
|
|
|
namespace NekoGui_fmt {
|
|
class SocksHttpBean : public AbstractBean {
|
|
public:
|
|
static constexpr int type_HTTP = -80;
|
|
static constexpr int type_Socks4 = 4;
|
|
static constexpr int type_Socks5 = 5;
|
|
|
|
int socks_http_type = type_Socks5;
|
|
QString username = "";
|
|
QString password = "";
|
|
|
|
std::shared_ptr<V2rayStreamSettings> stream = std::make_shared<V2rayStreamSettings>();
|
|
|
|
explicit SocksHttpBean(int _socks_http_type) : AbstractBean(0) {
|
|
this->socks_http_type = _socks_http_type;
|
|
_add(new configItem("v", &socks_http_type, itemType::integer));
|
|
_add(new configItem("username", &username, itemType::string));
|
|
_add(new configItem("password", &password, itemType::string));
|
|
_add(new configItem("stream", dynamic_cast<JsonStore *>(stream.get()), itemType::jsonStore));
|
|
};
|
|
|
|
QString DisplayType() override { return socks_http_type == type_HTTP ? "HTTP" : "Socks"; };
|
|
|
|
CoreObjOutboundBuildResult BuildCoreObjSingBox() override;
|
|
|
|
bool TryParseLink(const QString &link);
|
|
|
|
QString ToShareLink() override;
|
|
};
|
|
} // namespace NekoGui_fmt
|