Files
labca/patches/va_va.patch
2025-05-31 12:29:07 +02:00

29 lines
757 B
Diff

diff --git a/va/va.go b/va/va.go
index 5e7732d69..9a908c255 100644
--- a/va/va.go
+++ b/va/va.go
@@ -217,6 +217,7 @@ type ValidationAuthorityImpl struct {
perspective string
rir string
isReservedIPFunc func(ip net.IP) bool
+ labcaDomains []string
metrics *vaMetrics
}
@@ -237,6 +238,7 @@ func NewValidationAuthorityImpl(
perspective string,
rir string,
reservedIPChecker func(ip net.IP) bool,
+ labcaDomains []string,
) (*ValidationAuthorityImpl, error) {
if len(accountURIPrefixes) == 0 {
@@ -274,6 +276,7 @@ func NewValidationAuthorityImpl(
perspective: perspective,
rir: rir,
isReservedIPFunc: reservedIPChecker,
+ labcaDomains: labcaDomains,
}
return va, nil