Sebastian Kuschel reports that pfd_closing can be called for a socket
[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 Backend *backends[] = {
14 &telnet_backend,
15 &rlogin_backend,
16 &raw_backend,
17 &serial_backend,
18 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 }