mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-02-08 17:18:13 -05:00
![yuzuki999](/assets/img/avatar_default.png)
refactor limiter fix getLink bug add connection limit move limit config to ControllerConfig del dynamic speed limit (next version will be re add) del online ip sync (next version will be re add)
10 lines
168 B
Go
10 lines
168 B
Go
package iprecoder
|
|
|
|
import (
|
|
"github.com/Yuzuki616/V2bX/limiter"
|
|
)
|
|
|
|
type IpRecorder interface {
|
|
SyncOnlineIp(Ips []limiter.UserIpList) ([]limiter.UserIpList, error)
|
|
}
|