Home | History | Annotate | Download | only in openssh

Lines Matching defs:in

13  * incompatible with the protocol description in the RFC file, it must be
20 * in Canada (German citizen).
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
71 #include <netinet/in.h>
140 * a new slave launched in the foreground for ControlPersist.
160 * in configuration files. See readconf.h.
169 * command line, or the HostName specified for the user-supplied name in a
446 debug2("%s: host %s not found in any suffix", __func__, *hostp);
481 /* Rewrite the port number in an addrinfo list of addresses */
952 * Save the command to execute on the remote host in a buffer. There
1009 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1042 /* Don't fatal proxied host names not in the DNS */
1044 cleanup_exit(255); /* logged in resolve_host */
1062 * reset it in address list
1213 * in case we will need it later for combined rsa-rhosts
1318 /* Expand ~ in known host file names. */
1496 int in, out;
1505 if ((in = dup(STDIN_FILENO)) < 0 ||
1507 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1509 stdio_forward_port, in, out)) == NULL)
1640 /* Store TERM in the packet. There is no limit on the
1647 /* Store window size in the packet. */
1655 /* Store tty modes in the packet. */
1727 * If requested and we are not interested in replies to remote
1728 * forwarding requests, then let ssh continue in the background.
1813 int window, packetmax, in, out, err;
1816 in = open(_PATH_DEVNULL, O_RDONLY);
1818 in = dup(STDIN_FILENO);
1823 if (in < 0 || out < 0 || err < 0)
1824 fatal("dup() in/out/err failed");
1827 if (!isatty(in))
1828 set_nonblock(in);
1841 "session", SSH_CHANNEL_OPENING, in, out, err,
1869 * If we are in control persist mode and have a working mux listen
1874 * after the connection is fully established (in particular,
1920 * If requested and we are not interested in replies to remote
1921 * forwarding requests, then let ssh continue in the background.