Add support for DANE verification

This commit is contained in:
Rob Best
2020-12-14 22:38:40 +00:00
parent 44d8713091
commit 4a18f54c81
296 changed files with 39536 additions and 96 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ import (
// ProbeHTTPS performs a https probe
func ProbeHTTPS(ctx context.Context, target string, module config.Module, registry *prometheus.Registry) error {
tlsConfig, err := newTLSConfig("", registry, &module.TLSConfig)
tlsConfig, err := newTLSConfig(target, registry, &module.TLSConfig)
if err != nil {
return err
}