Home | History | Annotate | Download | only in pppd

Lines Matching full:opipe

631 			int ipipe[2], opipe[2], ok;
633 if (pipe(ipipe) < 0 || pipe(opipe) < 0)
638 (void) fcntl(opipe[1], F_SETFD, FD_CLOEXEC);
640 ok = device_script(ptycommand, opipe[0], ipipe[1], 1) == 0
641 && start_charshunt(ipipe[0], opipe[1]);
644 close(opipe[0]);
645 close(opipe[1]);