This repository was archived by the owner on Feb 13, 2025. It is now read-only.
File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -153,11 +153,11 @@ func (b *Base) DialOptions(opts ...dialer.Option) []dialer.Option {
153
153
}
154
154
155
155
type BasicOption struct {
156
- TFO bool `proxy:"tfo,omitempty" group:"tfo,omitempty" `
157
- MPTCP bool `proxy:"mptcp,omitempty" group:"mptcp,omitempty" `
156
+ TFO bool `proxy:"tfo,omitempty"`
157
+ MPTCP bool `proxy:"mptcp,omitempty"`
158
158
Interface string `proxy:"interface-name,omitempty" group:"interface-name,omitempty"`
159
159
RoutingMark int `proxy:"routing-mark,omitempty" group:"routing-mark,omitempty"`
160
- IPVersion string `proxy:"ip-version,omitempty" group:"ip-version,omitempty" `
160
+ IPVersion string `proxy:"ip-version,omitempty"`
161
161
DialerProxy string `proxy:"dialer-proxy,omitempty"` // don't apply this option into groups, but can set a group name in a proxy
162
162
}
163
163
Original file line number Diff line number Diff line change @@ -46,6 +46,13 @@ type GroupBaseOption struct {
46
46
}
47
47
48
48
func NewGroupBase (opt GroupBaseOption ) * GroupBase {
49
+ if opt .RoutingMark != 0 {
50
+ log .Warnln ("The group [%s] with routing-mark configuration is deprecated, please set it directly on the proxy instead" , opt .Name )
51
+ }
52
+ if opt .Interface != "" {
53
+ log .Warnln ("The group [%s] with interface-name configuration is deprecated, please set it directly on the proxy instead" , opt .Name )
54
+ }
55
+
49
56
var excludeFilterReg * regexp2.Regexp
50
57
if opt .excludeFilter != "" {
51
58
excludeFilterReg = regexp2 .MustCompile (opt .excludeFilter , regexp2 .None )
You can’t perform that action at this time.
0 commit comments