Welcome to mirror list, hosted at ThFree Co, Russian Federation.

be_nos_s.c - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 097433aa012acf3161e9326ff847caecce0da328 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * 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,
    &serial_backend,
    &rlogin_backend,
    &supdup_backend,
    &raw_backend,
    NULL
};

const size_t n_ui_backends = 2;