list the routing table of a node at a certain time.
(self, line)
| 191 | self.sn.set_recovery(int(rest[0])) |
| 192 | |
| 193 | def do_check_routing_table(self, line): |
| 194 | "list the routing table of a node at a certain time." |
| 195 | "The output file will be written at the working directory." |
| 196 | arg, args, line = self.parseline(line) |
| 197 | rest = line.split(' ') |
| 198 | self.sn.check_routing_table(int(rest[0]), int(rest[1])) |
| 199 | |
| 200 | def do_set_next_hop(self, line): |
| 201 | "set the nhelpext hop at a certain time" |
nothing calls this directly
no test coverage detected