2000-03-15 15:08:48 +00:00
|
|
|
/*
|
|
|
|
* Linking module for PuTTYtel: list the available backends not
|
|
|
|
* including ssh.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "putty.h"
|
|
|
|
|
2003-01-15 20:47:50 +00:00
|
|
|
const int be_default_protocol = PROT_TELNET;
|
|
|
|
|
2003-04-06 14:11:33 +00:00
|
|
|
const char *const appname = "PuTTYtel";
|
|
|
|
|
2018-10-05 06:03:46 +00:00
|
|
|
const struct BackendVtable *const backends[] = {
|
2007-06-30 21:56:44 +00:00
|
|
|
&telnet_backend,
|
|
|
|
&rlogin_backend,
|
2019-04-02 10:16:25 +00:00
|
|
|
&supdup_backend,
|
2007-06-30 21:56:44 +00:00
|
|
|
&raw_backend,
|
|
|
|
NULL
|
2000-03-15 15:08:48 +00:00
|
|
|
};
|