Files
labca/patches/va_va.patch
2025-07-12 20:25:18 +02:00

29 lines
761 B
Diff

diff --git a/va/va.go b/va/va.go
index 4307e57b4..c63b2dea8 100644
--- a/va/va.go
+++ b/va/va.go
@@ -218,6 +218,7 @@ type ValidationAuthorityImpl struct {
perspective string
rir string
isReservedIPFunc func(netip.Addr) error
+ labcaDomains []string
metrics *vaMetrics
}
@@ -238,6 +239,7 @@ func NewValidationAuthorityImpl(
perspective string,
rir string,
reservedIPChecker func(netip.Addr) error,
+ labcaDomains []string,
) (*ValidationAuthorityImpl, error) {
if len(accountURIPrefixes) == 0 {
@@ -275,6 +277,7 @@ func NewValidationAuthorityImpl(
perspective: perspective,
rir: rir,
isReservedIPFunc: reservedIPChecker,
+ labcaDomains: labcaDomains,
}
return va, nil