mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
b798230844
Now they're all called FooVtable, instead of a mixture of that and Foo_vtable.
34 lines
527 B
C
34 lines
527 B
C
/*
|
|
* Linking module for PuTTYtel: list the available backends not
|
|
* including ssh.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "putty.h"
|
|
|
|
const int be_default_protocol = PROT_TELNET;
|
|
|
|
const char *const appname = "PuTTYtel";
|
|
|
|
const struct BackendVtable *const backends[] = {
|
|
&telnet_backend,
|
|
&rlogin_backend,
|
|
&raw_backend,
|
|
NULL
|
|
};
|
|
|
|
/*
|
|
* Stub implementations of functions not used in non-ssh versions.
|
|
*/
|
|
void random_save_seed(void)
|
|
{
|
|
}
|
|
|
|
void random_destroy_seed(void)
|
|
{
|
|
}
|
|
|
|
void noise_ultralight(unsigned long data)
|
|
{
|
|
}
|