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_ssh.c')
-rw-r--r--be_ssh.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/be_ssh.c b/be_ssh.c
deleted file mode 100644
index 81be62d8..00000000
--- a/be_ssh.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Linking module for programs that are restricted to only using
- * SSH-type protocols (pscp and psftp). These still have a choice of
- * two actual backends, because they can also speak PROT_SSHCONN.
- */
-
-#include <stdio.h>
-#include "putty.h"
-
-const int be_default_protocol = PROT_SSH;
-
-const struct BackendVtable *const backends[] = {
- &ssh_backend,
- &sshconn_backend,
- NULL
-};
-
-const size_t n_ui_backends = 0; /* not used in programs with a config UI */