X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/5b80d07f712ff90cfae4c89084e25eb90dd2e510..8f1612752a89ea821dbd63491aef858f7f7e5bef:/be_nossh.c diff --git a/be_nossh.c b/be_nossh.c index 5dac276f..90ab9987 100644 --- a/be_nossh.c +++ b/be_nossh.c @@ -3,19 +3,16 @@ * including ssh. */ -#include -#ifndef AUTO_WINSOCK -#ifdef WINSOCK_TWO -#include -#else -#include -#endif -#endif #include #include "putty.h" +const int be_default_protocol = PROT_TELNET; + +const char *const appname = "PuTTYtel"; + struct backend_list backends[] = { {PROT_TELNET, "telnet", &telnet_backend}, + {PROT_RLOGIN, "rlogin", &rlogin_backend}, {PROT_RAW, "raw", &raw_backend}, {0, NULL} }; @@ -23,12 +20,18 @@ struct backend_list backends[] = { /* * Stub implementations of functions not used in non-ssh versions. */ -void random_save_seed(void) { +void random_save_seed(void) +{ } -void random_destroy_seed(void) { +void random_destroy_seed(void) +{ } -void noise_ultralight(DWORD data) { +void noise_ultralight(unsigned long data) +{ } +void noise_regular(void) +{ +}