You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add no-resolve to generated Clash rule-set if exists (#679).
Do not set CURLOPT_USERAGENT if User-Agent header is provided.
Print curl verbose logs with standard format.
Change thread id in logs to thread name.
Optimize generation of rule contents.
Add no-resolve to generated Clash rule-set if exists (tindy2013#679).
Do not set CURLOPT_USERAGENT if User-Agent header is provided.
Print curl verbose logs with standard format.
Change thread id in logs to thread name.
Optimize generation of rule contents.
verify
功能描述
实现这样的效果: RULE-SET,select_ipcidr,𝐏𝐫𝐨𝐱𝐲,no-resolve
避免进行DNS解析。
可能的解决方案
在 src/generator/template/templates.cpp 的 458 行,将
rules.emplace_back("RULE-SET," + rule_name + "_ipcidr," + rule_group);
修改为:
rules.emplace_back("RULE-SET," + rule_name + "_ipcidr," + rule_group + ",no-resolve");
The text was updated successfully, but these errors were encountered: