2000-03-15 15:08:48 +00:00
|
|
|
/*
|
2000-06-22 08:51:51 +00:00
|
|
|
* Linking module for PSCP: list the available backends, but
|
|
|
|
* without accompanying function suites. Used only for name
|
|
|
|
* lookups.
|
2000-03-15 15:08:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windows.h>
|
2000-10-09 12:19:09 +00:00
|
|
|
#ifndef AUTO_WINSOCK
|
|
|
|
#ifdef WINSOCK_TWO
|
|
|
|
#include <winsock2.h>
|
|
|
|
#else
|
|
|
|
#include <winsock.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
2000-03-15 15:08:48 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "putty.h"
|
|
|
|
|
|
|
|
struct backend_list backends[] = {
|
2000-06-22 08:51:51 +00:00
|
|
|
{PROT_SSH, "ssh", NULL},
|
|
|
|
{PROT_TELNET, "telnet", NULL},
|
|
|
|
{PROT_RAW, "raw", NULL},
|
2000-06-23 10:58:17 +00:00
|
|
|
{0, NULL}
|
2000-03-15 15:08:48 +00:00
|
|
|
};
|