date and time created 89/05/16 08:59:35 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 16 May 1989 23:59:35 +0000 (15:59 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 16 May 1989 23:59:35 +0000 (15:59 -0800)
SCCS-vsn: contrib/connectd/include/ttyent.h 5.1

usr/src/contrib/connectd/include/ttyent.h [new file with mode: 0644]

diff --git a/usr/src/contrib/connectd/include/ttyent.h b/usr/src/contrib/connectd/include/ttyent.h
new file mode 100644 (file)
index 0000000..3e8a7c9
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * Copyright (c) 1989 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Bill Jolitz.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that the above copyright notice and this paragraph are
+ * duplicated in all such forms and that any documentation,
+ * advertising materials, and other materials related to such
+ * distribution and use acknowledge that the software was developed
+ * by the University of California, Berkeley.  The name of the
+ * University may not be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ *     @(#)ttyent.h    5.1 (Berkeley) %G%
+ */
+
+struct ttyent { /* see getttyent(3) */
+       char    *ty_name;       /* terminal device name */
+       char    *ty_getty;      /* command to execute, usually getty */
+       char    *ty_type;       /* terminal type for termcap (3X) */
+       int     ty_status;      /* status flags (see below for defines) */
+       char    *ty_window;     /* command to start up window manager */
+       char    *ty_comment;    /* usually the location of the terminal */
+       char    **ty_flags ;    /* list of flag strings, null terminated */
+};
+
+#define TTY_ON         0x1     /* enable logins (startup getty) */
+#define TTY_SECURE     0x2     /* allow root to login */
+
+extern struct ttyent *getttyent();
+extern struct ttyent *getttynam();