1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00
putty-source/be_nossh.c
Simon Tatham ca90be26a8 Experimental Rlogin support, thanks to Delian Delchev. Local flow
control is unsupported, and server-to-client comms may fail for want
of working TCP Urgent.

[originally from svn r875]
2001-01-19 10:10:37 +00:00

31 lines
543 B
C

/*
* Linking module for PuTTYtel: list the available backends not
* including ssh.
*/
#include <windows.h>
#include <stdio.h>
#include "putty.h"
struct backend_list backends[] = {
{PROT_TELNET, "telnet", &telnet_backend},
{PROT_RLOGIN, "rlogin", &rlogin_backend},
{PROT_RAW, "raw", &raw_backend},
{0, NULL}
};
/*
* Stub implementations of functions not used in non-ssh versions.
*/
void random_save_seed(void) {
}
void random_destroy_seed(void) {
}
void noise_ultralight(DWORD data) {
}
void noise_regular(void) {
}