feat(oohelperd): measure TLS for :443 endpoints (#886)
This diff improves oohelperd to measure :443 endpoints with TLS. Part of https://github.com/ooni/probe/issues/2237.
This commit is contained in:
parent
df0e099b73
commit
1e7384d1cc
10 changed files with 143 additions and 35 deletions
|
|
@ -50,7 +50,11 @@ func dnsDo(ctx context.Context, config *dnsConfig) {
|
|||
addrs = []string{} // fix: the old test helper did that
|
||||
}
|
||||
failure := dnsMapFailure(newfailure(err))
|
||||
config.Out <- ctrlDNSResult{Failure: failure, Addrs: addrs}
|
||||
config.Out <- ctrlDNSResult{
|
||||
Failure: failure,
|
||||
Addrs: addrs,
|
||||
ASNs: []int64{}, // unused by the TH and not serialized
|
||||
}
|
||||
}
|
||||
|
||||
// dnsMapFailure attempts to map netxlite failures to the strings
|
||||
|
|
|
|||
Loading…
Reference in a new issue