RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / termios.h
blob2acd0c1f8a2a305c8c7fc23895a6cba3cdd35ea8
1 #ifndef _LINUX_TERMIOS_H
2 #define _LINUX_TERMIOS_H
4 #include <linux/types.h>
5 #include <asm/termios.h>
7 #define NFF 5
9 struct termiox
11 __u16 x_hflag;
12 __u16 x_cflag;
13 __u16 x_rflag[NFF];
14 __u16 x_sflag;
17 #define RTSXOFF 0x0001 /* RTS flow control on input */
18 #define CTSXON 0x0002 /* CTS flow control on output */
19 #define DTRXOFF 0x0004 /* DTR flow control on input */
20 #define DSRXON 0x0008 /* DCD flow control on output */
22 #endif