Skip to content

Commit a9ce5da

Browse files
committed
fix: key missing for tun inbound
#1672
1 parent 301c78f commit a9ce5da

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

listener/inbound/tun.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ type TunOption struct {
2323
GSOMaxSize uint32 `inbound:"gso-max-size,omitempty"`
2424
Inet4Address []string `inbound:"inet4-address,omitempty"`
2525
Inet6Address []string `inbound:"inet6-address,omitempty"`
26-
IPRoute2TableIndex int `inbound:"iproute2-table-index"`
27-
IPRoute2RuleIndex int `inbound:"iproute2-rule-index"`
28-
AutoRedirect bool `inbound:"auto-redirect"`
29-
AutoRedirectInputMark uint32 `inbound:"auto-redirect-input-mark"`
30-
AutoRedirectOutputMark uint32 `inbound:"auto-redirect-output-mark"`
26+
IPRoute2TableIndex int `inbound:"iproute2-table-index,omitempty"`
27+
IPRoute2RuleIndex int `inbound:"iproute2-rule-index,omitempty"`
28+
AutoRedirect bool `inbound:"auto-redirect,omitempty"`
29+
AutoRedirectInputMark uint32 `inbound:"auto-redirect-input-mark,omitempty"`
30+
AutoRedirectOutputMark uint32 `inbound:"auto-redirect-output-mark,omitempty"`
3131
StrictRoute bool `inbound:"strict-route,omitempty"`
32-
RouteAddress []string `inbound:"route-address"`
33-
RouteAddressSet []string `inbound:"route-address-set"`
34-
RouteExcludeAddress []string `inbound:"route-exclude-address"`
35-
RouteExcludeAddressSet []string `inbound:"route-exclude-address-set"`
32+
RouteAddress []string `inbound:"route-address,omitempty"`
33+
RouteAddressSet []string `inbound:"route-address-set,omitempty"`
34+
RouteExcludeAddress []string `inbound:"route-exclude-address,omitempty"`
35+
RouteExcludeAddressSet []string `inbound:"route-exclude-address-set,omitempty"`
3636
IncludeInterface []string `inbound:"include-interface,omitempty"`
37-
ExcludeInterface []string `inbound:"exclude-interface"`
37+
ExcludeInterface []string `inbound:"exclude-interface,omitempty"`
3838
IncludeUID []uint32 `inbound:"include-uid,omitempty"`
3939
IncludeUIDRange []string `inbound:"include-uid-range,omitempty"`
4040
ExcludeUID []uint32 `inbound:"exclude-uid,omitempty"`

0 commit comments

Comments
 (0)