Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit b69e52d

Browse files
committed
chore: deprecated routing-mark and interface-name of the group, please set it directly on the proxy instead
1 parent 9c73b5b commit b69e52d

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

adapter/outbound/base.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ func (b *Base) DialOptions(opts ...dialer.Option) []dialer.Option {
153153
}
154154

155155
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"`
158158
Interface string `proxy:"interface-name,omitempty" group:"interface-name,omitempty"`
159159
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"`
161161
DialerProxy string `proxy:"dialer-proxy,omitempty"` // don't apply this option into groups, but can set a group name in a proxy
162162
}
163163

adapter/outboundgroup/groupbase.go

+7
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ type GroupBaseOption struct {
4646
}
4747

4848
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+
4956
var excludeFilterReg *regexp2.Regexp
5057
if opt.excludeFilter != "" {
5158
excludeFilterReg = regexp2.MustCompile(opt.excludeFilter, regexp2.None)

0 commit comments

Comments
 (0)