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

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'BE_NOSSH.C')
-rw-r--r--BE_NOSSH.C21
1 files changed, 0 insertions, 21 deletions
diff --git a/BE_NOSSH.C b/BE_NOSSH.C
deleted file mode 100644
index 1c94f3ae..00000000
--- a/BE_NOSSH.C
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * 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,
- &supdup_backend,
- &raw_backend,
- NULL
-};
-
-const size_t n_ui_backends = 1;