mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
ca90be26a8
control is unsupported, and server-to-client comms may fail for want of working TCP Urgent. [originally from svn r875]
17 lines
368 B
C
17 lines
368 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_RLOGIN, "rlogin", &rlogin_backend},
|
|
{PROT_RAW, "raw", &raw_backend},
|
|
{0, NULL}
|
|
};
|