X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=be_ssh.c;fp=be_ssh.c;h=57d241c2eba64d84c925edbc8abc37a382d12baf;hb=2ff01c50ecd33579f98cd56f001968086fe34c2c;hp=0000000000000000000000000000000000000000;hpb=f4307eb8e154bcd5717a9c46a5dffba2898c14ff;p=PuTTY.git diff --git a/be_ssh.c b/be_ssh.c new file mode 100644 index 00000000..57d241c2 --- /dev/null +++ b/be_ssh.c @@ -0,0 +1,16 @@ +/* + * Linking module for programs that are restricted to only using SSH + * (pscp and psftp). These do not support selection of backend, but + * must still have a backends[] array mentioning SSH because + * settings.c will want to consult it during session load. + */ + +#include +#include "putty.h" + +const int be_default_protocol = PROT_SSH; + +Backend *backends[] = { + &ssh_backend, + NULL +};