Home | History | Annotate | Download | only in dhcpcd

Lines Matching defs:route

672 	struct rt *route = NULL;
691 if (route) {
692 route->next = xmalloc(sizeof(*route));
693 route = route->next;
695 routes = route = xmalloc(sizeof(*routes));
696 route->next = NULL;
697 memcpy(&route
699 memcpy(&route->gate.s_addr, p, 4);
701 route->net.s_addr = route_netmask(route->dest.s_addr);
710 if (route) {
711 route->next = xzalloc(sizeof(*route));
712 route = route->next;
714 routes = route = xzalloc(sizeof(*route));
715 memcpy(&route->gate.s_addr, p, 4);