mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 09:27:59 +00:00
b798230844
Now they're all called FooVtable, instead of a mixture of that and Foo_vtable.
17 lines
426 B
C
17 lines
426 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;
|
|
|
|
const struct BackendVtable *const backends[] = {
|
|
&ssh_backend,
|
|
NULL
|
|
};
|