mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 20:37:37 +03:00
Add multiple configuration support
This commit is contained in:
parent
e0d9f79445
commit
c7f89ad88e
10 changed files with 264 additions and 15 deletions
|
@ -169,6 +169,9 @@ func NewRouter(
|
|||
} else {
|
||||
tag = F.ToString(i)
|
||||
}
|
||||
if transportTagMap[tag] {
|
||||
return nil, E.New("duplicate dns server tag: ", tag)
|
||||
}
|
||||
transportTags[i] = tag
|
||||
transportTagMap[tag] = true
|
||||
}
|
||||
|
@ -241,6 +244,9 @@ func NewRouter(
|
|||
}), func(index int, server option.DNSServerOptions) string {
|
||||
return transportTags[index]
|
||||
})
|
||||
if len(unresolvedTags) == 0 {
|
||||
panic(F.ToString("unexpected unresolved dns servers: ", len(transports), " ", len(dummyTransportMap), " ", len(transportMap)))
|
||||
}
|
||||
return nil, E.New("found circular reference in dns servers: ", strings.Join(unresolvedTags, " "))
|
||||
}
|
||||
var defaultTransport dns.Transport
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue