Remove mentioning of DC overrides

This commit is contained in:
9seconds
2026-02-24 13:32:06 +01:00
parent 94d46d2c65
commit e4a9a96309
6 changed files with 1 additions and 30 deletions
-3
View File
@@ -2,12 +2,10 @@ package dc
type dcView struct {
publicConfigs dcAddrSet
ownConfigs dcAddrSet
}
func (d dcView) getV4(dc int) []Addr {
addrs := d.publicConfigs.getV4(dc)
addrs = append(addrs, d.ownConfigs.getV4(dc)...)
addrs = append(addrs, defaultDCAddrSet.getV4(dc)...)
return addrs
@@ -15,7 +13,6 @@ func (d dcView) getV4(dc int) []Addr {
func (d dcView) getV6(dc int) []Addr {
addrs := d.publicConfigs.getV6(dc)
addrs = append(addrs, d.ownConfigs.getV6(dc)...)
addrs = append(addrs, defaultDCAddrSet.getV6(dc)...)
return addrs