mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
e48981def4
[originally from svn r691]
35 lines
571 B
C
35 lines
571 B
C
/*
|
|
* Linking module for PuTTYtel: list the available backends not
|
|
* including ssh.
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#ifndef AUTO_WINSOCK
|
|
#ifdef WINSOCK_TWO
|
|
#include <winsock2.h>
|
|
#else
|
|
#include <winsock.h>
|
|
#endif
|
|
#endif
|
|
#include <stdio.h>
|
|
#include "putty.h"
|
|
|
|
struct backend_list backends[] = {
|
|
{PROT_TELNET, "telnet", &telnet_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) {
|
|
}
|
|
|