Searched refs:max_nodes_num (Results 1 – 2 of 2) sorted by relevance
| /openthread-latest/tools/harness-simulation/posix/ |
| D | launch_testbed.py | 113 def start_sniffer(addr: str, port: int, ot_path: str, max_nodes_num: int) -> subprocess.Popen: 125 str(max_nodes_num), 148 max_nodes_num = ot_build['max_number'] 160 if not all(0 <= x[1] <= max_nodes_num for x in ot_devices): 163 if not all(0 <= x[1] <= max_nodes_num for x in otbr_devices): 166 if not 1 <= nodes_num <= max_nodes_num: 180 … sniffer_procs.append(start_sniffer(addr, i + sniffer_server_port_base, ot_path, max_nodes_num))
|
| /openthread-latest/tools/harness-simulation/posix/sniffer_sim/ |
| D | sniffer.py | 74 def __init__(self, max_nodes_num): argument 75 self._max_nodes_num = max_nodes_num 217 def serve(address_port, max_nodes_num): argument 221 sniffer_pb2_grpc.add_SnifferServicer_to_server(SnifferServicer(max_nodes_num), server) 252 serve(args.grpc_server, args.max_nodes_num)
|