Add multiple configuration support

This commit is contained in:
世界 2023-03-18 19:15:28 +08:00
parent e0d9f79445
commit c7f89ad88e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 264 additions and 15 deletions

View file

@ -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