]> git.ipfire.org Git - people/ms/putty.git/blob - be_all.c
Add search to connection list box.
[people/ms/putty.git] / be_all.c
1 /*
2 * Linking module for PuTTY proper: list the available backends
3 * including ssh.
4 */
5
6 #include <stdio.h>
7 #include "putty.h"
8
9 /*
10 * This appname is not strictly in the right place, since Plink
11 * also uses this module. However, Plink doesn't currently use any
12 * of the dialog-box sorts of things that make use of appname, so
13 * it shouldn't do any harm here. I'm trying to avoid having to
14 * have tiny little source modules containing nothing but
15 * declarations of appname, for as long as I can...
16 */
17 const char *const appname = "PuTTY";
18
19 #ifdef TELNET_DEFAULT
20 const int be_default_protocol = PROT_TELNET;
21 #else
22 const int be_default_protocol = PROT_SSH;
23 #endif
24
25 Backend *backends[] = {
26 &ssh_backend,
27 &telnet_backend,
28 &rlogin_backend,
29 &raw_backend,
30 NULL
31 };