added linux iperf processing

This commit is contained in:
Ben Grewell
2021-03-10 06:48:46 -08:00
parent 10cf19535e
commit ff7e624a59
7 changed files with 209 additions and 107 deletions

View File

@@ -39,7 +39,7 @@ func main() {
}
// Method 1: Wait for the test to finish by pulling from the 'Done' channel which will block until something is put in or it's closed
<- c.Done
<-c.Done
// Method 2: Poll the c.Running state and wait for it to be 'false'
//for c.Running {