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

First crack at `terminal-modes' in SSH. PuTTY now sends ERASE by default,

Unix Plink sends everything sensible it can find, and it's fully configurable
from the GUI.

I'm not entirely sure about the precise set of modes that Unix Plink should
look at; informed tweaks are welcome.

Also the Mac bits are guesses (but trivial).

[originally from svn r5653]
[this svn revision also touched putty-wishlist]
This commit is contained in:
Jacob Nevins
2005-04-21 13:57:08 +00:00
parent 2e761fefaf
commit fb581ac625
16 changed files with 726 additions and 35 deletions

View File

@ -177,6 +177,12 @@ void ldisc_update(void *frontend, int echo, int edit)
*/
}
char *get_ttymode(void *frontend, const char *mode)
{
struct gui_data *inst = (struct gui_data *)frontend;
return term_get_ttymode(inst->term, mode);
}
int from_backend(void *frontend, int is_stderr, const char *data, int len)
{
struct gui_data *inst = (struct gui_data *)frontend;