Skip to content

Commit 595a575

Browse files
committed
chore: add Count for ProxyProvider
1 parent b1301b1 commit 595a575

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

adapter/provider/provider.go

+8
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ func (pp *proxySetProvider) Proxies() []C.Proxy {
9898
return pp.proxies
9999
}
100100

101+
func (pp *proxySetProvider) Count() int {
102+
return len(pp.proxies)
103+
}
104+
101105
func (pp *proxySetProvider) Touch() {
102106
pp.healthCheck.touch()
103107
}
@@ -267,6 +271,10 @@ func (cp *compatibleProvider) Proxies() []C.Proxy {
267271
return cp.proxies
268272
}
269273

274+
func (cp *compatibleProvider) Count() int {
275+
return len(cp.proxies)
276+
}
277+
270278
func (cp *compatibleProvider) Touch() {
271279
cp.healthCheck.touch()
272280
}

constant/provider/interface.go

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ type Provider interface {
7171
type ProxyProvider interface {
7272
Provider
7373
Proxies() []constant.Proxy
74+
Count() int
7475
// Touch is used to inform the provider that the proxy is actually being used while getting the list of proxies.
7576
// Commonly used in DialContext and DialPacketConn
7677
Touch()

0 commit comments

Comments
 (0)