mirror of
https://github.com/openwrt/routing.git
synced 2025-02-23 19:45:05 +00:00
30 lines
890 B
Diff
30 lines
890 B
Diff
From b70c7d519ddd178b76d89bca7d3fe1fd186af862 Mon Sep 17 00:00:00 2001
|
|
From: Oryon <pierre@darou.fr>
|
|
Date: Tue, 11 Mar 2014 12:12:07 +0100
|
|
Subject: [PATCH 1/2] Accept default routes without RTA_DST
|
|
|
|
---
|
|
src/linux/linux_unicast_route.cpp | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/src/linux/linux_unicast_route.cpp
|
|
+++ b/src/linux/linux_unicast_route.cpp
|
|
@@ -335,7 +335,7 @@ void linux_unicast_router::handle_route_
|
|
netlink_msg::parse_rtatable(tb, RTA_MAX, RTM_RTA(NLMSG_DATA(hdr)),
|
|
hdr->nlmsg_len - NLMSG_LENGTH(sizeof(rtmsg)));
|
|
|
|
- if (tb[RTA_DST]) {
|
|
+ //if (tb[RTA_DST]) { /* Accept default routes */
|
|
lookup_result res;
|
|
|
|
parse_prefix_rec(tb, msg->r.rtm_dst_len,
|
|
@@ -361,7 +361,7 @@ void linux_unicast_router::handle_route_
|
|
}
|
|
|
|
prefix_changed(isnew, res);
|
|
- }
|
|
+ //}
|
|
}
|
|
|
|
void linux_unicast_router::handle_intf_event(bool isnew, nlmsghdr *hdr) {
|