Loose end from timing shakeup: sshrand.c is now a client of
[u/mdw/putty] / be_nossh.c
1 /*
2 * Linking module for PuTTYtel: list the available backends not
3 * including ssh.
4 */
5
6 #include <stdio.h>
7 #include "putty.h"
8
9 const int be_default_protocol = PROT_TELNET;
10
11 const char *const appname = "PuTTYtel";
12
13 struct backend_list backends[] = {
14 {PROT_TELNET, "telnet", &telnet_backend},
15 {PROT_RLOGIN, "rlogin", &rlogin_backend},
16 {PROT_RAW, "raw", &raw_backend},
17 {0, NULL}
18 };
19
20 /*
21 * Stub implementations of functions not used in non-ssh versions.
22 */
23 void random_save_seed(void)
24 {
25 }
26
27 void random_destroy_seed(void)
28 {
29 }
30
31 void noise_ultralight(unsigned long data)
32 {
33 }