blob: 4eb479f76edbc0fcb7c52486eeb4f9ccc96d19ce [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Functions for allocating a pseudo-terminal and making it the controlling
6 * tty.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000015/* RCSID("$OpenBSD: sshpty.h,v 1.3 2001/06/26 17:27:25 markus Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
Kevin Steves6189e192001-04-02 14:02:55 +000017#ifndef SSHPTY_H
18#define SSHPTY_H
Damien Millerd4a8b7e1999-10-27 13:42:43 +100019
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000020int pty_allocate(int *, int *, char *, int);
21void pty_release(const char *);
22void pty_make_controlling_tty(int *, const char *);
23void pty_change_window_size(int, int, int, int, int);
24void pty_setowner(struct passwd *, const char *);
Damien Millerc7d8dbb2000-03-02 23:30:53 +110025
Kevin Steves6189e192001-04-02 14:02:55 +000026#endif /* SSHPTY_H */