mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 20:37:37 +03:00
Remove urltest outbound
This commit is contained in:
parent
c240f1b359
commit
c0a2f77258
14 changed files with 20 additions and 324 deletions
|
@ -21,7 +21,6 @@ import (
|
|||
"github.com/sagernet/sing-box/common/geosite"
|
||||
"github.com/sagernet/sing-box/common/process"
|
||||
"github.com/sagernet/sing-box/common/sniff"
|
||||
"github.com/sagernet/sing-box/common/urltest"
|
||||
"github.com/sagernet/sing-box/common/warning"
|
||||
C "github.com/sagernet/sing-box/constant"
|
||||
"github.com/sagernet/sing-box/log"
|
||||
|
@ -93,7 +92,6 @@ type Router struct {
|
|||
interfaceMonitor DefaultInterfaceMonitor
|
||||
defaultMark int
|
||||
trafficController adapter.TrafficController
|
||||
urlTestHistoryStorage *urltest.HistoryStorage
|
||||
processSearcher process.Searcher
|
||||
}
|
||||
|
||||
|
@ -699,13 +697,6 @@ func (r *Router) SetTrafficController(controller adapter.TrafficController) {
|
|||
r.trafficController = controller
|
||||
}
|
||||
|
||||
func (r *Router) URLTestHistoryStorage(create bool) *urltest.HistoryStorage {
|
||||
if r.urlTestHistoryStorage == nil && create {
|
||||
r.urlTestHistoryStorage = urltest.NewHistoryStorage()
|
||||
}
|
||||
return r.urlTestHistoryStorage
|
||||
}
|
||||
|
||||
func hasRule(rules []option.Rule, cond func(rule option.DefaultRule) bool) bool {
|
||||
for _, rule := range rules {
|
||||
switch rule.Type {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue