Experimental Rlogin support, thanks to Delian Delchev. Local flow
[u/mdw/putty] / be_none.c
CommitLineData
89ee5268 1/*
05a6aa4f 2 * Linking module for PSCP: list the available backends, but
3 * without accompanying function suites. Used only for name
4 * lookups.
89ee5268 5 */
6
7#include <windows.h>
8#include <stdio.h>
9#include "putty.h"
10
11struct backend_list backends[] = {
05a6aa4f 12 {PROT_SSH, "ssh", NULL},
13 {PROT_TELNET, "telnet", NULL},
c91409da 14 {PROT_RLOGIN, "rlogin", NULL},
05a6aa4f 15 {PROT_RAW, "raw", NULL},
84978e82 16 {0, NULL}
89ee5268 17};