Home | History | Annotate | Download | only in pppd

Lines Matching refs:cols

1537     char *cols[ROUTE_MAX_COLS], *p;
1547 cols[col] = strtok(p, route_delims);
1548 if (cols[col] == NULL)
1553 SIN_ADDR(rt->rt_dst) = strtoul(cols[route_dest_col], NULL, 16);
1554 SIN_ADDR(rt->rt_gateway) = strtoul(cols[route_gw_col], NULL, 16);
1555 SIN_ADDR(rt->rt_genmask) = strtoul(cols[route_mask_col], NULL, 16);
1557 rt->rt_flags = (short) strtoul(cols[route_flags_col], NULL, 16);
1558 rt->rt_dev = cols[route_dev_col];