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: 69e44b760fb7dcaff941d830759f60aee9495a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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}
};