diff options
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;
|