summaryrefslogtreecommitdiff
path: root/Userland/Utilities/route.cpp
AgeCommit message (Collapse)Author
2022-10-25Utilities: Use new global variables at /sys/kernel/ directoryLiav A
2022-10-17route: Accept CIDR notation when specifying networkbrapru
Now that the IPv4Address has the ability to generate valid IP addresses from CIDR notations, this provides a nicer interface to the user when specifying the network address to add or delete.
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
Each of these strings would previously rely on StringView's char const* constructor overload, which would call __builtin_strlen on the string. Since we now have operator ""sv, we can replace these with much simpler versions. This opens the door to being able to remove StringView(char const*). No functional changes.
2022-07-09route: Support removing entries with unknown gatewayMaciej
2022-05-26route: Add the flags columnbrapru
2022-04-30Kernel+route: Support global routing table deletionbrapru
2022-04-28Kernel+Utilities: Add the route utilitybrapru
This exposes the global routing table in the /proc directory and adds the userspace utility to query dynamically add from the table.