ping msg of two nodes at a certain time
(self, line)
| 210 | output(self.sn.configuration_file_path + "\n") |
| 211 | |
| 212 | def do_set_ping(self, line): |
| 213 | "ping msg of two nodes at a certain time" |
| 214 | "The output file will be written at the working directory" |
| 215 | arg, args, line = self.parseline(line) |
| 216 | rest = line.split(' ') |
| 217 | self.sn.set_ping(int(rest[0]), int(rest[1]), int(rest[2])) |
| 218 | |
| 219 | def do_set_perf(self, line): |
| 220 | "perf msg of two nodes at a certain time" |