mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-27 10:19:34 +00:00
29 lines
761 B
Diff
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
|