X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/5b80d07f712ff90cfae4c89084e25eb90dd2e510..32874aeac8dacbca26663777b39a79efc5d8dc4b:/be_nossh.c diff --git a/be_nossh.c b/be_nossh.c index 5dac276f..76355cba 100644 --- a/be_nossh.c +++ b/be_nossh.c @@ -4,18 +4,12 @@ */ #include -#ifndef AUTO_WINSOCK -#ifdef WINSOCK_TWO -#include -#else -#include -#endif -#endif #include #include "putty.h" struct backend_list backends[] = { {PROT_TELNET, "telnet", &telnet_backend}, + {PROT_RLOGIN, "rlogin", &rlogin_backend}, {PROT_RAW, "raw", &raw_backend}, {0, NULL} }; @@ -23,12 +17,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(DWORD data) +{ } +void noise_regular(void) +{ +}