1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-05 13:32:48 -05:00

Mark Baker's raw-TCP back end (untested and experimental as yet)

[originally from svn r266]
This commit is contained in:
Simon Tatham
1999-11-01 16:40:40 +00:00
parent 2ec48b843b
commit 6693daa636
7 changed files with 266 additions and 22 deletions

View File

@ -178,7 +178,8 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
}
}
back = (cfg.protocol == PROT_SSH ? &ssh_backend : &telnet_backend);
back = (cfg.protocol == PROT_SSH ? &ssh_backend :
cfg.protocol == PROT_TELNET ? &telnet_backend : &raw_backend );
if (!prev) {
wndclass.style = 0;