зеркало из https://github.com/github/putty.git
19 строки
337 B
C
19 строки
337 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
|
|
};
|