Update to use -title rather than -T
[sgt/putty] / be_none.c
... / ...
CommitLineData
1/*
2 * Linking module for PSCP: list the available backends, but
3 * without accompanying function suites. Used only for name
4 * lookups.
5 */
6
7#include <stdio.h>
8#include "putty.h"
9
10struct backend_list backends[] = {
11 {PROT_SSH, "ssh", NULL},
12 {PROT_TELNET, "telnet", NULL},
13 {PROT_RLOGIN, "rlogin", NULL},
14 {PROT_RAW, "raw", NULL},
15 {0, NULL}
16};