mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
6d0e9b205d
The current pty.c backend is temporarily a loopback device for terminal emulator testing, the display handling is only just enough to show that terminal.c is functioning, the keyboard handling is laughable, and most features are absent. Next step: bring output and input up to a plausibly working state, and put a real pty on the back to create a vaguely usable prototype. Oh, and a scrollbar would be nice too. In _theory_ the Windows builds should still work fine after this... [originally from svn r2010]
17 lines
360 B
C
17 lines
360 B
C
/*
|
|
* Linking module for PSCP: list the available backends, but
|
|
* without accompanying function suites. Used only for name
|
|
* lookups.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "putty.h"
|
|
|
|
struct backend_list backends[] = {
|
|
{PROT_SSH, "ssh", NULL},
|
|
{PROT_TELNET, "telnet", NULL},
|
|
{PROT_RLOGIN, "rlogin", NULL},
|
|
{PROT_RAW, "raw", NULL},
|
|
{0, NULL}
|
|
};
|