| self.config["server"], | self.config["server"], | ||||
| self.config["port"], | self.config["port"], | ||||
| ) | ) | ||||
| subprocess.call(iperf_command) | subprocess.call(iperf_command) | ||||
| processHandler.kill_all() | processHandler.kill_all() | ||||
| congestion_control_index = (congestion_control_index + 1) % len( | congestion_control_index = (congestion_control_index + 1) % len( | ||||
| tcp_algo | tcp_algo | ||||
| str(self.config["port"]), | str(self.config["port"]), | ||||
| "--one-off", | "--one-off", | ||||
| ] | ] | ||||
| subprocess.call(iperf_command) | subprocess.call(iperf_command) | ||||
| sleep(2) | sleep(2) | ||||
| processHandler.kill_all() | processHandler.kill_all() | ||||
| congestion_control_index = (congestion_control_index + 1) % len( | congestion_control_index = (congestion_control_index + 1) % len( | ||||
| while not is_measurement_done: | while not is_measurement_done: | ||||
| try: | try: | ||||
| try: | try: | ||||
| subprocess.call(iperf_command, timeout=float(time) + 2.0 + TIMEOUT_OFFSET) | |||||
| subprocess.call(iperf_command, timeout=float(time) + TIMEOUT_OFFSET) | |||||
| is_measurement_done = True | is_measurement_done = True | ||||
| except: | except: | ||||
| print_message("iPerf timed out. Retry...") | print_message("iPerf timed out. Retry...") | ||||
| reconnect_modem() | |||||
| except KeyboardInterrupt: | except KeyboardInterrupt: | ||||
| exit() | exit() | ||||
| sleep(4) | sleep(4) | ||||
| while not is_measurement_done: | while not is_measurement_done: | ||||
| try: | try: | ||||
| try: | try: | ||||
| subprocess.call(iperf_command, timeout=float(time) + 2.0 + TIMEOUT_OFFSET) | |||||
| subprocess.call(iperf_command, timeout=float(time) + TIMEOUT_OFFSET) | |||||
| is_measurement_done = True | is_measurement_done = True | ||||
| except: | except: | ||||
| print_message("iPerf timed out. Retry...") | print_message("iPerf timed out. Retry...") | ||||
| reconnect_modem() | |||||
| except KeyboardInterrupt: | except KeyboardInterrupt: | ||||
| exit() | exit() | ||||
| processHandler.kill_all() | processHandler.kill_all() |