1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-06 22:12:47 -05:00

Add SSH don't-allocate-pty option, and corresponding LF-implies-CR

terminal setting

[originally from svn r16]
This commit is contained in:
Simon Tatham
1999-01-15 11:30:40 +00:00
parent 1e312c2658
commit e68a529cc9
7 changed files with 76 additions and 44 deletions

View File

@ -95,6 +95,8 @@ typedef struct {
int port;
enum { PROT_TELNET, PROT_SSH } protocol;
int close_on_exit;
/* SSH options */
int nopty;
/* Telnet options */
char termtype[32];
char termspeed[32];
@ -111,6 +113,7 @@ typedef struct {
int savelines;
int dec_om;
int wrap_mode;
int lfhascr;
int win_name_always;
int width, height;
char font[64];