]> andersk Git - openssh.git/blame - sshpty.h
- stevesk@cvs.openbsd.org 2006/08/01 23:36:12
[openssh.git] / sshpty.h
CommitLineData
b1842393 1/* $OpenBSD: sshpty.h,v 1.9 2006/07/06 16:03:53 stevesk 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
5d9e4c8d 17#ifndef SSHPTY_H
18#define SSHPTY_H
8efc0c15 19
b1842393 20#include <sys/types.h>
21
22#include <pwd.h>
1d3e026f 23#include <termios.h>
24
07d80252 25struct termios get_saved_tio(void);
26void leave_raw_mode(void);
27void enter_raw_mode(void);
28
97f67e9a 29int pty_allocate(int *, int *, char *, size_t);
255cabd9 30void pty_release(const char *);
31void pty_make_controlling_tty(int *, const char *);
97f67e9a 32void pty_change_window_size(int, u_int, u_int, u_int, u_int);
255cabd9 33void pty_setowner(struct passwd *, const char *);
817175bc 34
5d9e4c8d 35#endif /* SSHPTY_H */
This page took 0.593501 seconds and 5 git commands to generate.