2 * Linking module for PuTTY proper: list the available backends
\r
3 * including ssh, plus the serial backend.
\r
10 * This appname is not strictly in the right place, since Plink
\r
11 * also uses this module. However, Plink doesn't currently use any
\r
12 * of the dialog-box sorts of things that make use of appname, so
\r
13 * it shouldn't do any harm here. I'm trying to avoid having to
\r
14 * have tiny little source modules containing nothing but
\r
15 * declarations of appname, for as long as I can...
\r
17 const char *const appname = "TortoiseGitPlink";
\r
19 #ifdef TELNET_DEFAULT
\r
20 const int be_default_protocol = PROT_TELNET;
\r
22 const int be_default_protocol = PROT_SSH;
\r
25 Backend *backends[] = {
\r