File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,10 @@ func (pp *proxySetProvider) Proxies() []C.Proxy {
98
98
return pp .proxies
99
99
}
100
100
101
+ func (pp * proxySetProvider ) Count () int {
102
+ return len (pp .proxies )
103
+ }
104
+
101
105
func (pp * proxySetProvider ) Touch () {
102
106
pp .healthCheck .touch ()
103
107
}
@@ -267,6 +271,10 @@ func (cp *compatibleProvider) Proxies() []C.Proxy {
267
271
return cp .proxies
268
272
}
269
273
274
+ func (cp * compatibleProvider ) Count () int {
275
+ return len (cp .proxies )
276
+ }
277
+
270
278
func (cp * compatibleProvider ) Touch () {
271
279
cp .healthCheck .touch ()
272
280
}
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ type Provider interface {
71
71
type ProxyProvider interface {
72
72
Provider
73
73
Proxies () []constant.Proxy
74
+ Count () int
74
75
// Touch is used to inform the provider that the proxy is actually being used while getting the list of proxies.
75
76
// Commonly used in DialContext and DialPacketConn
76
77
Touch ()
You can’t perform that action at this time.
0 commit comments