Lines Matching defs:route_gw
68 _cleanup_route_free_ Route *route_gw = NULL;
80 r = route_new(&route_gw);
87 route_gw->family = AF_INET;
88 route_gw->dst.in = gateway;
89 route_gw->dst_prefixlen = 32;
90 route_gw->prefsrc.in = address;
91 route_gw->scope = RT_SCOPE_LINK;
92 route_gw->protocol = RTPROT_DHCP;
93 route_gw->priority = link->network->dhcp_route_metric;
95 r = route_configure(route_gw, link, &dhcp4_route_handler);
186 _cleanup_route_free_ Route *route_gw = NULL;
189 r = route_new(&route_gw);
191 route_gw->family = AF_INET;
192 route_gw->dst.in = gateway;
193 route_gw->dst_prefixlen = 32;
194 route_gw->scope = RT_SCOPE_LINK;
196 route_remove(route_gw, link,