Fix a couple of signedness compiler warnings, presumably due to me
[u/mdw/putty] / be_all_s.c
CommitLineData
7374c779 1/*
2 * Linking module for PuTTY proper: list the available backends
3 * including ssh, plus the serial backend.
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 */
17const char *const appname = "PuTTY";
18
19#ifdef TELNET_DEFAULT
20const int be_default_protocol = PROT_TELNET;
21#else
22const int be_default_protocol = PROT_SSH;
23#endif
24
25struct backend_list backends[] = {
26 {PROT_SSH, "ssh", &ssh_backend},
27 {PROT_TELNET, "telnet", &telnet_backend},
28 {PROT_RLOGIN, "rlogin", &rlogin_backend},
29 {PROT_RAW, "raw", &raw_backend},
30 {PROT_SERIAL, "serial", &serial_backend},
31 {0, NULL}
32};