Home | History | Annotate | Download | only in slirp

Lines Matching refs:fd0

830 	int fd0[2];
843 if (socketpair(PF_UNIX,SOCK_STREAM,0, fd0) == -1) {
850 if (slirp_openpty(&fd0[0], &fd0[1]) == -1) {
863 close(fd0[0]);
864 close(fd0[1]);
869 close(fd0[0]);
882 dup2(fd0[1], 0);
883 dup2(fd0[1], 1);
900 close(fd0[1]);
902 so->s=fd0[0];