diff options
author | marha <marha@users.sourceforge.net> | 2012-01-24 16:46:55 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-01-24 16:46:55 +0100 |
commit | 6039fd0faf73c9d6c5b2abf9d824734218ec5eee (patch) | |
tree | 88f66f9d7c4763f206de6043ef45c63b94472690 /tools/plink/ldisc.h | |
parent | b683b8f5675e280a6dd4ab82d6b9394182798b55 (diff) | |
download | vcxsrv-6039fd0faf73c9d6c5b2abf9d824734218ec5eee.tar.gz vcxsrv-6039fd0faf73c9d6c5b2abf9d824734218ec5eee.tar.bz2 vcxsrv-6039fd0faf73c9d6c5b2abf9d824734218ec5eee.zip |
Update to putty 9388
Diffstat (limited to 'tools/plink/ldisc.h')
-rw-r--r-- | tools/plink/ldisc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/plink/ldisc.h b/tools/plink/ldisc.h index ef84f6d6d..030c0ce8d 100644 --- a/tools/plink/ldisc.h +++ b/tools/plink/ldisc.h @@ -11,10 +11,14 @@ typedef struct ldisc_tag {
Terminal *term;
Backend *back;
- Config *cfg;
void *backhandle;
void *frontend;
+ /*
+ * Values cached out of conf.
+ */
+ int telnet_keyboard, telnet_newline, protocol, localecho, localedit;
+
char *buf;
int buflen, bufsiz, quotenext;
} *Ldisc;
|