X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=be_none.c;h=879a20c5052285efcc88aab7047c4cbf16d6561a;hb=49d2cf19accb059b3b68d1fc2b78e606a578c3e8;hp=0ec3a7933fb9d60f45ecc4ba2911db43cc982dfa;hpb=96dbf9c6e6fe39adfe27a276e4a6360b827d8ba1;p=PuTTY.git diff --git a/be_none.c b/be_none.c index 0ec3a793..879a20c5 100644 --- a/be_none.c +++ b/be_none.c @@ -1,13 +1,16 @@ /* - * Linking module for PSCP: list no available backends. This is - * only present to satisfy linker requirements. I should really - * untangle the whole lot a bit better. + * Linking module for PSCP: list the available backends, but + * without accompanying function suites. Used only for name + * lookups. */ -#include #include #include "putty.h" struct backend_list backends[] = { + {PROT_SSH, "ssh", NULL}, + {PROT_TELNET, "telnet", NULL}, + {PROT_RLOGIN, "rlogin", NULL}, + {PROT_RAW, "raw", NULL}, {0, NULL} };