@@ -3,7 +3,10 @@ package config
3
3
import (
4
4
"net/netip"
5
5
6
+ "github.com/metacubex/mihomo/common/nnip"
6
7
C "github.com/metacubex/mihomo/constant"
8
+
9
+ "golang.org/x/exp/slices"
7
10
)
8
11
9
12
func StringSliceToNetipPrefixSlice (ss []string ) ([]netip.Prefix , error ) {
@@ -25,7 +28,6 @@ type Tun struct {
25
28
DNSHijack []string `yaml:"dns-hijack" json:"dns-hijack"`
26
29
AutoRoute bool `yaml:"auto-route" json:"auto-route"`
27
30
AutoDetectInterface bool `yaml:"auto-detect-interface" json:"auto-detect-interface"`
28
- RedirectToTun []string `yaml:"-" json:"-"`
29
31
30
32
MTU uint32 `yaml:"mtu" json:"mtu,omitempty"`
31
33
GSO bool `yaml:"gso" json:"gso,omitempty"`
@@ -60,3 +62,146 @@ type Tun struct {
60
62
Inet4RouteExcludeAddress []netip.Prefix `yaml:"inet4-route-exclude-address" json:"inet4-route-exclude-address,omitempty"`
61
63
Inet6RouteExcludeAddress []netip.Prefix `yaml:"inet6-route-exclude-address" json:"inet6-route-exclude-address,omitempty"`
62
64
}
65
+
66
+ func (t * Tun ) Sort () {
67
+ slices .Sort (t .DNSHijack )
68
+
69
+ slices .SortFunc (t .Inet4Address , nnip .PrefixCompare )
70
+ slices .SortFunc (t .Inet6Address , nnip .PrefixCompare )
71
+ slices .SortFunc (t .RouteAddress , nnip .PrefixCompare )
72
+ slices .Sort (t .RouteAddressSet )
73
+ slices .SortFunc (t .RouteExcludeAddress , nnip .PrefixCompare )
74
+ slices .Sort (t .RouteExcludeAddressSet )
75
+ slices .Sort (t .IncludeInterface )
76
+ slices .Sort (t .ExcludeInterface )
77
+ slices .Sort (t .IncludeUID )
78
+ slices .Sort (t .IncludeUIDRange )
79
+ slices .Sort (t .ExcludeUID )
80
+ slices .Sort (t .ExcludeUIDRange )
81
+ slices .Sort (t .IncludeAndroidUser )
82
+ slices .Sort (t .IncludePackage )
83
+ slices .Sort (t .ExcludePackage )
84
+
85
+ slices .SortFunc (t .Inet4RouteAddress , nnip .PrefixCompare )
86
+ slices .SortFunc (t .Inet6RouteAddress , nnip .PrefixCompare )
87
+ slices .SortFunc (t .Inet4RouteExcludeAddress , nnip .PrefixCompare )
88
+ slices .SortFunc (t .Inet6RouteExcludeAddress , nnip .PrefixCompare )
89
+ }
90
+
91
+ func (t * Tun ) Equal (other Tun ) bool {
92
+ if t .Enable != other .Enable {
93
+ return false
94
+ }
95
+ if t .Device != other .Device {
96
+ return false
97
+ }
98
+ if t .Stack != other .Stack {
99
+ return false
100
+ }
101
+ if ! slices .Equal (t .DNSHijack , other .DNSHijack ) {
102
+ return false
103
+ }
104
+ if t .AutoRoute != other .AutoRoute {
105
+ return false
106
+ }
107
+ if t .AutoDetectInterface != other .AutoDetectInterface {
108
+ return false
109
+ }
110
+
111
+ if t .MTU != other .MTU {
112
+ return false
113
+ }
114
+ if t .GSO != other .GSO {
115
+ return false
116
+ }
117
+ if t .GSOMaxSize != other .GSOMaxSize {
118
+ return false
119
+ }
120
+ if ! slices .Equal (t .Inet4Address , other .Inet4Address ) {
121
+ return false
122
+ }
123
+ if ! slices .Equal (t .Inet6Address , other .Inet6Address ) {
124
+ return false
125
+ }
126
+ if t .IPRoute2TableIndex != other .IPRoute2TableIndex {
127
+ return false
128
+ }
129
+ if t .IPRoute2RuleIndex != other .IPRoute2RuleIndex {
130
+ return false
131
+ }
132
+ if t .AutoRedirect != other .AutoRedirect {
133
+ return false
134
+ }
135
+ if t .AutoRedirectInputMark != other .AutoRedirectInputMark {
136
+ return false
137
+ }
138
+ if t .AutoRedirectOutputMark != other .AutoRedirectOutputMark {
139
+ return false
140
+ }
141
+ if t .StrictRoute != other .StrictRoute {
142
+ return false
143
+ }
144
+ if ! slices .Equal (t .RouteAddress , other .RouteAddress ) {
145
+ return false
146
+ }
147
+ if ! slices .Equal (t .RouteAddressSet , other .RouteAddressSet ) {
148
+ return false
149
+ }
150
+ if ! slices .Equal (t .RouteExcludeAddress , other .RouteExcludeAddress ) {
151
+ return false
152
+ }
153
+ if ! slices .Equal (t .RouteExcludeAddressSet , other .RouteExcludeAddressSet ) {
154
+ return false
155
+ }
156
+ if ! slices .Equal (t .IncludeInterface , other .IncludeInterface ) {
157
+ return false
158
+ }
159
+ if ! slices .Equal (t .ExcludeInterface , other .ExcludeInterface ) {
160
+ return false
161
+ }
162
+ if ! slices .Equal (t .IncludeUID , other .IncludeUID ) {
163
+ return false
164
+ }
165
+ if ! slices .Equal (t .IncludeUIDRange , other .IncludeUIDRange ) {
166
+ return false
167
+ }
168
+ if ! slices .Equal (t .ExcludeUID , other .ExcludeUID ) {
169
+ return false
170
+ }
171
+ if ! slices .Equal (t .ExcludeUIDRange , other .ExcludeUIDRange ) {
172
+ return false
173
+ }
174
+ if ! slices .Equal (t .IncludeAndroidUser , other .IncludeAndroidUser ) {
175
+ return false
176
+ }
177
+ if ! slices .Equal (t .IncludePackage , other .IncludePackage ) {
178
+ return false
179
+ }
180
+ if ! slices .Equal (t .ExcludePackage , other .ExcludePackage ) {
181
+ return false
182
+ }
183
+ if t .EndpointIndependentNat != other .EndpointIndependentNat {
184
+ return false
185
+ }
186
+ if t .UDPTimeout != other .UDPTimeout {
187
+ return false
188
+ }
189
+ if t .FileDescriptor != other .FileDescriptor {
190
+ return false
191
+ }
192
+
193
+ if ! slices .Equal (t .Inet4RouteAddress , other .Inet4RouteAddress ) {
194
+ return false
195
+ }
196
+ if ! slices .Equal (t .Inet6RouteAddress , other .Inet6RouteAddress ) {
197
+ return false
198
+ }
199
+ if ! slices .Equal (t .Inet4RouteExcludeAddress , other .Inet4RouteExcludeAddress ) {
200
+ return false
201
+ }
202
+ if ! slices .Equal (t .Inet6RouteExcludeAddress , other .Inet6RouteExcludeAddress ) {
203
+ return false
204
+ }
205
+
206
+ return true
207
+ }
0 commit comments