June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: #ifndef _LINUX_TERMIOS_H 02: #define _LINUX_TERMIOS_H 03: 04: #include <linux/types.h> 05: #include <asm/termios.h> 06: 07: #define NFF 5 08: 09: struct termiox 10: { 11: __u16 x_hflag; 12: __u16 x_cflag; 13: __u16 x_rflag[NFF]; 14: __u16 x_sflag; 15: }; 16: 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 */ 21: 22: #endif 23: