]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - be_nossh.c
first pass
[PuTTY.git] / 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 Backend *backends[] = {
14     &telnet_backend,
15     &rlogin_backend,
16     &raw_backend,
17     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 }