Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions implementation/routing/src/routing_manager_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3391,7 +3391,12 @@ void routing_manager_impl::on_net_interface_or_route_state_changed(bool _is_inte

void routing_manager_impl::start_ip_routing() {
#if defined(_WIN32) || defined(__QNX__)
// On platforms without netlink, on_net_interface_or_route_state_changed
// is never called, so sd_route_set_ would remain false and
// is_external_routing_ready() would never return true.
// Mark both conditions satisfied when IP routing starts on these platforms.
if_state_running_ = true;
sd_route_set_ = true;
#endif

if (routing_ready_handler_) {
Expand Down