New patch to putty for windows
* Add the option to enter a '\r' in serial connection as well (previously was for telnet only)
* Modify the version to GNS3 build :)
Code:
------------------PUTTY.H-----------------------
Line 527
int push_one_enter; /* used to pust a '\r' inside the socket/console */
------------------CMDLINE.C-----------------------
Line 288
if (!strcmp(p, "-wt")) {
RETURN(2);
SAVEABLE(0);
strncpy(cfg->wintitle, value, sizeof(cfg->wintitle));
cfg->wintitle[sizeof(cfg->wintitle) - 1] = '\0';
cfg->no_remote_wintitle = 1;
}
if (!strcmp(p, "-sr")) {
RETURN(1);
SAVEABLE(0);
cfg->push_one_enter = 1;
}
------------------TELNET.C-----------------------
Line 766
/*
* Push a enter key inside the telnet socket
*/
if (telnet->cfg.push_one_enter) {
telnet->bufsize = sk_write(telnet->s, "\r", 1);
}
------------------WINSER.C-----------------------
Line 280
/*
* Push a enter key inside the serial console
*/
if (cfg->push_one_enter) {
serial->bufsize = handle_write(serial->out, "\r", 1);
}
----------------VERSION.C-------------------------
Line 36
#else
char ver[] = "GNS3 build 0.6.2, " __DATE__ " " __TIME__;
----------------------------------------------------