Home | History | Annotate | Download | only in pppd

Lines Matching refs:cols

1503     char *cols[ROUTE_MAX_COLS], *p;
1513 cols[col] = strtok(p, route_delims);
1514 if (cols[col] == NULL)
1519 SIN_ADDR(rt->rt_dst) = strtoul(cols[route_dest_col], NULL, 16);
1520 SIN_ADDR(rt->rt_gateway) = strtoul(cols[route_gw_col], NULL, 16);
1521 SIN_ADDR(rt->rt_genmask) = strtoul(cols[route_mask_col], NULL, 16);
1523 rt->rt_flags = (short) strtoul(cols[route_flags_col], NULL, 16);
1524 rt->rt_dev = cols[route_dev_col];