Support for Windows PuTTY connecting straight to a local serial port
[u/mdw/putty] / be_nos_s.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 {PROT_SERIAL, "serial", &serial_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(unsigned long data)
33 {
34 }