2022-08-17 10:57:03 +02:00
|
|
|
package registry
|
|
|
|
|
|
|
|
//
|
|
|
|
// Registers the `stunreachability' experiment.
|
|
|
|
//
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ooni/probe-cli/v3/internal/engine/experiment/stunreachability"
|
|
|
|
"github.com/ooni/probe-cli/v3/internal/model"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2022-08-31 12:44:46 +02:00
|
|
|
AllExperiments["stunreachability"] = &Factory{
|
2022-08-17 10:57:03 +02:00
|
|
|
build: func(config interface{}) model.ExperimentMeasurer {
|
|
|
|
return stunreachability.NewExperimentMeasurer(
|
|
|
|
*config.(*stunreachability.Config),
|
|
|
|
)
|
|
|
|
},
|
|
|
|
config: &stunreachability.Config{},
|
|
|
|
inputPolicy: model.InputOrStaticDefault,
|
|
|
|
}
|
|
|
|
}
|