-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sys/shell: removed route
to show the RPL internal routing table
#2782
Conversation
@@ -71,7 +71,7 @@ int _fib_route_handler(int argc, char **argv) | |||
/* e.g. fibroute right now dont care about the adress/protocol family */ | |||
if (argc == 1) { | |||
fib_print_routes(); | |||
return; | |||
return 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes in this file are rather unrelated to the PR description, but they only fix a warning regarding return values.
So if there are no objections I would leave them inside and not open a new PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moved it to a separate commit (#2812)
…le, this will be fixed with RIOT-OS#2782 merged
So, this should be merged after #2765, right? How about adding the corresponding dependency label? |
Nevertheless they should be merged more or less at the same time to ensure that we don't have a state without a route lookup command for a long time. |
@OlegHahm definitely, a short time distance between the both would be very beneficial :) |
ACK as soon as #2765 has been reviewed and ACked, too |
…le, this will be fixed with RIOT-OS#2782 merged
…le, this will be fixed with RIOT-OS#2782 merged
…le, this will be fixed with RIOT-OS#2782 merged
298e43e
to
5be4e36
Compare
5be4e36
to
ee1c149
Compare
…le, this will be fixed with RIOT-OS#2782 merged
…le, this will be fixed with RIOT-OS#2782 merged
…le, this will be fixed with RIOT-OS#2782 merged
ee1c149
to
ca19ec0
Compare
…le, this will be fixed with RIOT-OS#2782 merged
…le, this will be fixed with RIOT-OS#2782 merged
this PR is obsolete now, because it references the former nework stack |
With the introduction of the FIB, RPL will eventually (#2765) use it to store the discovered next-hops.
This PR removes the route command that accesses the RPL internal routing table.