feat: port-filtering experiment (#891)

Part of https://github.com/ooni/probe/issues/2005
This commit is contained in:
DecFox 2022-09-14 23:24:43 +05:30 committed by GitHub
commit d6a362d96f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 452 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package main
//
// List of ports we want to use for running integration tests
//
// Ports for testing the testhelper
// Note: we must only use unprivileged ports here to ensure tests run successfully
var TestPorts = []string{
"8080", // tcp
"5050", // tcp
}