Finer granularity of config box handling. SSH packet logging should
[u/mdw/putty] / be_nossh.c
CommitLineData
89ee5268 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
ffa79828 10const int be_default_protocol = PROT_TELNET;
11
f6f450e2 12const char *const appname = "PuTTYtel";
13
89ee5268 14struct backend_list backends[] = {
15 {PROT_TELNET, "telnet", &telnet_backend},
c91409da 16 {PROT_RLOGIN, "rlogin", &rlogin_backend},
89ee5268 17 {PROT_RAW, "raw", &raw_backend},
18 {0, NULL}
19};
20
21/*
22 * Stub implementations of functions not used in non-ssh versions.
23 */
32874aea 24void random_save_seed(void)
25{
89ee5268 26}
27
32874aea 28void random_destroy_seed(void)
29{
28b5d7fd 30}
31
32874aea 32void noise_ultralight(DWORD data)
33{
89ee5268 34}
28b5d7fd 35
32874aea 36void noise_regular(void)
37{
7d6ee6ff 38}