Changeset View
Changeset View
Standalone View
Standalone View
head/sys/sys/_termios.h
| Show First 20 Lines • Show All 137 Lines • ▼ Show 20 Lines | |||||
| #define CLOCAL 0x00008000 /* ignore modem status lines */ | #define CLOCAL 0x00008000 /* ignore modem status lines */ | ||||
| #if __BSD_VISIBLE | #if __BSD_VISIBLE | ||||
| #define CCTS_OFLOW 0x00010000 /* CTS flow control of output */ | #define CCTS_OFLOW 0x00010000 /* CTS flow control of output */ | ||||
| #define CRTSCTS (CCTS_OFLOW | CRTS_IFLOW) | #define CRTSCTS (CCTS_OFLOW | CRTS_IFLOW) | ||||
| #define CRTS_IFLOW 0x00020000 /* RTS flow control of input */ | #define CRTS_IFLOW 0x00020000 /* RTS flow control of input */ | ||||
| #define CDTR_IFLOW 0x00040000 /* DTR flow control of input */ | #define CDTR_IFLOW 0x00040000 /* DTR flow control of input */ | ||||
| #define CDSR_OFLOW 0x00080000 /* DSR flow control of output */ | #define CDSR_OFLOW 0x00080000 /* DSR flow control of output */ | ||||
| #define CCAR_OFLOW 0x00100000 /* DCD flow control of output */ | #define CCAR_OFLOW 0x00100000 /* DCD flow control of output */ | ||||
| #define CNO_RTSDTR 0x00200000 /* Do not assert RTS or DTR automatically */ | |||||
| #endif | #endif | ||||
| /* | /* | ||||
| * "Local" flags - dumping ground for other state | * "Local" flags - dumping ground for other state | ||||
| * | * | ||||
| * Warning: some flags in this structure begin with | * Warning: some flags in this structure begin with | ||||
| * the letter "I" and look like they belong in the | * the letter "I" and look like they belong in the | ||||
| ▲ Show 20 Lines • Show All 77 Lines • Show Last 20 Lines | |||||