Lines Matching defs:route
28 _cleanup_route_free_ Route *route = NULL;
56 r = route_new(&route);
58 log_link_error_errno(link, r, "Could not allocate route: %m");
62 route->family = AF_INET;
63 route->scope = RT_SCOPE_LINK;
64 route->priority = IPV4LL_ROUTE_METRIC;
66 route_remove(route, link, &link_route_remove_handler);
82 log_link_error_errno(link, r, "could not set ipv4ll route: %m");
118 _cleanup_route_free_ Route *route = NULL;
150 r = route_new(&route);
154 route->family = AF_INET;
155 route->scope = RT_SCOPE_LINK;
156 route->protocol = RTPROT_STATIC;
157 route->priority = IPV4LL_ROUTE_METRIC;
159 r = route_configure(route, link, ipv4ll_route_handler);