mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 09:27:59 +00:00
52bdffbfe0
source files in which it's no longer required (it was previously required in anything that included <putty.h>, but not any more). Also moved a couple of stray bits of exposed WinSock back into winnet.c (getservbyname from ssh.c and AF_INET from proxy.c). [originally from svn r2160]
16 lines
347 B
C
16 lines
347 B
C
/*
|
|
* Linking module for PuTTY proper: list the available backends
|
|
* including ssh.
|
|
*/
|
|
|
|
#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}
|
|
};
|