]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - be_none.c
This ought to fix the scp protocol problems
[PuTTY.git] / be_none.c
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 <windows.h>
8 #include <stdio.h>
9 #include "putty.h"
10
11 struct backend_list backends[] = {
12     {PROT_SSH, "ssh", NULL},
13     {PROT_TELNET, "telnet", NULL},
14     {PROT_RAW, "raw", NULL},
15 };