]> andersk Git - openssh.git/blame - sshpty.h
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / sshpty.h
CommitLineData
ccd01778 1/* $OpenBSD: sshpty.h,v 1.12 2010/01/09 05:04:24 djm Exp $ */
93c3b6de 2
8efc0c15 3/*
5260325f 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
5260325f 7 * Functions for allocating a pseudo-terminal and making it the controlling
8 * tty.
bcbf86ec 9 *
10 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
5260325f 15 */
8efc0c15 16
1d3e026f 17#include <termios.h>
18
82bb6f20 19struct termios *get_saved_tio(void);
ccd01778 20void leave_raw_mode(int);
21void enter_raw_mode(int);
07d80252 22
97f67e9a 23int pty_allocate(int *, int *, char *, size_t);
255cabd9 24void pty_release(const char *);
25void pty_make_controlling_tty(int *, const char *);
97f67e9a 26void pty_change_window_size(int, u_int, u_int, u_int, u_int);
255cabd9 27void pty_setowner(struct passwd *, const char *);
This page took 0.330687 seconds and 5 git commands to generate.