URL test apply fragment (#9157)

This commit is contained in:
DHR60
2026-04-20 01:19:26 +00:00
committed by GitHub
parent 6a7b359fcc
commit c5db319e0e
2 changed files with 14 additions and 4 deletions
@@ -55,6 +55,11 @@ public partial class CoreConfigV2rayService(CoreConfigContext context)
GenDns();
GenStatistic();
if (_config.CoreBasicItem.EnableFragment)
{
ApplyOutboundFragment();
}
ApplyOutboundSendThrough();
var finalRule = BuildFinalRule();
@@ -189,6 +194,10 @@ public partial class CoreConfigV2rayService(CoreConfigContext context)
_coreConfig.routing.rules.Add(rule);
}
if (_config.CoreBasicItem.EnableFragment)
{
ApplyOutboundFragment();
}
ApplyOutboundSendThrough();
//ret.Msg =string.Format(ResUI.SuccessfulConfiguration"), node.getSummary());
ret.Success = true;
@@ -250,6 +259,11 @@ public partial class CoreConfigV2rayService(CoreConfigContext context)
});
_coreConfig.routing.rules.Add(BuildFinalRule());
if (_config.CoreBasicItem.EnableFragment)
{
ApplyOutboundFragment();
}
ApplyOutboundSendThrough();
ret.Msg = string.Format(ResUI.SuccessfulConfiguration, "");
@@ -12,10 +12,6 @@ public partial class CoreConfigV2rayService
GenObservatory(multipleLoad);
GenBalancer(multipleLoad);
}
if (_config.CoreBasicItem.EnableFragment)
{
ApplyOutboundFragment();
}
if (context.IsTunEnabled)
{
_coreConfig.outbounds.Add(BuildDnsOutbound());