Home | History | Annotate | Download | only in openssh

Lines Matching full:inout

479 	int inout[2], err[2];
485 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
492 close(inout[0]);
493 close(inout[1]);
512 close(inout[0]);
513 close(inout[1]);
559 close(inout[1]);
561 if (dup2(inout[0], 0) < 0) /* stdin */
563 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
565 close(inout[0]);
618 close(inout[0]);
626 session_set_fds(s, inout[1], inout[1], err[1],
629 server_loop(pid, inout[1], inout[1], err[1]);
630 /* server_loop has closed inout[1] and err[1]. */