Blame misc/ttyent.h

Packit Service 82fcde
/*
Packit Service 82fcde
 * Copyright (c) 1989, 1993
Packit Service 82fcde
 *	The Regents of the University of California.  All rights reserved.
Packit Service 82fcde
 *
Packit Service 82fcde
 * Redistribution and use in source and binary forms, with or without
Packit Service 82fcde
 * modification, are permitted provided that the following conditions
Packit Service 82fcde
 * are met:
Packit Service 82fcde
 * 1. Redistributions of source code must retain the above copyright
Packit Service 82fcde
 *    notice, this list of conditions and the following disclaimer.
Packit Service 82fcde
 * 2. Redistributions in binary form must reproduce the above copyright
Packit Service 82fcde
 *    notice, this list of conditions and the following disclaimer in the
Packit Service 82fcde
 *    documentation and/or other materials provided with the distribution.
Packit Service 82fcde
 * 4. Neither the name of the University nor the names of its contributors
Packit Service 82fcde
 *    may be used to endorse or promote products derived from this software
Packit Service 82fcde
 *    without specific prior written permission.
Packit Service 82fcde
 *
Packit Service 82fcde
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
Packit Service 82fcde
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit Service 82fcde
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit Service 82fcde
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
Packit Service 82fcde
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit Service 82fcde
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit Service 82fcde
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit Service 82fcde
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit Service 82fcde
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit Service 82fcde
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit Service 82fcde
 * SUCH DAMAGE.
Packit Service 82fcde
 *
Packit Service 82fcde
 *	@(#)ttyent.h	8.1 (Berkeley) 6/2/93
Packit Service 82fcde
 */
Packit Service 82fcde
Packit Service 82fcde
#ifndef	_TTYENT_H
Packit Service 82fcde
#define	_TTYENT_H	1
Packit Service 82fcde
Packit Service 82fcde
#include <features.h>
Packit Service 82fcde
Packit Service 82fcde
#define	_PATH_TTYS	"/etc/ttys"
Packit Service 82fcde
Packit Service 82fcde
#define	_TTYS_OFF	"off"
Packit Service 82fcde
#define	_TTYS_ON	"on"
Packit Service 82fcde
#define	_TTYS_SECURE	"secure"
Packit Service 82fcde
#define	_TTYS_WINDOW	"window"
Packit Service 82fcde
Packit Service 82fcde
struct ttyent {
Packit Service 82fcde
	char	*ty_name;	/* terminal device name */
Packit Service 82fcde
	char	*ty_getty;	/* command to execute, usually getty */
Packit Service 82fcde
	char	*ty_type;	/* terminal type for termcap */
Packit Service 82fcde
#define	TTY_ON		0x01	/* enable logins (start ty_getty program) */
Packit Service 82fcde
#define	TTY_SECURE	0x02	/* allow uid of 0 to login */
Packit Service 82fcde
	int	ty_status;	/* status flags */
Packit Service 82fcde
	char 	*ty_window;	/* command to start up window manager */
Packit Service 82fcde
	char	*ty_comment;	/* comment field */
Packit Service 82fcde
};
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
__BEGIN_DECLS
Packit Service 82fcde
Packit Service 82fcde
extern struct ttyent *getttyent (void) __THROW;
Packit Service 82fcde
extern struct ttyent *getttynam (const char *__tty) __THROW;
Packit Service 82fcde
extern int setttyent (void) __THROW;
Packit Service 82fcde
extern int endttyent (void) __THROW;
Packit Service 82fcde
Packit Service 82fcde
__END_DECLS
Packit Service 82fcde
Packit Service 82fcde
#endif /* ttyent.h */