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

First stab at the ability to compile puttytel.exe, an SSH-free

variant which is patent-safe in the US and legal in France and
Russia. This is a horrible hack in some ways: it's shown up serious
deficiencies in the module boundaries. Needs further work, probably
once the SSH implementations are recombined.

[originally from svn r410]
This commit is contained in:
Simon Tatham
2000-03-15 15:08:48 +00:00
parent 7aa84c296f
commit 96dbf9c6e6
11 changed files with 190 additions and 57 deletions

View File

@ -104,6 +104,12 @@ typedef struct {
GLOBAL Backend *back;
GLOBAL struct backend_list {
int protocol;
char *name;
Backend *backend;
} backends[];
typedef struct {
void (*send) (char *buf, int len);
} Ldisc;
@ -215,7 +221,7 @@ void do_defaults (char *);
void logevent (char *);
void showeventlog (HWND);
void showabout (HWND);
void verify_ssh_host_key(char *host, struct RSAKey *key);
void verify_ssh_host_key(char *host, char *keystr);
void get_sesslist(int allocate);
GLOBAL int nsessions;