mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
feat: add TUIC protocol (#781)
--------- Co-authored-by: 2022-blake3-chacha8-poly1305 <139959885+xchacha20-ietf-poly1305@users.noreply.github.com> Co-authored-by: arm64v8a <48624112+arm64v8a@users.noreply.github.com>
This commit is contained in:
103
fmt/QUICBean.hpp
Normal file
103
fmt/QUICBean.hpp
Normal file
@@ -0,0 +1,103 @@
|
||||
#pragma once
|
||||
|
||||
#include "fmt/AbstractBean.hpp"
|
||||
|
||||
namespace NekoGui_fmt {
|
||||
class QUICBean : public AbstractBean {
|
||||
public:
|
||||
static constexpr int proxy_Hysteria = 0;
|
||||
static constexpr int proxy_TUIC = 1;
|
||||
int proxy_type = proxy_Hysteria;
|
||||
|
||||
// Hysteria
|
||||
|
||||
static constexpr int hysteria_protocol_udp = 0;
|
||||
static constexpr int hysteria_protocol_facktcp = 1;
|
||||
static constexpr int hysteria_protocol_wechat_video = 2;
|
||||
int hyProtocol = 0;
|
||||
|
||||
static constexpr int hysteria_auth_none = 0;
|
||||
static constexpr int hysteria_auth_string = 1;
|
||||
static constexpr int hysteria_auth_base64 = 2;
|
||||
int authPayloadType = 0;
|
||||
|
||||
QString authPayload = "";
|
||||
QString obfsPassword = "";
|
||||
|
||||
int uploadMbps = 100;
|
||||
int downloadMbps = 100;
|
||||
|
||||
qint64 streamReceiveWindow = 0;
|
||||
qint64 connectionReceiveWindow = 0;
|
||||
bool disableMtuDiscovery = false;
|
||||
|
||||
int hopInterval = 10;
|
||||
QString hopPort = "";
|
||||
|
||||
// TUIC
|
||||
|
||||
QString uuid = "";
|
||||
QString password = "";
|
||||
QString congestionControl = "bbr";
|
||||
QString udpRelayMode = "native";
|
||||
bool zeroRttHandshake = false;
|
||||
QString heartbeat = "10s";
|
||||
|
||||
// TLS
|
||||
|
||||
bool allowInsecure = false;
|
||||
QString sni = "";
|
||||
QString alpn = "";
|
||||
QString caText = "";
|
||||
bool disableSni = false;
|
||||
|
||||
explicit QUICBean(int _proxy_type) : AbstractBean(0) {
|
||||
proxy_type = _proxy_type;
|
||||
if (proxy_type == proxy_Hysteria) {
|
||||
_add(new configItem("protocol", &hyProtocol, itemType::integer));
|
||||
_add(new configItem("authPayloadType", &authPayloadType, itemType::integer));
|
||||
_add(new configItem("authPayload", &authPayload, itemType::string));
|
||||
_add(new configItem("obfsPassword", &obfsPassword, itemType::string));
|
||||
_add(new configItem("uploadMbps", &uploadMbps, itemType::integer));
|
||||
_add(new configItem("downloadMbps", &downloadMbps, itemType::integer));
|
||||
_add(new configItem("streamReceiveWindow", &streamReceiveWindow, itemType::integer64));
|
||||
_add(new configItem("connectionReceiveWindow", &connectionReceiveWindow, itemType::integer64));
|
||||
_add(new configItem("disableMtuDiscovery", &disableMtuDiscovery, itemType::boolean));
|
||||
_add(new configItem("hopInterval", &hopInterval, itemType::integer));
|
||||
_add(new configItem("hopPort", &hopPort, itemType::string));
|
||||
} else if (proxy_type == proxy_TUIC) {
|
||||
_add(new configItem("uuid", &uuid, itemType::string));
|
||||
_add(new configItem("password", &password, itemType::string));
|
||||
_add(new configItem("congestionControl", &congestionControl, itemType::string));
|
||||
_add(new configItem("udpRelayMode", &udpRelayMode, itemType::string));
|
||||
_add(new configItem("zeroRttHandshake", &zeroRttHandshake, itemType::boolean));
|
||||
_add(new configItem("heartbeat", &heartbeat, itemType::string));
|
||||
}
|
||||
// TLS
|
||||
_add(new configItem("allowInsecure", &allowInsecure, itemType::boolean));
|
||||
_add(new configItem("sni", &sni, itemType::string));
|
||||
_add(new configItem("alpn", &alpn, itemType::string));
|
||||
_add(new configItem("caText", &caText, itemType::string));
|
||||
_add(new configItem("disableSni", &disableSni, itemType::boolean));
|
||||
};
|
||||
|
||||
QString DisplayAddress() override {
|
||||
if (!hopPort.trimmed().isEmpty()) return WrapIPV6Host(serverAddress) + ":" + hopPort;
|
||||
return ::DisplayAddress(serverAddress, serverPort);
|
||||
}
|
||||
|
||||
QString DisplayCoreType() override { return NeedExternal(true) == 0 ? software_core_name : "Hysteria"; };
|
||||
|
||||
QString DisplayType() override { return proxy_type == proxy_TUIC ? "TUIC" : "Hysteria"; };
|
||||
|
||||
int NeedExternal(bool isFirstProfile) override;
|
||||
|
||||
ExternalBuildResult BuildExternal(int mapping_port, int socks_port, int external_stat) override;
|
||||
|
||||
CoreObjOutboundBuildResult BuildCoreObjSingBox() override;
|
||||
|
||||
bool TryParseLink(const QString &link);
|
||||
|
||||
QString ToShareLink() override;
|
||||
};
|
||||
} // namespace NekoGui_fmt
|
||||
Reference in New Issue
Block a user