X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/641ba8ef4fe95216e94fd548a2f189bf48dfb9c1..89ee5268a99aac30dbdf36bc3a02074d34e653f2:/be_all.c diff --git a/be_all.c b/be_all.c new file mode 100644 index 00000000..69e44b76 --- /dev/null +++ b/be_all.c @@ -0,0 +1,15 @@ +/* + * Linking module for PuTTY proper: list the available backends + * including ssh. + */ + +#include +#include +#include "putty.h" + +struct backend_list backends[] = { + {PROT_SSH, "ssh", &ssh_backend}, + {PROT_TELNET, "telnet", &telnet_backend}, + {PROT_RAW, "raw", &raw_backend}, + {0, NULL} +};