Welcome to mirror list, hosted at ThFree Co, Russian Federation.

be_all.c - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc0755aeb133141010be9be1a7de8608d2156e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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}
};