Lines Matching defs:route
39 log_link_error_errno(link, r, "Could not set NDisc route or address: %m");
105 _cleanup_route_free_ Route *route = NULL;
116 r = route_new(&route);
118 log_link_error_errno(link, r, "Could not allocate route: %m");
124 route->family = AF_INET6;
125 route->table = RT_TABLE_MAIN;
126 route->protocol = RTPROT_RA;
127 route->flags = RTM_F_PREFIX;
128 route->dst.in6 = *prefix;
129 route->dst_prefixlen = prefixlen;
130 route->lifetime = time_now + lifetime * USEC_PER_SEC;
132 r = route_configure(route, link, ndisc_netlink_handler);
134 log_link_warning_errno(link, r, "Could not set prefix route: %m");
143 _cleanup_route_free_ Route *route = NULL;
167 r = route_new(&route);
169 log_link_error_errno(link, r, "Could not allocate route: %m");
175 route->family = AF_INET6;
176 route->table = RT_TABLE_MAIN;
177 route->protocol = RTPROT_RA;
178 route->pref = pref;
179 route->gw.in6 = *gateway;
180 route->lifetime = time_now + lifetime * USEC_PER_SEC;
182 r = route_configure(route, link, ndisc_netlink_handler);
184 log_link_warning_errno(link, r, "Could not set default route: %m");