mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 09:27:59 +00:00
96dbf9c6e6
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]
16 lines
322 B
C
16 lines
322 B
C
/*
|
|
* Linking module for PuTTY proper: list the available backends
|
|
* including ssh.
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include "putty.h"
|
|
|
|
struct backend_list backends[] = {
|
|
{PROT_SSH, "ssh", &ssh_backend},
|
|
{PROT_TELNET, "telnet", &telnet_backend},
|
|
{PROT_RAW, "raw", &raw_backend},
|
|
{0, NULL}
|
|
};
|