ooni-probe-cli/cmd/ooniprobe/internal/nettests/http_header_field_manipulation.go

17 lines
367 B
Go
Raw Normal View History

2019-12-02 17:57:55 +02:00
package nettests
// HTTPHeaderFieldManipulation test implementation
type HTTPHeaderFieldManipulation struct {
}
// Run starts the test
2019-12-02 17:57:55 +02:00
func (h HTTPHeaderFieldManipulation) Run(ctl *Controller) error {
builder, err := ctl.Session.NewExperimentBuilder(
"http_header_field_manipulation",
)
if err != nil {
return err
}
return ctl.Run(builder, []string{""})
}