Now that we have `appname', make much wider use of it. In
[u/mdw/putty] / be_nossh.c
1 /*
2 * Linking module for PuTTYtel: list the available backends not
3 * including ssh.
4 */
5
6 #include <windows.h>
7 #include <stdio.h>
8 #include "putty.h"
9
10 const int be_default_protocol = PROT_TELNET;
11
12 const char *const appname = "PuTTYtel";
13
14 struct backend_list backends[] = {
15 {PROT_TELNET, "telnet", &telnet_backend},
16 {PROT_RLOGIN, "rlogin", &rlogin_backend},
17 {PROT_RAW, "raw", &raw_backend},
18 {0, NULL}
19 };
20
21 /*
22 * Stub implementations of functions not used in non-ssh versions.
23 */
24 void random_save_seed(void)
25 {
26 }
27
28 void random_destroy_seed(void)
29 {
30 }
31
32 void noise_ultralight(DWORD data)
33 {
34 }
35
36 void noise_regular(void)
37 {
38 }