mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
Merge remote-tracking branch 'origin/master' into 6263-custom-ups-cache
This commit is contained in:
commit
e7ca515630
2 changed files with 6 additions and 0 deletions
|
@ -37,6 +37,7 @@ NOTE: Add new changes BELOW THIS COMMENT.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
- `ipset` entries family validation ([#6420]).
|
||||||
- Pre-filling the New static lease window with data ([#6402]).
|
- Pre-filling the New static lease window with data ([#6402]).
|
||||||
- Protection pause timer synchronization ([#5759]).
|
- Protection pause timer synchronization ([#5759]).
|
||||||
|
|
||||||
|
@ -44,6 +45,7 @@ NOTE: Add new changes BELOW THIS COMMENT.
|
||||||
[#6362]: https://github.com/AdguardTeam/AdGuardHome/issues/6362
|
[#6362]: https://github.com/AdguardTeam/AdGuardHome/issues/6362
|
||||||
[#6369]: https://github.com/AdguardTeam/AdGuardHome/issues/6369
|
[#6369]: https://github.com/AdguardTeam/AdGuardHome/issues/6369
|
||||||
[#6402]: https://github.com/AdguardTeam/AdGuardHome/issues/6402
|
[#6402]: https://github.com/AdguardTeam/AdGuardHome/issues/6402
|
||||||
|
[#6420]: https://github.com/AdguardTeam/AdGuardHome/issues/6420
|
||||||
|
|
||||||
[dnsproxy#169] https://github.com/AdguardTeam/dnsproxy/issues/169
|
[dnsproxy#169] https://github.com/AdguardTeam/dnsproxy/issues/169
|
||||||
|
|
||||||
|
|
|
@ -296,6 +296,10 @@ func (m *manager) ipsets(names []string) (sets []props, err error) {
|
||||||
return nil, fmt.Errorf("unknown ipset %q", n)
|
return nil, fmt.Errorf("unknown ipset %q", n)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if p.family != netfilter.ProtoIPv4 && p.family != netfilter.ProtoIPv6 {
|
||||||
|
return nil, fmt.Errorf("%q unexpected ipset family %q", p.name, p.family)
|
||||||
|
}
|
||||||
|
|
||||||
sets = append(sets, p)
|
sets = append(sets, p)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue