@@ -24,6 +24,7 @@ import (
24
24
mihomoHttp "github.com/metacubex/mihomo/component/http"
25
25
P "github.com/metacubex/mihomo/component/process"
26
26
"github.com/metacubex/mihomo/component/resolver"
27
+ "github.com/metacubex/mihomo/component/resource"
27
28
"github.com/metacubex/mihomo/component/sniffer"
28
29
tlsC "github.com/metacubex/mihomo/component/tls"
29
30
"github.com/metacubex/mihomo/component/trie"
@@ -65,6 +66,7 @@ type General struct {
65
66
Sniffing bool `json:"sniffing"`
66
67
GlobalClientFingerprint string `json:"global-client-fingerprint"`
67
68
GlobalUA string `json:"global-ua"`
69
+ ETagSupport bool `json:"etag-support"`
68
70
}
69
71
70
72
// Inbound config
@@ -381,6 +383,7 @@ type RawConfig struct {
381
383
FindProcessMode P.FindProcessMode `yaml:"find-process-mode" json:"find-process-mode"`
382
384
GlobalClientFingerprint string `yaml:"global-client-fingerprint" json:"global-client-fingerprint"`
383
385
GlobalUA string `yaml:"global-ua" json:"global-ua"`
386
+ ETagSupport bool `yaml:"etag-support" json:"etag-support"`
384
387
KeepAliveIdle int `yaml:"keep-alive-idle" json:"keep-alive-idle"`
385
388
KeepAliveInterval int `yaml:"keep-alive-interval" json:"keep-alive-interval"`
386
389
DisableKeepAlive bool `yaml:"disable-keep-alive" json:"disable-keep-alive"`
@@ -444,6 +447,7 @@ func DefaultRawConfig() *RawConfig {
444
447
TCPConcurrent : false ,
445
448
FindProcessMode : P .FindProcessStrict ,
446
449
GlobalUA : "clash.meta/" + C .Version ,
450
+ ETagSupport : true ,
447
451
DNS : RawDNS {
448
452
Enable : false ,
449
453
IPv6 : false ,
@@ -690,6 +694,7 @@ func parseGeneral(cfg *RawConfig) (*General, error) {
690
694
geodata .SetMmdbUrl (cfg .GeoXUrl .Mmdb )
691
695
geodata .SetASNUrl (cfg .GeoXUrl .ASN )
692
696
mihomoHttp .SetUA (cfg .GlobalUA )
697
+ resource .SetETag (cfg .ETagSupport )
693
698
694
699
if cfg .KeepAliveIdle != 0 {
695
700
N .KeepAliveIdle = time .Duration (cfg .KeepAliveIdle ) * time .Second
@@ -755,6 +760,7 @@ func parseGeneral(cfg *RawConfig) (*General, error) {
755
760
FindProcessMode : cfg .FindProcessMode ,
756
761
GlobalClientFingerprint : cfg .GlobalClientFingerprint ,
757
762
GlobalUA : cfg .GlobalUA ,
763
+ ETagSupport : cfg .ETagSupport ,
758
764
}, nil
759
765
}
760
766
0 commit comments