We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
最新提交
任意转换至 Clash 目标
tfo=true
使用任意订阅转换至 Clash 订阅
订阅输出中带有 TFO 设定
没有
No response
The text was updated successfully, but these errors were encountered:
From 7d3ee189443bdf7b8d7b5d232b66348e46e32a10 Mon Sep 17 00:00:00 2001 From: ImmTelecom <[email protected]> Date: Mon, 2 Dec 2024 05:56:52 +0800 Subject: [PATCH 1/1] FIX CLASH TFO --- src/generator/config/subexport.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/generator/config/subexport.cpp b/src/generator/config/subexport.cpp index eacb22a..7e18b28 100644 --- a/src/generator/config/subexport.cpp +++ b/src/generator/config/subexport.cpp @@ -271,6 +271,7 @@ void proxyToClash(std::vector<Proxy> &nodes, YAML::Node &yamlnode, const ProxyGr processRemark(x.Remark, remarks_list, false); + tribool tfo = ext.tfo; tribool udp = ext.udp; tribool scv = ext.skip_cert_verify; udp.define(x.UDP); @@ -279,6 +280,7 @@ void proxyToClash(std::vector<Proxy> &nodes, YAML::Node &yamlnode, const ProxyGr singleproxy["name"] = x.Remark; singleproxy["server"] = x.Hostname; singleproxy["port"] = x.Port; + if (!tfo.is_undef() && tfo.get()) singleproxy["tfo"] = tfo.get(); switch(x.Type) { -- 2.39.5
Sorry, something went wrong.
修复前 修复后
Added in 1d56f44
No branches or pull requests
确认版本最新
检索issue
subconverter版本
最新提交
转换过程
任意转换至 Clash 目标
转换设置
tfo=true
复现步骤
使用任意订阅转换至 Clash 订阅
期望结果
订阅输出中带有 TFO 设定
实际结果
没有
错误信息
No response
The text was updated successfully, but these errors were encountered: