Blame view

include/linux/termios.h 443 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  #ifndef _LINUX_TERMIOS_H
  #define _LINUX_TERMIOS_H
  
  #include <linux/types.h>
  #include <asm/termios.h>
1d65b4a08   Alan Cox   tty: Add termiox
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  #define NFF	5
  
  struct termiox
  {
  	__u16	x_hflag;
  	__u16	x_cflag;
  	__u16	x_rflag[NFF];
  	__u16	x_sflag;
  };
  
  #define	RTSXOFF		0x0001		/* RTS flow control on input */
  #define	CTSXON		0x0002		/* CTS flow control on output */
  #define	DTRXOFF		0x0004		/* DTR flow control on input */
  #define DSRXON		0x0008		/* DCD flow control on output */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
  #endif