Home | History | Annotate | Download | only in pppd

Lines Matching defs:cf

1547     int cf[2];
1562 cf[0] = (pcomp? COMP_PROT: 0) + (accomp? COMP_AC: 0);
1563 cf[1] = COMP_PROT | COMP_AC;
1565 strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0)
1597 int cf[2];
1612 cf[0] = (pcomp? DECOMP_PROT: 0) + (accomp? DECOMP_AC: 0);
1613 cf[1] = DECOMP_PROT | DECOMP_AC;
1615 strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0)
1642 int cf[2];
1644 cf[0] = (isopen? CCP_ISOPEN: 0) + (isup? CCP_ISUP: 0);
1645 cf[1] = CCP_ISOPEN | CCP_ISUP | CCP_ERROR | CCP_FATALERROR;
1646 if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
1722 int cf[2];
1724 cf[0] = cf[1] = 0;
1725 if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
1730 return cf[0] & CCP_FATALERROR;
1740 int cf[2];
1751 cf[0] = (vjcomp? COMP_VJC + DECOMP_VJC: 0) /* XXX this is wrong */
1753 cf[1] = COMP_VJC + DECOMP_VJC + COMP_VJCCID + DECOMP_VJCCID;
1754 if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {