зеркало из https://github.com/github/putty.git
20 строки
358 B
C
20 строки
358 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,
|
|
&serial_backend,
|
|
NULL
|
|
};
|