checker: split monolithic rule into per-concern rules
This commit is contained in:
parent
463e3fb457
commit
181c5961f1
10 changed files with 338 additions and 20 deletions
13
checker/rules_connectivity.go
Normal file
13
checker/rules_connectivity.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package checker
|
||||
|
||||
import sdk "git.happydns.org/checker-sdk-go/checker"
|
||||
|
||||
// connectivityRule covers Zonemaster's connectivity test module (UDP/TCP
|
||||
// reachability of authoritative servers, AS diversity).
|
||||
func connectivityRule() sdk.CheckRule {
|
||||
return &categoryRule{
|
||||
name: "zonemaster.connectivity",
|
||||
description: "Zonemaster connectivity tests (reachability of authoritative servers over UDP/TCP, AS diversity).",
|
||||
modules: []string{"connectivity"},
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue