1*19c3b8c2SApple OSS Distributions /* 2*19c3b8c2SApple OSS Distributions * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. 3*19c3b8c2SApple OSS Distributions * 4*19c3b8c2SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*19c3b8c2SApple OSS Distributions * 6*19c3b8c2SApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code 7*19c3b8c2SApple OSS Distributions * as defined in and that are subject to the Apple Public Source License 8*19c3b8c2SApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in 9*19c3b8c2SApple OSS Distributions * compliance with the License. The rights granted to you under the License 10*19c3b8c2SApple OSS Distributions * may not be used to create, or enable the creation or redistribution of, 11*19c3b8c2SApple OSS Distributions * unlawful or unlicensed copies of an Apple operating system, or to 12*19c3b8c2SApple OSS Distributions * circumvent, violate, or enable the circumvention or violation of, any 13*19c3b8c2SApple OSS Distributions * terms of an Apple operating system software license agreement. 14*19c3b8c2SApple OSS Distributions * 15*19c3b8c2SApple OSS Distributions * Please obtain a copy of the License at 16*19c3b8c2SApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this file. 17*19c3b8c2SApple OSS Distributions * 18*19c3b8c2SApple OSS Distributions * The Original Code and all software distributed under the License are 19*19c3b8c2SApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*19c3b8c2SApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*19c3b8c2SApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*19c3b8c2SApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*19c3b8c2SApple OSS Distributions * Please see the License for the specific language governing rights and 24*19c3b8c2SApple OSS Distributions * limitations under the License. 25*19c3b8c2SApple OSS Distributions * 26*19c3b8c2SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*19c3b8c2SApple OSS Distributions */ 28*19c3b8c2SApple OSS Distributions /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ 29*19c3b8c2SApple OSS Distributions /* 30*19c3b8c2SApple OSS Distributions * Copyright (c) 1990, 1993 31*19c3b8c2SApple OSS Distributions * The Regents of the University of California. All rights reserved. 32*19c3b8c2SApple OSS Distributions * (c) UNIX System Laboratories, Inc. 33*19c3b8c2SApple OSS Distributions * All or some portions of this file are derived from material licensed 34*19c3b8c2SApple OSS Distributions * to the University of California by American Telephone and Telegraph 35*19c3b8c2SApple OSS Distributions * Co. or Unix System Laboratories, Inc. and are reproduced herein with 36*19c3b8c2SApple OSS Distributions * the permission of UNIX System Laboratories, Inc. 37*19c3b8c2SApple OSS Distributions * 38*19c3b8c2SApple OSS Distributions * Redistribution and use in source and binary forms, with or without 39*19c3b8c2SApple OSS Distributions * modification, are permitted provided that the following conditions 40*19c3b8c2SApple OSS Distributions * are met: 41*19c3b8c2SApple OSS Distributions * 1. Redistributions of source code must retain the above copyright 42*19c3b8c2SApple OSS Distributions * notice, this list of conditions and the following disclaimer. 43*19c3b8c2SApple OSS Distributions * 2. Redistributions in binary form must reproduce the above copyright 44*19c3b8c2SApple OSS Distributions * notice, this list of conditions and the following disclaimer in the 45*19c3b8c2SApple OSS Distributions * documentation and/or other materials provided with the distribution. 46*19c3b8c2SApple OSS Distributions * 3. All advertising materials mentioning features or use of this software 47*19c3b8c2SApple OSS Distributions * must display the following acknowledgement: 48*19c3b8c2SApple OSS Distributions * This product includes software developed by the University of 49*19c3b8c2SApple OSS Distributions * California, Berkeley and its contributors. 50*19c3b8c2SApple OSS Distributions * 4. Neither the name of the University nor the names of its contributors 51*19c3b8c2SApple OSS Distributions * may be used to endorse or promote products derived from this software 52*19c3b8c2SApple OSS Distributions * without specific prior written permission. 53*19c3b8c2SApple OSS Distributions * 54*19c3b8c2SApple OSS Distributions * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 55*19c3b8c2SApple OSS Distributions * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 56*19c3b8c2SApple OSS Distributions * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 57*19c3b8c2SApple OSS Distributions * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 58*19c3b8c2SApple OSS Distributions * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 59*19c3b8c2SApple OSS Distributions * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 60*19c3b8c2SApple OSS Distributions * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 61*19c3b8c2SApple OSS Distributions * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 62*19c3b8c2SApple OSS Distributions * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 63*19c3b8c2SApple OSS Distributions * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 64*19c3b8c2SApple OSS Distributions * SUCH DAMAGE. 65*19c3b8c2SApple OSS Distributions * 66*19c3b8c2SApple OSS Distributions * @(#)ioctl_compat.h 8.4 (Berkeley) 1/21/94 67*19c3b8c2SApple OSS Distributions */ 68*19c3b8c2SApple OSS Distributions 69*19c3b8c2SApple OSS Distributions #ifndef _SYS_IOCTL_COMPAT_H_ 70*19c3b8c2SApple OSS Distributions #define _SYS_IOCTL_COMPAT_H_ 71*19c3b8c2SApple OSS Distributions 72*19c3b8c2SApple OSS Distributions #include <sys/ttychars.h> 73*19c3b8c2SApple OSS Distributions #include <sys/ttydev.h> 74*19c3b8c2SApple OSS Distributions 75*19c3b8c2SApple OSS Distributions struct tchars { 76*19c3b8c2SApple OSS Distributions char t_intrc; /* interrupt */ 77*19c3b8c2SApple OSS Distributions char t_quitc; /* quit */ 78*19c3b8c2SApple OSS Distributions char t_startc; /* start output */ 79*19c3b8c2SApple OSS Distributions char t_stopc; /* stop output */ 80*19c3b8c2SApple OSS Distributions char t_eofc; /* end-of-file */ 81*19c3b8c2SApple OSS Distributions char t_brkc; /* input delimiter (like nl) */ 82*19c3b8c2SApple OSS Distributions }; 83*19c3b8c2SApple OSS Distributions 84*19c3b8c2SApple OSS Distributions struct ltchars { 85*19c3b8c2SApple OSS Distributions char t_suspc; /* stop process signal */ 86*19c3b8c2SApple OSS Distributions char t_dsuspc; /* delayed stop process signal */ 87*19c3b8c2SApple OSS Distributions char t_rprntc; /* reprint line */ 88*19c3b8c2SApple OSS Distributions char t_flushc; /* flush output (toggles) */ 89*19c3b8c2SApple OSS Distributions char t_werasc; /* word erase */ 90*19c3b8c2SApple OSS Distributions char t_lnextc; /* literal next character */ 91*19c3b8c2SApple OSS Distributions }; 92*19c3b8c2SApple OSS Distributions 93*19c3b8c2SApple OSS Distributions /* 94*19c3b8c2SApple OSS Distributions * Structure for TIOCGETP and TIOCSETP ioctls. 95*19c3b8c2SApple OSS Distributions */ 96*19c3b8c2SApple OSS Distributions #ifndef _SGTTYB_ 97*19c3b8c2SApple OSS Distributions #define _SGTTYB_ 98*19c3b8c2SApple OSS Distributions struct sgttyb { 99*19c3b8c2SApple OSS Distributions char sg_ispeed; /* input speed */ 100*19c3b8c2SApple OSS Distributions char sg_ospeed; /* output speed */ 101*19c3b8c2SApple OSS Distributions char sg_erase; /* erase character */ 102*19c3b8c2SApple OSS Distributions char sg_kill; /* kill character */ 103*19c3b8c2SApple OSS Distributions short sg_flags; /* mode flags */ 104*19c3b8c2SApple OSS Distributions }; 105*19c3b8c2SApple OSS Distributions #endif 106*19c3b8c2SApple OSS Distributions 107*19c3b8c2SApple OSS Distributions #ifdef USE_OLD_TTY 108*19c3b8c2SApple OSS Distributions # undef TIOCGETD 109*19c3b8c2SApple OSS Distributions # define TIOCGETD _IOR('t', 0, int) /* get line discipline */ 110*19c3b8c2SApple OSS Distributions # undef TIOCSETD 111*19c3b8c2SApple OSS Distributions # define TIOCSETD _IOW('t', 1, int) /* set line discipline */ 112*19c3b8c2SApple OSS Distributions #else 113*19c3b8c2SApple OSS Distributions # define OTIOCGETD _IOR('t', 0, int) /* get line discipline */ 114*19c3b8c2SApple OSS Distributions # define OTIOCSETD _IOW('t', 1, int) /* set line discipline */ 115*19c3b8c2SApple OSS Distributions #endif 116*19c3b8c2SApple OSS Distributions #define TIOCHPCL _IO('t', 2) /* hang up on last close */ 117*19c3b8c2SApple OSS Distributions #define TIOCGETP _IOR('t', 8,struct sgttyb)/* get parameters -- gtty */ 118*19c3b8c2SApple OSS Distributions #define TIOCSETP _IOW('t', 9,struct sgttyb)/* set parameters -- stty */ 119*19c3b8c2SApple OSS Distributions #define TIOCSETN _IOW('t',10,struct sgttyb)/* as above, but no flushtty*/ 120*19c3b8c2SApple OSS Distributions #define TIOCSETC _IOW('t',17,struct tchars)/* set special characters */ 121*19c3b8c2SApple OSS Distributions #define TIOCGETC _IOR('t',18,struct tchars)/* get special characters */ 122*19c3b8c2SApple OSS Distributions #define TANDEM 0x00000001 /* send stopc on out q full */ 123*19c3b8c2SApple OSS Distributions #define CBREAK 0x00000002 /* half-cooked mode */ 124*19c3b8c2SApple OSS Distributions #define LCASE 0x00000004 /* simulate lower case */ 125*19c3b8c2SApple OSS Distributions #define ECHO 0x00000008 /* echo input */ 126*19c3b8c2SApple OSS Distributions #define CRMOD 0x00000010 /* map \r to \r\n on output */ 127*19c3b8c2SApple OSS Distributions #define RAW 0x00000020 /* no i/o processing */ 128*19c3b8c2SApple OSS Distributions #define ODDP 0x00000040 /* get/send odd parity */ 129*19c3b8c2SApple OSS Distributions #define EVENP 0x00000080 /* get/send even parity */ 130*19c3b8c2SApple OSS Distributions #define ANYP 0x000000c0 /* get any parity/send none */ 131*19c3b8c2SApple OSS Distributions #define NLDELAY 0x00000300 /* \n delay */ 132*19c3b8c2SApple OSS Distributions #define TBDELAY 0x00000c00 /* horizontal tab delay */ 133*19c3b8c2SApple OSS Distributions #define XTABS 0x00000c00 /* expand tabs on output */ 134*19c3b8c2SApple OSS Distributions #define CRDELAY 0x00003000 /* \r delay */ 135*19c3b8c2SApple OSS Distributions #define VTDELAY 0x00004000 /* vertical tab delay */ 136*19c3b8c2SApple OSS Distributions #define BSDELAY 0x00008000 /* \b delay */ 137*19c3b8c2SApple OSS Distributions #ifndef _SYS_TERMIOS_H_ 138*19c3b8c2SApple OSS Distributions /* 139*19c3b8c2SApple OSS Distributions * These manifest constants have the same names as those in <sys/termios.h>, 140*19c3b8c2SApple OSS Distributions * so you are not permitted to have both definitions in scope simultaneously 141*19c3b8c2SApple OSS Distributions * in the same compilation unit. 142*19c3b8c2SApple OSS Distributions */ 143*19c3b8c2SApple OSS Distributions #define NL0 0x00000000 144*19c3b8c2SApple OSS Distributions #define NL1 0x00000100 /* tty 37 */ 145*19c3b8c2SApple OSS Distributions #define NL2 0x00000200 /* vt05 */ 146*19c3b8c2SApple OSS Distributions #define NL3 0x00000300 147*19c3b8c2SApple OSS Distributions #define TAB0 0x00000000 148*19c3b8c2SApple OSS Distributions #define TAB1 0x00000400 /* tty 37 */ 149*19c3b8c2SApple OSS Distributions #define TAB2 0x00000800 150*19c3b8c2SApple OSS Distributions #define CR0 0x00000000 151*19c3b8c2SApple OSS Distributions #define CR1 0x00001000 /* tn 300 */ 152*19c3b8c2SApple OSS Distributions #define CR2 0x00002000 /* tty 37 */ 153*19c3b8c2SApple OSS Distributions #define CR3 0x00003000 /* concept 100 */ 154*19c3b8c2SApple OSS Distributions #define FF0 0x00000000 155*19c3b8c2SApple OSS Distributions #define FF1 0x00004000 /* tty 37 */ 156*19c3b8c2SApple OSS Distributions #define BS0 0x00000000 157*19c3b8c2SApple OSS Distributions #define BS1 0x00008000 158*19c3b8c2SApple OSS Distributions #endif /* !_SYS_TERMIOS_H_ */ 159*19c3b8c2SApple OSS Distributions #define ALLDELAY (NLDELAY|TBDELAY|CRDELAY|VTDELAY|BSDELAY) 160*19c3b8c2SApple OSS Distributions #define CRTBS 0x00010000 /* do backspacing for crt */ 161*19c3b8c2SApple OSS Distributions #define PRTERA 0x00020000 /* \ ... / erase */ 162*19c3b8c2SApple OSS Distributions #define CRTERA 0x00040000 /* " \b " to wipe out char */ 163*19c3b8c2SApple OSS Distributions #define TILDE 0x00080000 /* hazeltine tilde kludge */ 164*19c3b8c2SApple OSS Distributions #define MDMBUF 0x00100000 /*start/stop output on carrier*/ 165*19c3b8c2SApple OSS Distributions #define LITOUT 0x00200000 /* literal output */ 166*19c3b8c2SApple OSS Distributions #define TOSTOP 0x00400000 /*SIGSTOP on background output*/ 167*19c3b8c2SApple OSS Distributions #define FLUSHO 0x00800000 /* flush output to terminal */ 168*19c3b8c2SApple OSS Distributions #define NOHANG 0x01000000 /* (no-op) was no SIGHUP on carrier drop */ 169*19c3b8c2SApple OSS Distributions #define L001000 0x02000000 170*19c3b8c2SApple OSS Distributions #define CRTKIL 0x04000000 /* kill line with " \b " */ 171*19c3b8c2SApple OSS Distributions #define PASS8 0x08000000 172*19c3b8c2SApple OSS Distributions #define CTLECH 0x10000000 /* echo control chars as ^X */ 173*19c3b8c2SApple OSS Distributions #define PENDIN 0x20000000 /* tp->t_rawq needs reread */ 174*19c3b8c2SApple OSS Distributions #define DECCTQ 0x40000000 /* only ^Q starts after ^S */ 175*19c3b8c2SApple OSS Distributions #define NOFLSH 0x80000000 /* no output flush on signal */ 176*19c3b8c2SApple OSS Distributions #define TIOCLBIS _IOW('t', 127, int) /* bis local mode bits */ 177*19c3b8c2SApple OSS Distributions #define TIOCLBIC _IOW('t', 126, int) /* bic local mode bits */ 178*19c3b8c2SApple OSS Distributions #define TIOCLSET _IOW('t', 125, int) /* set entire local mode word */ 179*19c3b8c2SApple OSS Distributions #define TIOCLGET _IOR('t', 124, int) /* get local modes */ 180*19c3b8c2SApple OSS Distributions #define LCRTBS (CRTBS>>16) 181*19c3b8c2SApple OSS Distributions #define LPRTERA (PRTERA>>16) 182*19c3b8c2SApple OSS Distributions #define LCRTERA (CRTERA>>16) 183*19c3b8c2SApple OSS Distributions #define LTILDE (TILDE>>16) 184*19c3b8c2SApple OSS Distributions #define LMDMBUF (MDMBUF>>16) 185*19c3b8c2SApple OSS Distributions #define LLITOUT (LITOUT>>16) 186*19c3b8c2SApple OSS Distributions #define LTOSTOP (TOSTOP>>16) 187*19c3b8c2SApple OSS Distributions #define LFLUSHO (FLUSHO>>16) 188*19c3b8c2SApple OSS Distributions #define LNOHANG (NOHANG>>16) 189*19c3b8c2SApple OSS Distributions #define LCRTKIL (CRTKIL>>16) 190*19c3b8c2SApple OSS Distributions #define LPASS8 (PASS8>>16) 191*19c3b8c2SApple OSS Distributions #define LCTLECH (CTLECH>>16) 192*19c3b8c2SApple OSS Distributions #define LPENDIN (PENDIN>>16) 193*19c3b8c2SApple OSS Distributions #define LDECCTQ (DECCTQ>>16) 194*19c3b8c2SApple OSS Distributions #define LNOFLSH (NOFLSH>>16) 195*19c3b8c2SApple OSS Distributions #define TIOCSLTC _IOW('t',117,struct ltchars)/* set local special chars*/ 196*19c3b8c2SApple OSS Distributions #define TIOCGLTC _IOR('t',116,struct ltchars)/* get local special chars*/ 197*19c3b8c2SApple OSS Distributions #define OTIOCCONS _IO('t', 98) /* for hp300 -- sans int arg */ 198*19c3b8c2SApple OSS Distributions #define OTTYDISC 0 199*19c3b8c2SApple OSS Distributions #define NETLDISC 1 200*19c3b8c2SApple OSS Distributions #define NTTYDISC 2 201*19c3b8c2SApple OSS Distributions 202*19c3b8c2SApple OSS Distributions #define TIOCGSID _IOR('t', 99, int) /* For svr4 -- get session id */ 203*19c3b8c2SApple OSS Distributions 204*19c3b8c2SApple OSS Distributions #endif /* !_SYS_IOCTL_COMPAT_H_ */ 205