1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-09 13:42:09 -05:00
putty-source/be_ssh.c
Simon Tatham 2ff01c50ec Merge r9254 (the PSCP/PSFTP protocol override fix).
[originally from svn r9255]
[r9254 == f14953d9e94c176cfc928bb719d6f613da96717e]
2011-07-27 18:46:33 +00:00

17 lines
401 B
C

/*
* 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 <stdio.h>
#include "putty.h"
const int be_default_protocol = PROT_SSH;
Backend *backends[] = {
&ssh_backend,
NULL
};