set the nhelpext hop at a certain time
(self, line)
| 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" |
| 202 | "Sat, Des and NextHopSat are indexes and Sat and NextHopSat are neighbors, which will be processed during emulation" |
| 203 | arg, args, line = self.parseline(line) |
| 204 | rest = line.split(' ') |
| 205 | self.sn.set_next_hop(int(rest[0]), int(rest[1]), int(rest[2]), |
| 206 | int(rest[3])) |
| 207 | |
| 208 | def do_path(self, line): |
| 209 | "get the working directory" |
nothing calls this directly
no test coverage detected