| 1 |
root |
1.2 |
/* |
| 2 |
|
|
* Default mode to restore when releasing the PTS device. It is relaxed to be |
| 3 |
root |
1.1 |
* compatible with most systems, change it to a more secure value if your |
| 4 |
|
|
* system supports it (0640 for example). |
| 5 |
|
|
*/ |
| 6 |
|
|
#define RESTORE_TTY_MODE 0666 |
| 7 |
|
|
|
| 8 |
|
|
/* |
| 9 |
|
|
* Define if you want to use a separate process for pty/tty handling |
| 10 |
|
|
* when running setuid/setgid. You need this when making it setuid/setgid. |
| 11 |
|
|
*/ |
| 12 |
|
|
#define PTYTTY_HELPER 1 |
| 13 |
|
|
|
| 14 |
root |
1.2 |
/* |
| 15 |
|
|
* Provide a STL-like vector class. |
| 16 |
|
|
* The default is fine for normal C++ environments. |
| 17 |
|
|
*/ |
| 18 |
|
|
#include <vector> |
| 19 |
|
|
|